:root {
    --sand: #FEF3C7;
    --primary: #78350F;
    --secondary: #0369A1;
    --accent: #F97316;
    --cream: #FFFBEB;
    --dark-brown: #451A03;
    --light-sand: #FFF8E1;
    --stamp-red: #DC2626;
    --stamp-blue: #1D4ED8;
    --stamp-green: #16A34A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--sand);
    color: var(--primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.display-font {
    font-family: 'Abril Fatface', serif;
}

/* Map Grid Background */
.map-grid-bg {
    background-image:
        linear-gradient(rgba(120, 53, 15, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 53, 15, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Compass Rose */
.compass-rose {
    position: relative;
    width: 80px;
    height: 80px;
}

.compass-rose::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 2px solid var(--accent);
    opacity: 0.6;
}

.compass-rose::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary);
    border-radius: 50%;
}

/* Stamp Decoration */
.stamp-border {
    border: 3px dashed var(--primary);
    padding: 0.5rem 1.5rem;
    position: relative;
}

.stamp-border::before,
.stamp-border::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sand);
    border: 2px solid var(--primary);
}

.stamp-border::before {
    top: -7px;
    left: -7px;
}

.stamp-border::after {
    bottom: -7px;
    right: -7px;
}

/* Passport Stamp Badge */
.passport-stamp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(-12deg);
    opacity: 0.85;
    text-align: center;
    line-height: 1.2;
}

/* Postcard Style */
.postcard {
    background: var(--cream);
    border: 2px dashed var(--primary);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.postcard:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: 8px 8px 0 rgba(120, 53, 15, 0.15);
}

.postcard-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
}

.postcard-corner.top-left {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.postcard-corner.top-right {
    top: 8px;
    right: 8px;
    border-left: none;
    border-bottom: none;
}

.postcard-corner.bottom-left {
    bottom: 8px;
    left: 8px;
    border-right: none;
    border-top: none;
}

.postcard-corner.bottom-right {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    background: var(--sand);
    border-bottom: 2px solid rgba(120, 53, 15, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    top: 5px;
    right: 5px;
}

.logo-text {
    font-family: 'Abril Fatface', serif;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary);
}

.header-cta {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    border: 2px dashed var(--accent);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.header-cta:hover {
    background: var(--accent);
    color: white;
    border-style: solid;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }

.mobile-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--sand);
    border-bottom: 2px solid rgba(120, 53, 15, 0.1);
    padding: 1.5rem;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed rgba(120, 53, 15, 0.15);
}

/* Hero Section */
.hero-section {
    padding: 6rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 50%, var(--light-sand) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 60px;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(120, 53, 15, 0.08);
    border-radius: 50%;
    animation: compassSpin 20s linear infinite;
}

.hero-section::after {
    content: 'TRAVEL';
    position: absolute;
    bottom: 40px;
    right: -20px;
    font-family: 'Abril Fatface', serif;
    font-size: 8rem;
    color: rgba(120, 53, 15, 0.04);
    letter-spacing: 0.1em;
    pointer-events: none;
}

@keyframes compassSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
}

.hero-stamp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: rotate(-3deg);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .accent-text {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-title .accent-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(249, 115, 22, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: white;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 53, 15, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary);
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--cream);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
}

.hero-image-block {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--secondary), #065986);
    position: relative;
    overflow: hidden;
}

.hero-image-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(249,115,22,0.15) 0%, transparent 40%);
}

.hero-image-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(120, 53, 15, 0.3), transparent);
}

.hero-image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-family: 'Abril Fatface', serif;
    font-size: 1.5rem;
    z-index: 2;
}

.hero-float-stamp {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--stamp-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stamp-red);
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    transform: rotate(15deg);
    background: rgba(254, 243, 199, 0.95);
    line-height: 1.2;
    padding: 0.5rem;
}

.hero-float-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--cream);
    border: 2px dashed var(--accent);
    padding: 1rem 1.5rem;
    transform: rotate(-5deg);
    box-shadow: 4px 4px 0 rgba(120, 53, 15, 0.1);
}

.hero-float-card span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 6rem 1.5rem;
    background: var(--cream);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(120, 53, 15, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 53, 15, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-label {
    display: inline-block;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    transform: rotate(-2deg);
}

.section-title {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1rem;
    color: rgba(120, 53, 15, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.feature-card {
    background: var(--sand);
    border: 2px dashed rgba(120, 53, 15, 0.3);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 8px 8px 0 rgba(120, 53, 15, 0.1);
    border-color: var(--accent);
}

.feature-card:nth-child(even) {
    transform: rotate(0.5deg);
}

.feature-card:nth-child(even):hover {
    transform: translateY(-6px) rotate(0.5deg);
}

.feature-stamp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border: 2px solid;
    transform: rotate(-8deg);
}

.feature-stamp.red { color: var(--stamp-red); border-color: var(--stamp-red); background: rgba(220, 38, 38, 0.05); }
.feature-stamp.blue { color: var(--stamp-blue); border-color: var(--stamp-blue); background: rgba(29, 78, 216, 0.05); }
.feature-stamp.green { color: var(--stamp-green); border-color: var(--stamp-green); background: rgba(22, 163, 74, 0.05); }
.feature-stamp.orange { color: var(--accent); border-color: var(--accent); background: rgba(249, 115, 22, 0.05); }

.feature-card h3 {
    font-family: 'Abril Fatface', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(120, 53, 15, 0.7);
    line-height: 1.7;
}

.feature-corner {
    position: absolute;
    width: 24px;
    height: 24px;
}

.feature-corner.tl {
    top: 8px;
    left: 8px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
}

.feature-corner.br {
    bottom: 8px;
    right: 8px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

/* Board Widgets */
.board-section {
    padding: 6rem 1.5rem;
    background: var(--sand);
}

.board-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.board-widget {
    background: var(--cream);
    border: 1px solid rgba(120, 53, 15, 0.1);
    overflow: hidden;
}

.board-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px dashed rgba(120, 53, 15, 0.1);
    background: rgba(254, 243, 199, 0.5);
}

.board-widget-title {
    font-family: 'Abril Fatface', serif;
    font-size: 1.2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.board-widget-title .icon {
    color: var(--accent);
}

.board-widget-more {
    font-size: 0.8rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--secondary);
    padding: 0.25rem 0.75rem;
    transition: all 0.3s ease;
}

.board-widget-more:hover {
    background: var(--secondary);
    color: white;
}

.board-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px dashed rgba(120, 53, 15, 0.08);
    transition: background 0.2s ease;
    gap: 1rem;
}

.board-item:hover {
    background: rgba(254, 243, 199, 0.5);
}

.board-item:last-child {
    border-bottom: none;
}

.board-item-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(120, 53, 15, 0.2);
    font-size: 0.65rem;
    color: var(--primary);
    transform: rotate(-2deg);
}

.board-item-date .day {
    font-family: 'Abril Fatface', serif;
    font-size: 1.1rem;
    color: var(--accent);
}

.board-item-content {
    flex: 1;
    min-width: 0;
}

.board-item-title {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.2rem;
    text-decoration: none;
    display: block;
}

.board-item-title:hover {
    color: var(--accent);
}

.board-item-meta {
    font-size: 0.75rem;
    color: rgba(120, 53, 15, 0.5);
}

.board-item-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid;
    font-weight: 600;
    white-space: nowrap;
}

.board-item-badge.travel { color: var(--secondary); border-color: var(--secondary); }
.board-item-badge.guide { color: var(--stamp-green); border-color: var(--stamp-green); }
.board-item-badge.review { color: var(--accent); border-color: var(--accent); }
.board-item-badge.news { color: var(--stamp-red); border-color: var(--stamp-red); }

/* Stats Section */
.stats-section {
    padding: 5rem 1.5rem;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px solid rgba(254, 243, 199, 0.05);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(254, 243, 199, 0.05);
}

.stats-compass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    opacity: 0.03;
    pointer-events: none;
}

.stats-compass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--sand);
}

.stats-compass::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: var(--sand);
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--sand);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number .suffix {
    font-size: 1.2rem;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(254, 243, 199, 0.7);
    margin-bottom: 0.5rem;
}

.stat-milestone {
    display: inline-block;
    font-size: 0.65rem;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.2rem 0.6rem;
    margin-top: 0.5rem;
    transform: rotate(-2deg);
}

/* CTA Section */
.cta-section {
    padding: 5rem 1.5rem;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border: 2px dashed rgba(254, 243, 199, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(254, 243, 199, 0.05);
    transform: rotate(45deg);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--sand);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1rem;
    color: rgba(254, 243, 199, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--sand);
    border: 3px dashed var(--sand);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.cta-button::before,
.cta-button::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondary);
    border: 2px solid var(--sand);
}

.cta-button::before {
    top: -8px;
    left: -8px;
}

.cta-button::after {
    bottom: -8px;
    right: -8px;
}

.cta-button:hover {
    background: var(--sand);
    color: var(--secondary);
    border-style: solid;
}

/* Footer */
.site-footer {
    background: var(--dark-brown);
    padding: 4rem 1.5rem 2rem;
    color: var(--sand);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    color: var(--sand);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(254, 243, 199, 0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-compass {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(254, 243, 199, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-compass::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(254, 243, 199, 0.2);
    transform: rotate(45deg);
}

.footer-column h4 {
    font-family: 'Abril Fatface', serif;
    font-size: 1rem;
    color: var(--sand);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(254, 243, 199, 0.2);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: rgba(254, 243, 199, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-column a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    color: var(--sand);
}

.footer-column a:hover::before {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px dashed rgba(254, 243, 199, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(254, 243, 199, 0.5);
}

.footer-stamps {
    display: flex;
    gap: 0.75rem;
}

.footer-stamp {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(254, 243, 199, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: rgba(254, 243, 199, 0.5);
    transition: all 0.3s ease;
}

.footer-stamp:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(-10deg);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-section {
        padding: 4rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-float-card {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-float-stamp {
        width: 60px;
        height: 60px;
        font-size: 0.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
/* HM_THEME_OVERFLOW_GUARD */
html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}
body,
body * {
    box-sizing: border-box;
}
img,
video,
canvas,
svg {
    max-width: 100%;
}
main,
#app,
#index-app,
.main-content,
.container,
.section,
.hero,
.hero-content,
.hero-title,
.hero-desc,
.hero-actions {
    max-width: 100% !important;
    min-width: 0 !important;
}
.hero-content,
.hero-title,
.hero-desc {
    overflow-wrap: anywhere;
}
/* END_HM_THEME_OVERFLOW_GUARD */

/* HM_STANDARD_LAYOUT_FIX_V2 */
html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}
body.hm-gnuboard-site,
body.hm-gnuboard-site * {
    box-sizing: border-box;
}
body.hm-gnuboard-site {
    min-width: 0 !important;
    text-rendering: optimizeLegibility;
}
body.hm-menu-open {
    overflow: hidden !important;
}
body.hm-gnuboard-site img,
body.hm-gnuboard-site video,
body.hm-gnuboard-site canvas,
body.hm-gnuboard-site svg {
    max-width: 100%;
}
.hm-site-header,
.site-header {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    z-index: 2147483000 !important;
    width: 100% !important;
    min-height: 72px !important;
    display: block !important;
    background: rgba(255, 255, 255, .96) !important;
    color: #0f172a !important;
    border: 0 !important;
    border-bottom: 1px solid #dbe3ef !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .08) !important;
    backdrop-filter: blur(14px);
    transform: none !important;
}
.hm-header-inner,
.site-header .header-inner {
    width: min(1180px, calc(100% - 32px)) !important;
    min-height: 72px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
}
.hm-site-brand,
.site-header .logo,
.site-header .site-brand {
    min-width: 0 !important;
    max-width: 38ch !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #0f172a !important;
    font-family: 'Noto Sans KR', Arial, sans-serif !important;
    font-size: clamp(16px, 1.4vw, 22px) !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    text-transform: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.hm-brand-mark {
    flex: 0 0 auto !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #2563eb, #22c55e) !important;
    box-shadow: 0 0 0 5px rgba(37, 99, 235, .12) !important;
}
.hm-primary-nav,
.site-header nav,
.site-header .nav-links {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
}
.site-header .nav-links li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.hm-primary-nav a,
.site-header nav a,
.site-header .nav-links a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 38px !important;
    padding: 0 12px !important;
    border-radius: 8px !important;
    color: #334155 !important;
    background: transparent !important;
    font-family: 'Noto Sans KR', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    text-transform: none !important;
}
.hm-primary-nav a:hover,
.site-header nav a:hover,
.site-header .nav-links a:hover {
    color: #1d4ed8 !important;
    background: #eff6ff !important;
}
.hm-auth-nav,
.site-header .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.hm-auth-link,
.hm-auth-button,
.site-header .btn-login,
.site-header .btn-register,
.site-header .btn-logout,
.site-header .btn-member {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: 0 13px !important;
    border-radius: 8px !important;
    border: 1px solid #dbe3ef !important;
    background: #fff !important;
    color: #0f172a !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    text-transform: none !important;
}
.hm-auth-button,
.site-header .btn-login {
    border-color: #2563eb !important;
    background: #2563eb !important;
    color: #fff !important;
}
.hm-mobile-toggle,
.site-header .mobile-toggle {
    display: none !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 8px !important;
    background: #fff !important;
    cursor: pointer !important;
}
.hm-mobile-toggle span,
.site-header .mobile-toggle span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #0f172a !important;
}
.hm-mobile-menu,
.mobile-nav {
    display: none !important;
}
.hm-mobile-menu:not([hidden]),
.mobile-nav.open {
    display: grid !important;
    gap: 8px !important;
    width: min(1180px, calc(100% - 32px)) !important;
    margin: 0 auto 12px !important;
    padding: 10px !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 18px 34px rgba(15, 23, 42, .10) !important;
}
.hm-mobile-menu a,
.mobile-nav.open a {
    display: flex !important;
    min-height: 42px !important;
    align-items: center !important;
    padding: 0 12px !important;
    border-radius: 8px !important;
    color: #0f172a !important;
    background: #f8fafc !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}
.hm-site-main {
    width: 100% !important;
    min-height: 62vh !important;
    min-width: 0 !important;
    overflow: visible !important;
}
.hm-site-footer,
.site-footer {
    width: 100% !important;
    margin-top: 48px !important;
    border-top: 1px solid #e2e8f0 !important;
    background: #fff !important;
    color: #475569 !important;
}
.hm-footer-inner,
.site-footer .footer-inner,
.site-footer-inner {
    width: min(1180px, calc(100% - 32px)) !important;
    min-height: 72px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}
.hm-site-footer a,
.site-footer a {
    color: #475569 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}
body:has(.hm-board-page),
body:has(.hm-board-view) {
    background: #f8fafc !important;
    color: #111827 !important;
    background-image: none !important;
}
body:has(.hm-board-page) .hm-site-main,
body:has(.hm-board-view) .hm-site-main,
body:has(.hm-board-page) main,
body:has(.hm-board-view) main {
    padding-top: 0 !important;
    margin-top: 0 !important;
    background: transparent !important;
    min-width: 0 !important;
}
body:has(.hm-board-page)::before,
body:has(.hm-board-page)::after,
body:has(.hm-board-view)::before,
body:has(.hm-board-view)::after,
body:has(.hm-board-page) .hm-site-main::before,
body:has(.hm-board-page) .hm-site-main::after,
body:has(.hm-board-view) .hm-site-main::before,
body:has(.hm-board-view) .hm-site-main::after {
    display: none !important;
    content: none !important;
}
@media (max-width: 860px) {
    .hm-site-header,
    .site-header {
        min-height: 64px !important;
    }
    .hm-header-inner,
    .site-header .header-inner {
        min-height: 64px !important;
        width: min(100% - 24px, 1180px) !important;
    }
    .hm-site-brand,
    .site-header .logo,
    .site-header .site-brand {
        max-width: calc(100vw - 96px) !important;
        font-size: 16px !important;
    }
    .hm-primary-nav,
    .site-header nav,
    .site-header .nav-links,
    .hm-auth-nav,
    .site-header .header-actions {
        display: none !important;
    }
    .hm-mobile-toggle,
    .site-header .mobile-toggle {
        display: inline-flex !important;
        margin-left: auto !important;
    }
    .hm-mobile-menu:not([hidden]),
    .mobile-nav.open {
        width: min(100% - 24px, 1180px) !important;
    }
}
/* END_HM_STANDARD_LAYOUT_FIX_V2 */

/* HM_SITE_DESIGN_VARIANTS_V1 */
body.hm-gnuboard-site {
    --hm-font: 'Roboto', 'Malgun Gothic', '맑은 고딕', Arial, sans-serif;
    --font-main: var(--hm-font);
    --font-body: var(--hm-font);
    --font-sans: var(--hm-font);
    --font-family: var(--hm-font);
    --font-primary: var(--hm-font);
    --font-korean: var(--hm-font);
    --font-heading: var(--hm-font);
    --font-display: var(--hm-font);
    --font-kr: var(--hm-font);
    --body-font: var(--hm-font);
    --font-serif: var(--hm-font);
    --hm-page-bg: #f8fafc;
    --hm-surface: #ffffff;
    --hm-surface-alt: #f1f5f9;
    --hm-text: #111827;
    --hm-muted: #64748b;
    --hm-border: #dbe3ef;
    --hm-accent: #2563eb;
    --hm-accent-2: #22c55e;
    --hm-accent-soft: #eff6ff;
    --hm-button-text: #ffffff;
    --hm-radius: 8px;
    --hm-card-radius: 8px;
    --hm-card-shadow: 0 12px 30px rgba(15, 23, 42, .08);
    --hm-header-bg: rgba(255, 255, 255, .96);
    --hm-header-text: #0f172a;
    --hm-header-border: #dbe3ef;
    --hm-header-shadow: 0 10px 26px rgba(15, 23, 42, .08);
    --hm-preview-bg: #f6f8fb;
    --hm-hero-bg: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    background: var(--hm-page-bg) !important;
    color: var(--hm-text) !important;
    font-family: var(--hm-font) !important;
}
body.hm-gnuboard-site *:not(i):not([class^="fa"]):not([class*=" fa-"]):not(.material-icons):not(.xi) {
    font-family: var(--hm-font) !important;
}
body.hm-style-01 {
    --hm-accent: #2563eb; --hm-accent-2: #14b8a6; --hm-accent-soft: #eff6ff;
    --hm-page-bg: #f8fafc; --hm-surface-alt: #eef2ff; --hm-border: #cbd5e1;
    --hm-preview-bg: linear-gradient(135deg, #eff6ff 0%, #f8fafc 48%, #ccfbf1 100%);
    --hm-hero-bg: linear-gradient(135deg, #f8fafc 0%, #dbeafe 58%, #ccfbf1 100%);
}
body.hm-style-02 {
    --hm-accent: #047857; --hm-accent-2: #ca8a04; --hm-accent-soft: #ecfdf5;
    --hm-page-bg: #f7fbf8; --hm-surface-alt: #f0fdf4; --hm-border: #bbf7d0;
    --hm-preview-bg: linear-gradient(135deg, #ecfdf5 0%, #ffffff 48%, #fef9c3 100%);
    --hm-hero-bg: linear-gradient(135deg, #f0fdf4 0%, #ffffff 46%, #fef9c3 100%);
}
body.hm-style-03 {
    --hm-accent: #be123c; --hm-accent-2: #7c3aed; --hm-accent-soft: #fff1f2;
    --hm-page-bg: #fff8fb; --hm-surface-alt: #fdf2f8; --hm-border: #fecdd3;
    --hm-preview-bg: linear-gradient(135deg, #fff1f2 0%, #ffffff 50%, #f5f3ff 100%);
    --hm-hero-bg: linear-gradient(135deg, #fff1f2 0%, #ffffff 52%, #ede9fe 100%);
}
body.hm-style-04 {
    --hm-accent: #0891b2; --hm-accent-2: #f97316; --hm-accent-soft: #ecfeff;
    --hm-page-bg: #f6fbfd; --hm-surface-alt: #e0f2fe; --hm-border: #bae6fd;
    --hm-preview-bg: linear-gradient(135deg, #ecfeff 0%, #ffffff 46%, #ffedd5 100%);
    --hm-hero-bg: linear-gradient(135deg, #ecfeff 0%, #f8fafc 56%, #ffedd5 100%);
}
body.hm-style-05 {
    --hm-accent: #7c2d12; --hm-accent-2: #16a34a; --hm-accent-soft: #fff7ed;
    --hm-page-bg: #fcfaf7; --hm-surface-alt: #fef3c7; --hm-border: #fed7aa;
    --hm-preview-bg: linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #dcfce7 100%);
    --hm-hero-bg: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #dcfce7 100%);
}
body.hm-style-06 {
    --hm-accent: #4f46e5; --hm-accent-2: #eab308; --hm-accent-soft: #eef2ff;
    --hm-page-bg: #f8f7ff; --hm-surface-alt: #eef2ff; --hm-border: #c7d2fe;
    --hm-preview-bg: linear-gradient(135deg, #eef2ff 0%, #ffffff 50%, #fef3c7 100%);
    --hm-hero-bg: linear-gradient(135deg, #eef2ff 0%, #ffffff 46%, #fef3c7 100%);
}
body.hm-style-07 {
    --hm-accent: #0f766e; --hm-accent-2: #db2777; --hm-accent-soft: #ccfbf1;
    --hm-page-bg: #f5fbfa; --hm-surface-alt: #ccfbf1; --hm-border: #99f6e4;
    --hm-preview-bg: linear-gradient(135deg, #ccfbf1 0%, #ffffff 52%, #fce7f3 100%);
    --hm-hero-bg: linear-gradient(135deg, #ccfbf1 0%, #ffffff 52%, #fce7f3 100%);
}
body.hm-style-08 {
    --hm-accent: #111827; --hm-accent-2: #f59e0b; --hm-accent-soft: #f3f4f6;
    --hm-page-bg: #f6f7f9; --hm-surface-alt: #f3f4f6; --hm-border: #d1d5db;
    --hm-preview-bg: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 56%, #fef3c7 100%);
    --hm-hero-bg: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 62%, #fef3c7 100%);
}
body.hm-style-09 {
    --hm-accent: #0284c7; --hm-accent-2: #ea580c; --hm-accent-soft: #e0f2fe;
    --hm-page-bg: #f5fbff; --hm-surface-alt: #e0f2fe; --hm-border: #bae6fd;
    --hm-preview-bg: linear-gradient(135deg, #e0f2fe 0%, #ffffff 48%, #fed7aa 100%);
    --hm-hero-bg: linear-gradient(135deg, #e0f2fe 0%, #ffffff 48%, #ffedd5 100%);
}
body.hm-style-10 {
    --hm-accent: #15803d; --hm-accent-2: #2563eb; --hm-accent-soft: #dcfce7;
    --hm-page-bg: #f6fbf7; --hm-surface-alt: #dcfce7; --hm-border: #bbf7d0;
    --hm-preview-bg: linear-gradient(135deg, #dcfce7 0%, #ffffff 46%, #dbeafe 100%);
    --hm-hero-bg: linear-gradient(135deg, #dcfce7 0%, #ffffff 48%, #dbeafe 100%);
}
body.hm-style-11 {
    --hm-accent: #6d28d9; --hm-accent-2: #06b6d4; --hm-accent-soft: #f5f3ff;
    --hm-page-bg: #fbf8ff; --hm-surface-alt: #f5f3ff; --hm-border: #ddd6fe;
    --hm-preview-bg: linear-gradient(135deg, #f5f3ff 0%, #ffffff 50%, #cffafe 100%);
    --hm-hero-bg: linear-gradient(135deg, #f5f3ff 0%, #ffffff 54%, #cffafe 100%);
}
body.hm-style-12 {
    --hm-accent: #0f5132; --hm-accent-2: #b45309; --hm-accent-soft: #ecfdf5;
    --hm-page-bg: #f7faf8; --hm-surface-alt: #ecfdf5; --hm-border: #bfdbfe;
    --hm-preview-bg: linear-gradient(135deg, #ecfdf5 0%, #ffffff 48%, #dbeafe 100%);
    --hm-hero-bg: linear-gradient(135deg, #ecfdf5 0%, #ffffff 50%, #dbeafe 100%);
}
body.hm-style-03,
body.hm-style-06,
body.hm-style-11 {
    --hm-card-radius: 14px;
    --hm-card-shadow: 0 18px 38px rgba(67, 56, 202, .13);
}
body.hm-style-05,
body.hm-style-08 {
    --hm-card-radius: 4px;
    --hm-card-shadow: 0 8px 0 rgba(17, 24, 39, .08);
}
body.hm-gnuboard-site .hm-site-header,
body.hm-gnuboard-site .site-header {
    background: var(--hm-header-bg) !important;
    color: var(--hm-header-text) !important;
    border-bottom: 1px solid var(--hm-header-border) !important;
    box-shadow: var(--hm-header-shadow) !important;
}
body.hm-gnuboard-site .hm-header-inner,
body.hm-gnuboard-site .site-header .header-inner {
    width: min(1180px, calc(100% - 32px)) !important;
}
body.hm-gnuboard-site .hm-site-brand,
body.hm-gnuboard-site .site-header .logo,
body.hm-gnuboard-site .site-header .site-brand {
    color: var(--hm-header-text) !important;
    font-family: var(--hm-font) !important;
}
body.hm-gnuboard-site .hm-brand-mark {
    background: linear-gradient(135deg, var(--hm-accent), var(--hm-accent-2)) !important;
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--hm-accent) 16%, transparent) !important;
}
body.hm-gnuboard-site .hm-primary-nav a,
body.hm-gnuboard-site .site-header nav a,
body.hm-gnuboard-site .site-header .nav-links a {
    color: var(--hm-muted) !important;
    font-family: var(--hm-font) !important;
}
body.hm-gnuboard-site .hm-primary-nav a:hover,
body.hm-gnuboard-site .site-header nav a:hover,
body.hm-gnuboard-site .site-header .nav-links a:hover {
    color: var(--hm-accent) !important;
    background: var(--hm-accent-soft) !important;
}
body.hm-gnuboard-site .hm-auth-button,
body.hm-gnuboard-site .site-header .btn-login,
body.hm-gnuboard-site .btn-primary,
body.hm-gnuboard-site .btn-cta {
    border-color: var(--hm-accent) !important;
    background: var(--hm-accent) !important;
    color: var(--hm-button-text) !important;
}
body.hm-layout-02 .hm-site-header {
    border-top: 4px solid var(--hm-accent) !important;
    box-shadow: none !important;
}
body.hm-layout-02 .hm-primary-nav a {
    border: 1px solid var(--hm-border) !important;
    background: var(--hm-surface-alt) !important;
}
body.hm-layout-03 .hm-site-header {
    min-height: 96px !important;
}
body.hm-layout-03 .hm-header-inner {
    flex-wrap: wrap !important;
    align-content: center !important;
    gap: 8px 16px !important;
    min-height: 96px !important;
}
body.hm-layout-03 .hm-primary-nav {
    order: 5 !important;
    flex: 1 0 100% !important;
    margin-left: 0 !important;
    justify-content: flex-start !important;
    padding-top: 8px !important;
    border-top: 1px solid var(--hm-border) !important;
}
body.hm-layout-04 .hm-header-inner {
    width: min(1080px, calc(100% - 48px)) !important;
}
body.hm-layout-04 .hm-site-brand {
    text-transform: uppercase !important;
}
body.hm-layout-04 .hm-site-header {
    background: var(--hm-page-bg) !important;
    box-shadow: inset 0 -3px 0 var(--hm-accent) !important;
}
body.hm-layout-05 .hm-header-inner {
    width: min(1040px, calc(100% - 32px)) !important;
}
body.hm-layout-05 .hm-brand-mark {
    border-radius: 3px !important;
    transform: rotate(45deg) !important;
}
body.hm-gnuboard-site .hero {
    background: var(--hm-hero-bg) !important;
    color: var(--hm-text) !important;
}
body.hm-layout-02 .hero,
body.hm-layout-02 .hm-main-board-preview {
    border-left: 8px solid var(--hm-accent) !important;
}
body.hm-layout-03 .hero {
    border-bottom: 1px solid var(--hm-border) !important;
}
body.hm-layout-04 .hero {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%) !important;
}
body.hm-layout-05 .hero .hero-content {
    width: min(1040px, calc(100% - 32px)) !important;
}
body.hm-gnuboard-site .section {
    background: transparent !important;
}
body.hm-gnuboard-site .feature-card,
body.hm-gnuboard-site .board-widget,
body.hm-gnuboard-site .stat-item,
body.hm-gnuboard-site .cta-card {
    border-color: var(--hm-border) !important;
    border-radius: var(--hm-card-radius) !important;
    background: var(--hm-surface) !important;
    box-shadow: var(--hm-card-shadow) !important;
}
body.hm-gnuboard-site .section-label,
body.hm-gnuboard-site .hero-badge,
body.hm-gnuboard-site .highlight {
    color: var(--hm-accent) !important;
}
body.hm-gnuboard-site .hm-main-board-preview {
    --hm-card-bg: var(--hm-preview-bg);
    --hm-card-text: var(--hm-text);
    --hm-card-muted: var(--hm-muted);
    --hm-card-line: var(--hm-border);
    padding: clamp(92px, 8vw, 144px) clamp(14px, 4vw, 56px) clamp(28px, 3.5vw, 52px) !important;
    background: var(--hm-preview-bg) !important;
    color: var(--hm-text) !important;
    position: relative !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}
body.hm-gnuboard-site .hm-main-board-preview *:not(i):not([class^="fa"]):not([class*=" fa-"]):not(.material-icons):not(.xi) {
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    color: inherit;
}
body.hm-gnuboard-site .hm-preview-head {
    padding: 14px 16px !important;
    border: 1px solid color-mix(in srgb, var(--hm-border) 72%, transparent) !important;
    border-radius: var(--hm-card-radius) !important;
    background: color-mix(in srgb, var(--hm-surface) 78%, transparent) !important;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .06) !important;
}
body.hm-gnuboard-site .hm-preview-eyebrow,
body.hm-gnuboard-site .hm-preview-board,
body.hm-gnuboard-site .hm-board-panel-head p {
    color: var(--hm-accent) !important;
}
body.hm-gnuboard-site .hm-preview-card,
body.hm-gnuboard-site .hm-board-panel,
body.hm-gnuboard-site .hm-board-chip {
    border-color: var(--hm-border) !important;
    border-radius: var(--hm-card-radius) !important;
    background: var(--hm-surface) !important;
    box-shadow: var(--hm-card-shadow) !important;
    opacity: 1 !important;
}
body.hm-gnuboard-site .hm-preview-media img,
body.hm-gnuboard-site .hm-preview-thumb img {
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}
body.hm-card-02 .hm-preview-card,
body.hm-card-02 .feature-card,
body.hm-card-02 .board-widget {
    border-radius: 3px !important;
    box-shadow: none !important;
}
body.hm-card-02 .hm-preview-media {
    border-bottom: 4px solid var(--hm-accent) !important;
}
body.hm-card-03 .hm-preview-card,
body.hm-card-03 .feature-card,
body.hm-card-03 .board-widget {
    border: 0 !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .12) !important;
}
body.hm-card-03 .hm-preview-carousel {
    grid-auto-columns: minmax(288px, 336px) !important;
}
body.hm-card-04 .hm-preview-card,
body.hm-card-04 .feature-card,
body.hm-card-04 .board-widget {
    border-width: 2px !important;
    background: linear-gradient(180deg, var(--hm-surface), var(--hm-surface-alt)) !important;
}
body.hm-card-04 .hm-preview-card {
    padding: 8px !important;
}
body.hm-card-04 .hm-preview-media {
    border-radius: calc(var(--hm-card-radius) - 2px) !important;
}
body.hm-layout-04 .hm-preview-carousel {
    grid-auto-columns: minmax(280px, 330px) !important;
}
body.hm-layout-01 .hm-preview-carousel {
    grid-auto-columns: minmax(246px, 286px) !important;
}
body.hm-layout-02 .hm-preview-head {
    border-left: 8px solid var(--hm-accent) !important;
}
body.hm-layout-02 .hm-preview-carousel {
    grid-auto-columns: minmax(280px, 320px) !important;
}
body.hm-layout-03 .hm-main-board-preview {
    border-top: 6px solid var(--hm-accent) !important;
}
body.hm-layout-03 .hm-preview-carousel {
    grid-auto-columns: minmax(220px, 260px) !important;
}
body.hm-layout-04 .hm-preview-head {
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    box-shadow: none !important;
}
body.hm-layout-05 .hm-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
body.hm-layout-05 .hm-preview-head {
    width: min(1040px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
body.hm-style-03 .hm-preview-head,
body.hm-style-07 .hm-preview-head,
body.hm-style-11 .hm-preview-head {
    background: linear-gradient(135deg, color-mix(in srgb, var(--hm-surface) 88%, transparent), color-mix(in srgb, var(--hm-accent-soft) 70%, transparent)) !important;
}
body.hm-style-08 .hm-preview-card {
    border-color: var(--hm-accent) !important;
}
@media (max-width: 860px) {
    body.hm-layout-03 .hm-site-header {
        min-height: 64px !important;
    }
    body.hm-layout-03 .hm-header-inner {
        flex-wrap: nowrap !important;
        min-height: 64px !important;
    }
    body.hm-layout-03 .hm-primary-nav {
        border-top: 0 !important;
        padding-top: 0 !important;
    }
    body.hm-layout-04 .hm-header-inner,
    body.hm-layout-05 .hm-header-inner {
        width: min(100% - 24px, 1180px) !important;
    }
    body.hm-gnuboard-site .hm-main-board-preview {
        padding: 72px 14px 24px !important;
    }
    body.hm-layout-05 .hm-board-grid {
        grid-template-columns: 1fr !important;
    }
}

/* HM_UNIQUE_SITE_036 */
body.hm-site-036 {
    --hm-font: 'Roboto', 'Malgun Gothic', '맑은 고딕', Arial, sans-serif;
    --font-main: var(--hm-font);
    --font-body: var(--hm-font);
    --font-sans: var(--hm-font);
    --font-family: var(--hm-font);
    --font-primary: var(--hm-font);
    --font-korean: var(--hm-font);
    --font-heading: var(--hm-font);
    --font-display: var(--hm-font);
    --font-kr: var(--hm-font);
    --body-font: var(--hm-font);
    --font-serif: var(--hm-font);
    --hm-accent: hsl(263 72% 38%);
    --hm-accent-2: hsl(30 69% 42%);
    --hm-accent-3: hsl(125 70% 44%);
    --hm-accent-soft: hsl(263 86% 95%);
    --hm-page-bg: linear-gradient(144deg, hsl(263 74% 97%) 0%, hsl(30 78% 98%) 48%, hsl(125 76% 96%) 100%);
    --hm-surface: hsl(271 38% 99%);
    --hm-surface-alt: hsl(30 58% 95%);
    --hm-text: hsl(125 36% 13%);
    --hm-muted: hsl(113 18% 42%);
    --hm-border: hsl(30 42% 82%);
    --hm-header-bg: hsl(263 70% 98% / 0.96);
    --hm-header-border: hsl(263 56% 84%);
    --hm-header-shadow: 0 16px 24px hsl(263 50% 28% / 0.12);
    --hm-card-shadow: 0 16px 24px hsl(263 50% 28% / 0.12);
    --hm-radius: 4px;
    --hm-card-radius: 18px;
    --hm-nav-radius: 4px;
    --hm-shell-width: 1156px;
    --hm-card-width: 318px;
    --hm-gallery-width: 274px;
    --hm-site-gap: 24px;
    --hm-hero-bg: linear-gradient(63deg, hsl(263 74% 97%) 0%, hsl(271 38% 99%) 42%, hsl(125 76% 96%) 100%);
    --hm-preview-bg: linear-gradient(144deg, hsl(263 74% 97%) 0%, hsl(271 38% 99%) 50%, hsl(125 76% 96%) 100%);
}
body.hm-site-036 .hm-header-inner,
body.hm-site-036 .hero-content,
body.hm-site-036 .section-inner,
body.hm-site-036 .hm-preview-head,
body.hm-site-036 .hm-board-panel-head {
    width: min(var(--hm-shell-width), calc(100% - 32px)) !important;
}
body.hm-site-036 .hm-site-header {
    min-height: 86px !important;
    border-bottom-width: 2px !important;
}
body.hm-site-036 .hm-header-inner {
    min-height: 86px !important;
    gap: var(--hm-site-gap) !important;
}
body.hm-site-036 .hm-site-brand {
    font-size: clamp(18px, 2vw, 24px) !important;
    letter-spacing: 0 !important;
}
body.hm-site-036 .hm-brand-mark {
    border-radius: 4px !important;
    transform: rotate(6deg) !important;
}
body.hm-site-036 .hm-primary-nav a {
    border-radius: var(--hm-nav-radius) !important;
    padding-inline: 10px !important;
}
body.hm-site-036 .hm-primary-nav a {border-bottom: 2px solid transparent !important;background: transparent !important;}}
body.hm-site-036 .hm-primary-nav a:hover {border-bottom-color: var(--hm-accent) !important;}}
body.hm-site-036 .hm-main-board-preview {
    background:
        repeating-linear-gradient(63deg, transparent 0 22px, hsl(263 68% 90% / 0.24) 22px 23px),
        var(--hm-preview-bg) !important;
}
body.hm-site-036 .hm-preview-head h2 {
    font-size: clamp(22px, 3vw, 24px) !important;
    letter-spacing: 0 !important;
}
body.hm-site-036 .hm-preview-carousel {
    gap: var(--hm-site-gap) !important;
    grid-auto-columns: minmax(var(--hm-card-width), calc(var(--hm-card-width) + 42px)) !important;
}
body.hm-site-036 .hm-preview-card {
    border-radius: var(--hm-card-radius) !important;
}
body.hm-site-036 .hm-preview-media,
body.hm-site-036 .hm-preview-thumb {
    aspect-ratio: 4 / 3 !important;
}
body.hm-site-036 .hm-preview-media img,
body.hm-site-036 .hm-preview-thumb img {
    filter: contrast(1.08) sepia(.08) !important;
}
body.hm-site-036 .hm-board-grid {
    gap: var(--hm-site-gap) !important;
}
@media (max-width: 860px) {
    body.hm-site-036 .hm-header-inner,
    body.hm-site-036 .hero-content,
    body.hm-site-036 .section-inner,
    body.hm-site-036 .hm-preview-head,
    body.hm-site-036 .hm-board-panel-head {
        width: min(100% - 24px, var(--hm-shell-width)) !important;
    }
    body.hm-site-036 .hm-site-header,
    body.hm-site-036 .hm-header-inner {
        min-height: 64px !important;
    }
    body.hm-site-036 .hm-preview-carousel {
        grid-auto-columns: minmax(238px, 78vw) !important;
    }
}
/* END_HM_SITE_DESIGN_VARIANTS_V1 */
