@charset "utf-8";

/* ==================== NeonPulse Theme - CSS ==================== */

:root {
    --bg-primary: #0A0A0F;
    --bg-secondary: #12121A;
    --bg-card: #16162A;
    --bg-glass: rgba(10, 10, 15, 0.85);
    --neon-pink: #FF00FF;
    --neon-cyan: #00FFFF;
    --neon-green: #39FF14;
    --neon-yellow: #FFFF00;
    --neon-orange: #FF6600;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0C0;
    --text-muted: #6A6A80;
    --border-color: rgba(255, 0, 255, 0.2);
    --glow-pink: 0 0 10px #FF00FF, 0 0 20px #FF00FF, 0 0 40px #FF00FF;
    --glow-cyan: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 40px #00FFFF;
    --glow-green: 0 0 10px #39FF14, 0 0 20px #39FF14, 0 0 40px #39FF14;
    --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Scanline Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-pink);
    border-radius: 4px;
    box-shadow: var(--glow-pink);
}

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

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    }
    50% {
        box-shadow: 0 0 10px var(--neon-pink), 0 0 25px var(--neon-pink), 0 0 50px var(--neon-pink);
    }
}

@keyframes neonPulseCyan {
    0%, 100% {
        box-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    }
    50% {
        box-shadow: 0 0 10px var(--neon-cyan), 0 0 25px var(--neon-cyan), 0 0 50px var(--neon-cyan);
    }
}

@keyframes glitch {
    0% { transform: translate(0); }
    2% { transform: translate(2px, -2px); }
    4% { transform: translate(-2px, 2px); }
    6% { transform: translate(2px, 0); }
    8% { transform: translate(0); }
    100% { transform: translate(0); }
}

@keyframes glitchText {
    0% {
        clip-path: inset(0 0 90% 0);
        transform: translate(-2px, -2px);
    }
    10% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(2px, 2px);
    }
    20% {
        clip-path: inset(50% 0 30% 0);
        transform: translate(-1px, 1px);
    }
    30% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(1px, -1px);
    }
    40%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; width: 0; }
    50% { opacity: 1; width: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 2px 30px rgba(255, 0, 255, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-decoration: none;
    text-shadow: var(--glow-pink);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-shadow: 0 0 5px var(--neon-pink);
    animation: neonPulse 2s infinite;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--neon-pink);
    color: var(--bg-primary);
    text-shadow: none;
    box-shadow: 0 0 30px var(--neon-pink), 0 0 60px var(--neon-pink);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: 0 0 5px var(--neon-pink);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem;
}

.hero-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
    animation: lineGlow 4s infinite;
}

.hero-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.hero-line:nth-child(2) { top: 40%; animation-delay: 1s; }
.hero-line:nth-child(3) { top: 60%; animation-delay: 2s; }
.hero-line:nth-child(4) { top: 80%; animation-delay: 3s; }

.hero-line-v {
    position: absolute;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, transparent, var(--neon-cyan), transparent);
    animation: lineGlow 5s infinite;
}

.hero-line-v:nth-child(5) { left: 20%; animation-delay: 0.5s; }
.hero-line-v:nth-child(6) { left: 50%; animation-delay: 1.5s; }
.hero-line-v:nth-child(7) { left: 80%; animation-delay: 2.5s; }

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.hero-title-main {
    display: block;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan), var(--neon-green));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.hero-title-glitch {
    position: relative;
    display: inline-block;
    animation: glitch 5s infinite;
}

.hero-title-glitch::before,
.hero-title-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
}

.hero-title-glitch::before {
    color: var(--neon-cyan);
    animation: glitchText 3s infinite;
    z-index: -1;
}

.hero-title-glitch::after {
    color: var(--neon-pink);
    animation: glitchText 3s infinite reverse;
    z-index: -2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-subtitle span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-neon {
    padding: 1rem 2.5rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
}

.btn-neon-primary {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
    animation: neonPulse 2s infinite;
}

.btn-neon-primary:hover {
    background: var(--neon-pink);
    color: var(--bg-primary);
    text-shadow: none;
    box-shadow: 0 0 40px var(--neon-pink), 0 0 80px rgba(255, 0, 255, 0.3);
    transform: translateY(-2px);
}

.btn-neon-secondary {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
    animation: neonPulseCyan 2s infinite;
}

.btn-neon-secondary:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    text-shadow: none;
    box-shadow: 0 0 40px var(--neon-cyan), 0 0 80px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ==================== FEATURES ==================== */
.features {
    padding: 6rem 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: var(--glow-pink);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.15), inset 0 0 30px rgba(255, 0, 255, 0.02);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:nth-child(1) { --card-color: var(--neon-pink); }
.feature-card:nth-child(2) { --card-color: var(--neon-cyan); }
.feature-card:nth-child(3) { --card-color: var(--neon-green); }
.feature-card:nth-child(4) { --card-color: var(--neon-yellow); }

.feature-card:nth-child(2)::before { background: var(--neon-cyan); box-shadow: var(--glow-cyan); }
.feature-card:nth-child(3)::before { background: var(--neon-green); box-shadow: var(--glow-green); }
.feature-card:nth-child(4)::before { background: var(--neon-yellow); box-shadow: 0 0 10px var(--neon-yellow); }

.feature-card:nth-child(2):hover { border-color: var(--neon-cyan); box-shadow: 0 0 30px rgba(0, 255, 255, 0.15); }
.feature-card:nth-child(3):hover { border-color: var(--neon-green); box-shadow: 0 0 30px rgba(57, 255, 20, 0.15); }
.feature-card:nth-child(4):hover { border-color: var(--neon-yellow); box-shadow: 0 0 30px rgba(255, 255, 0, 0.15); }

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 2px solid var(--card-color);
    color: var(--card-color);
    font-size: 1.8rem;
    text-shadow: 0 0 10px var(--card-color);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==================== BOARD WIDGETS ==================== */
.board-widgets {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.board-widgets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.board-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.board-card:hover {
    border-color: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.1);
}

.board-card-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.board-card-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

.board-card:nth-child(2) .board-card-header::after { background: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan); }
.board-card:nth-child(3) .board-card-header::after { background: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }
.board-card:nth-child(4) .board-card-header::after { background: var(--neon-yellow); box-shadow: 0 0 10px var(--neon-yellow); }

.board-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.board-card-title .icon {
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
}

.board-card:nth-child(2) .board-card-title .icon { color: var(--neon-cyan); text-shadow: 0 0 5px var(--neon-cyan); }
.board-card:nth-child(3) .board-card-title .icon { color: var(--neon-green); text-shadow: 0 0 5px var(--neon-green); }
.board-card:nth-child(4) .board-card-title .icon { color: var(--neon-yellow); text-shadow: 0 0 5px var(--neon-yellow); }

.board-more {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.board-more:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.board-list {
    list-style: none;
    padding: 0.5rem 0;
}

.board-item {
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    cursor: pointer;
    border-left: 2px solid transparent;
}

.board-item:hover {
    background: rgba(255, 0, 255, 0.05);
    border-left-color: var(--neon-pink);
}

.board-item a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
    transition: var(--transition);
}

.board-item:hover a {
    color: var(--text-primary);
}

.board-item-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
    transition: var(--transition);
}

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

.board-item-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
}

.board-item-badge {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    background: rgba(255, 0, 255, 0.15);
    color: var(--neon-pink);
    font-size: 0.7rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    font-weight: 600;
}

/* ==================== STATS ==================== */
.stats {
    padding: 6rem 0;
    position: relative;
}

.stats::before,
.stats::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.stats::before { top: 0; }
.stats::after { bottom: 0; }

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

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

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item:nth-child(2) .stat-number { color: var(--neon-pink); text-shadow: var(--glow-pink); }
.stat-item:nth-child(3) .stat-number { color: var(--neon-green); text-shadow: var(--glow-green); }
.stat-item:nth-child(4) .stat-number { color: var(--neon-yellow); text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow); }

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.stat-suffix {
    font-size: 0.6em;
    opacity: 0.8;
}

/* ==================== CTA ==================== */
.cta {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.cta-box {
    position: relative;
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid var(--neon-pink);
    border-radius: 8px;
    background: var(--bg-card);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.1), inset 0 0 30px rgba(255, 0, 255, 0.02);
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan), var(--neon-green), var(--neon-pink)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradientShift 4s ease infinite;
    background-size: 300% 300%;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-neon-primary {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
}

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

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: 0 0 5px var(--neon-pink);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.mobile-menu a:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}

/* ==================== MAIN CONTENT AREA ==================== */
main {
    padding-top: 80px;
    min-height: calc(100vh - 300px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1279px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .hamburger {
        display: flex;
    }

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

    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
    }
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

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

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

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

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

    .hero {
        padding: 5rem 1rem 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-neon {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .board-item-title {
        max-width: 60%;
    }

    .board-item a {
        max-width: 60%;
    }

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

@media (max-width: 359px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 1rem;
    }

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

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

@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }
}

@media (min-width: 2560px) {
    html {
        font-size: 20px;
    }

    .container {
        max-width: 1600px;
    }
}
/* 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_011 */
body.hm-site-011 {
    --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(58 72% 38%);
    --hm-accent-2: hsl(204 69% 42%);
    --hm-accent-3: hsl(332 70% 44%);
    --hm-accent-soft: hsl(58 86% 95%);
    --hm-page-bg: linear-gradient(139deg, hsl(58 74% 97%) 0%, hsl(204 78% 98%) 48%, hsl(332 76% 96%) 100%);
    --hm-surface: hsl(66 38% 99%);
    --hm-surface-alt: hsl(204 58% 95%);
    --hm-text: hsl(280 36% 13%);
    --hm-muted: hsl(268 18% 42%);
    --hm-border: hsl(204 42% 82%);
    --hm-header-bg: hsl(58 70% 98% / 0.96);
    --hm-header-border: hsl(58 56% 84%);
    --hm-header-shadow: 0 11px 41px hsl(58 50% 28% / 0.12);
    --hm-card-shadow: 0 11px 41px hsl(58 50% 28% / 0.12);
    --hm-radius: 21px;
    --hm-card-radius: 25px;
    --hm-nav-radius: 15px;
    --hm-shell-width: 1101px;
    --hm-card-width: 273px;
    --hm-gallery-width: 301px;
    --hm-site-gap: 19px;
    --hm-hero-bg: linear-gradient(33deg, hsl(58 74% 97%) 0%, hsl(66 38% 99%) 42%, hsl(332 76% 96%) 100%);
    --hm-preview-bg: linear-gradient(139deg, hsl(58 74% 97%) 0%, hsl(66 38% 99%) 50%, hsl(332 76% 96%) 100%);
}
body.hm-site-011 .hm-header-inner,
body.hm-site-011 .hero-content,
body.hm-site-011 .section-inner,
body.hm-site-011 .hm-preview-head,
body.hm-site-011 .hm-board-panel-head {
    width: min(var(--hm-shell-width), calc(100% - 32px)) !important;
}
body.hm-site-011 .hm-site-header {
    min-height: 71px !important;
    border-bottom-width: 5px !important;
}
body.hm-site-011 .hm-header-inner {
    min-height: 71px !important;
    gap: var(--hm-site-gap) !important;
}
body.hm-site-011 .hm-site-brand {
    font-size: clamp(18px, 2vw, 21px) !important;
    letter-spacing: 0 !important;
}
body.hm-site-011 .hm-brand-mark {
    border-radius: 21px !important;
    transform: rotate(1deg) !important;
}
body.hm-site-011 .hm-primary-nav a {
    border-radius: var(--hm-nav-radius) !important;
    padding-inline: 12px !important;
}
body.hm-site-011 .hm-primary-nav a {border-bottom: 5px solid transparent !important;background: transparent !important;}}
body.hm-site-011 .hm-primary-nav a:hover {border-bottom-color: var(--hm-accent) !important;}}
body.hm-site-011 .hm-main-board-preview {
    background:
        repeating-linear-gradient(33deg, transparent 0 29px, hsl(58 68% 90% / 0.24) 29px 30px),
        var(--hm-preview-bg) !important;
}
body.hm-site-011 .hm-preview-head h2 {
    font-size: clamp(22px, 3vw, 31px) !important;
    letter-spacing: 0 !important;
}
body.hm-site-011 .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-011 .hm-preview-card {
    border-radius: var(--hm-card-radius) !important;
}
body.hm-site-011 .hm-preview-media,
body.hm-site-011 .hm-preview-thumb {
    aspect-ratio: 4 / 3 !important;
}
body.hm-site-011 .hm-preview-media img,
body.hm-site-011 .hm-preview-thumb img {
    filter: saturate(1.04) brightness(1.03) !important;
}
body.hm-site-011 .hm-board-grid {
    gap: var(--hm-site-gap) !important;
}
@media (max-width: 860px) {
    body.hm-site-011 .hm-header-inner,
    body.hm-site-011 .hero-content,
    body.hm-site-011 .section-inner,
    body.hm-site-011 .hm-preview-head,
    body.hm-site-011 .hm-board-panel-head {
        width: min(100% - 24px, var(--hm-shell-width)) !important;
    }
    body.hm-site-011 .hm-site-header,
    body.hm-site-011 .hm-header-inner {
        min-height: 64px !important;
    }
    body.hm-site-011 .hm-preview-carousel {
        grid-auto-columns: minmax(238px, 78vw) !important;
    }
}
/* END_HM_SITE_DESIGN_VARIANTS_V1 */
