:root {
            --arcade-blue: #0000CD;
            --pixel-green: #00FF00;
            --coin-gold: #FFD700;
            --crt-black: #0D0D0D;
            --hot-pink: #FF1493;
            --white: #FFFFFF;
            --dark-blue: #000080;
            --neon-cyan: #00FFFF;
            --pixel-red: #FF0000;
            --font-pixel: 'Press Start 2P', cursive;
            --font-body: 'Noto Sans KR', sans-serif;
        }

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

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

        body {
            font-family: var(--font-body);
            background-color: var(--crt-black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* CRT Scanline Overlay */
        .crt-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.1) 0px,
                rgba(0, 0, 0, 0.1) 1px,
                transparent 1px,
                transparent 3px
            );
        }

        /* Pixel Art Decorations */
        .pixel-dot {
            width: 8px;
            height: 8px;
            display: inline-block;
        }

        .pixel-border {
            border: 4px solid;
            border-image: repeating-linear-gradient(
                90deg,
                var(--arcade-blue) 0px,
                var(--arcade-blue) 8px,
                var(--hot-pink) 8px,
                var(--hot-pink) 16px,
                var(--coin-gold) 16px,
                var(--coin-gold) 24px,
                var(--pixel-green) 24px,
                var(--pixel-green) 32px
            ) 4;
        }

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

        @keyframes scanline {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100vh); }
        }

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

        @keyframes rainbow-border {
            0% { border-color: var(--pixel-red); }
            16% { border-color: var(--coin-gold); }
            33% { border-color: var(--pixel-green); }
            50% { border-color: var(--neon-cyan); }
            66% { border-color: var(--arcade-blue); }
            83% { border-color: var(--hot-pink); }
            100% { border-color: var(--pixel-red); }
        }

        @keyframes coin-spin {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

        @keyframes glow-pulse {
            0%, 100% { text-shadow: 0 0 10px var(--pixel-green), 0 0 20px var(--pixel-green); }
            50% { text-shadow: 0 0 20px var(--pixel-green), 0 0 40px var(--pixel-green), 0 0 60px var(--pixel-green); }
        }

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

        @keyframes pixel-fade-in {
            0% { opacity: 0; transform: scale(0.8); }
            50% { opacity: 0.5; transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }

        @keyframes type-cursor {
            0%, 49% { border-right-color: var(--pixel-green); }
            50%, 100% { border-right-color: transparent; }
        }

        @keyframes marquee-scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        .animate-in {
            animation: slide-up 0.6s ease forwards;
        }

        .pixel-animate-in {
            animation: pixel-fade-in 0.5s ease forwards;
        }

        /* Header / Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--crt-black);
            border-bottom: 4px solid var(--arcade-blue);
            padding: 0.75rem 2rem;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 205, 0.4);
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: var(--font-pixel);
            font-size: 0.85rem;
            color: var(--pixel-green);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 0 0 10px var(--pixel-green);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--arcade-blue);
            border: 2px solid var(--pixel-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

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

        .nav-menu a {
            font-family: var(--font-pixel);
            font-size: 0.6rem;
            color: var(--white);
            text-decoration: none;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--pixel-green);
            text-shadow: 0 0 10px var(--pixel-green);
        }

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

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

        .mobile-toggle {
            display: none;
            background: none;
            border: 2px solid var(--pixel-green);
            color: var(--pixel-green);
            font-size: 1.2rem;
            padding: 0.5rem;
            cursor: pointer;
            font-family: var(--font-pixel);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            background: var(--crt-black);
            border-bottom: 4px solid var(--arcade-blue);
            padding: 1rem;
            z-index: 999;
        }

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

        .mobile-nav a {
            display: block;
            font-family: var(--font-pixel);
            font-size: 0.6rem;
            color: var(--white);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(0, 255, 0, 0.2);
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover {
            color: var(--pixel-green);
            background: rgba(0, 255, 0, 0.05);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 2rem 4rem;
            background: var(--crt-black);
        }

        .hero-scanline {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(0, 255, 0, 0.1);
            animation: scanline 4s linear infinite;
        }

        .hero-pixels {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .hero-pixel-item {
            position: absolute;
            width: 12px;
            height: 12px;
            opacity: 0.3;
            animation: float-pixel 3s ease-in-out infinite;
        }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 10;
            max-width: 900px;
        }

        .hero-badge {
            font-family: var(--font-pixel);
            font-size: 0.55rem;
            color: var(--coin-gold);
            margin-bottom: 2rem;
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border: 2px solid var(--coin-gold);
            animation: blink 1.5s ease infinite;
        }

        .hero-title {
            font-family: var(--font-pixel);
            font-size: clamp(1.5rem, 4vw, 3rem);
            color: var(--pixel-green);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 20px var(--pixel-green), 0 0 40px var(--pixel-green);
            animation: glow-pulse 2s ease infinite;
            line-height: 1.8;
        }

        .hero-cursor {
            display: inline-block;
            width: 1.5rem;
            height: clamp(1.5rem, 4vw, 3rem);
            background: var(--pixel-green);
            margin-left: 0.5rem;
            animation: blink 0.8s step-end infinite;
            vertical-align: bottom;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

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

        .btn-arcade {
            font-family: var(--font-pixel);
            font-size: 0.65rem;
            padding: 1rem 2rem;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.2s ease;
            position: relative;
            text-transform: uppercase;
        }

        .btn-arcade-primary {
            background: var(--arcade-blue);
            color: var(--white);
            border: 3px solid var(--neon-cyan);
            box-shadow: 0 4px 0 var(--dark-blue), 0 0 20px rgba(0, 0, 205, 0.5);
        }

        .btn-arcade-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 0 var(--dark-blue), 0 0 30px rgba(0, 0, 205, 0.8);
        }

        .btn-arcade-primary:active {
            transform: translateY(2px);
            box-shadow: 0 2px 0 var(--dark-blue), 0 0 10px rgba(0, 0, 205, 0.3);
        }

        .btn-arcade-secondary {
            background: transparent;
            color: var(--pixel-green);
            border: 3px solid var(--pixel-green);
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
        }

        .btn-arcade-secondary:hover {
            background: rgba(0, 255, 0, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
            transform: translateY(-2px);
        }

        .hero-decoration {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .hero-decoration span {
            width: 8px;
            height: 8px;
            display: inline-block;
        }

        /* Section Styles */
        .section {
            padding: 5rem 2rem;
            position: relative;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .section-label {
            font-family: var(--font-pixel);
            font-size: 0.55rem;
            color: var(--coin-gold);
            margin-bottom: 1rem;
            display: block;
            letter-spacing: 2px;
        }

        .section-title {
            font-family: var(--font-pixel);
            font-size: clamp(0.9rem, 2.5vw, 1.5rem);
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 2;
        }

        .section-title span {
            color: var(--pixel-green);
        }

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

        /* Features Section */
        .features-section {
            background: linear-gradient(180deg, var(--crt-black) 0%, #0a0a2a 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(0, 0, 205, 0.1);
            border: 3px solid var(--arcade-blue);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .feature-card:nth-child(1) { border-color: var(--pixel-green); }
        .feature-card:nth-child(2) { border-color: var(--hot-pink); }
        .feature-card:nth-child(3) { border-color: var(--coin-gold); }
        .feature-card:nth-child(4) { border-color: var(--neon-cyan); }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(0, 0, 205, 0.4);
        }

        .feature-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .feature-card-number {
            font-family: var(--font-pixel);
            font-size: 0.6rem;
            color: var(--coin-gold);
            background: rgba(255, 215, 0, 0.1);
            padding: 0.3rem 0.6rem;
            border: 1px solid var(--coin-gold);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Pixel Art Icons using box-shadow */
        .pixel-icon-shield {
            width: 4px;
            height: 4px;
            background: var(--pixel-green);
            box-shadow:
                4px 0 0 var(--pixel-green),
                8px 0 0 var(--pixel-green),
                12px 0 0 var(--pixel-green),
                16px 0 0 var(--pixel-green),
                0 4px 0 var(--pixel-green),
                4px 4px 0 var(--pixel-green),
                8px 4px 0 var(--pixel-green),
                12px 4px 0 var(--pixel-green),
                16px 4px 0 var(--pixel-green),
                20px 4px 0 var(--pixel-green),
                0 8px 0 var(--pixel-green),
                4px 8px 0 var(--pixel-green),
                8px 8px 0 var(--pixel-green),
                12px 8px 0 var(--pixel-green),
                16px 8px 0 var(--pixel-green),
                20px 8px 0 var(--pixel-green),
                4px 12px 0 var(--pixel-green),
                8px 12px 0 var(--pixel-green),
                12px 12px 0 var(--pixel-green),
                16px 12px 0 var(--pixel-green),
                8px 16px 0 var(--pixel-green),
                12px 16px 0 var(--pixel-green);
        }

        .pixel-icon-sword {
            width: 4px;
            height: 4px;
            background: var(--hot-pink);
            box-shadow:
                4px 4px 0 var(--hot-pink),
                8px 8px 0 var(--hot-pink),
                12px 12px 0 var(--hot-pink),
                16px 16px 0 var(--hot-pink),
                20px 20px 0 var(--hot-pink),
                0 4px 0 var(--hot-pink),
                4px 0 0 var(--hot-pink),
                16px 20px 0 var(--coin-gold),
                20px 16px 0 var(--coin-gold),
                20px 24px 0 var(--coin-gold),
                24px 20px 0 var(--coin-gold),
                24px 24px 0 var(--coin-gold);
        }

        .pixel-icon-star {
            width: 4px;
            height: 4px;
            background: var(--coin-gold);
            box-shadow:
                8px 0 0 var(--coin-gold),
                16px 0 0 var(--coin-gold),
                4px 4px 0 var(--coin-gold),
                8px 4px 0 var(--coin-gold),
                12px 4px 0 var(--coin-gold),
                0 8px 0 var(--coin-gold),
                4px 8px 0 var(--coin-gold),
                8px 8px 0 var(--coin-gold),
                12px 8px 0 var(--coin-gold),
                16px 8px 0 var(--coin-gold),
                20px 8px 0 var(--coin-gold),
                4px 12px 0 var(--coin-gold),
                8px 12px 0 var(--coin-gold),
                12px 12px 0 var(--coin-gold),
                16px 12px 0 var(--coin-gold),
                4px 16px 0 var(--coin-gold),
                16px 16px 0 var(--coin-gold);
        }

        .pixel-icon-heart {
            width: 4px;
            height: 4px;
            background: var(--neon-cyan);
            box-shadow:
                4px 0 0 var(--neon-cyan),
                12px 0 0 var(--neon-cyan),
                16px 0 0 var(--neon-cyan),
                0 4px 0 var(--neon-cyan),
                4px 4px 0 var(--neon-cyan),
                8px 4px 0 var(--neon-cyan),
                12px 4px 0 var(--neon-cyan),
                16px 4px 0 var(--neon-cyan),
                20px 4px 0 var(--neon-cyan),
                0 8px 0 var(--neon-cyan),
                4px 8px 0 var(--neon-cyan),
                8px 8px 0 var(--neon-cyan),
                12px 8px 0 var(--neon-cyan),
                16px 8px 0 var(--neon-cyan),
                20px 8px 0 var(--neon-cyan),
                4px 12px 0 var(--neon-cyan),
                8px 12px 0 var(--neon-cyan),
                12px 12px 0 var(--neon-cyan),
                16px 12px 0 var(--neon-cyan),
                8px 16px 0 var(--neon-cyan),
                12px 16px 0 var(--neon-cyan);
        }

        .feature-card-title {
            font-family: var(--font-pixel);
            font-size: 0.7rem;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .feature-card-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }

        .feature-card-screen {
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-template-rows: repeat(6, 1fr);
            opacity: 0.15;
        }

        .feature-card-screen span {
            width: 100%;
            height: 100%;
        }

        /* Board / High Score Section */
        .board-section {
            background: var(--crt-black);
            border-top: 4px solid var(--coin-gold);
            border-bottom: 4px solid var(--coin-gold);
        }

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

        .board-widget {
            background: rgba(13, 13, 13, 0.9);
            border: 3px solid var(--arcade-blue);
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .board-widget.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .board-widget-header {
            background: var(--arcade-blue);
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .board-widget-title {
            font-family: var(--font-pixel);
            font-size: 0.6rem;
            color: var(--coin-gold);
        }

        .board-widget-badge {
            font-family: var(--font-pixel);
            font-size: 0.45rem;
            color: var(--pixel-green);
            border: 1px solid var(--pixel-green);
            padding: 0.2rem 0.5rem;
        }

        .board-widget-body {
            padding: 1.5rem;
        }

        .board-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px dashed rgba(0, 255, 0, 0.2);
        }

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

        .board-rank {
            font-family: var(--font-pixel);
            font-size: 0.6rem;
            color: var(--coin-gold);
            width: 2.5rem;
            text-align: center;
        }

        .board-rank-1 { color: var(--coin-gold); }
        .board-rank-2 { color: #C0C0C0; }
        .board-rank-3 { color: #CD7F32; }

        .board-item-name {
            flex: 1;
            font-size: 0.85rem;
            color: var(--white);
            padding: 0 1rem;
        }

        .board-item-score {
            font-family: var(--font-pixel);
            font-size: 0.55rem;
            color: var(--pixel-green);
        }

        .board-dot-separator {
            display: flex;
            gap: 4px;
            margin: 0 0.5rem;
        }

        .board-dot-separator span {
            width: 4px;
            height: 4px;
            background: var(--coin-gold);
            border-radius: 50%;
            opacity: 0.5;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(180deg, #0a0a2a 0%, var(--crt-black) 100%);
            padding: 5rem 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            border: 2px solid var(--arcade-blue);
            background: rgba(0, 0, 205, 0.05);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9);
        }

        .stat-card.visible {
            opacity: 1;
            transform: scale(1);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--pixel-green);
        }

        .stat-icon {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: inline-block;
            animation: float-pixel 2s ease-in-out infinite;
        }

        .stat-number {
            font-family: var(--font-pixel);
            font-size: clamp(1.2rem, 3vw, 2rem);
            color: var(--pixel-green);
            margin-bottom: 0.5rem;
            text-shadow: 0 0 10px var(--pixel-green);
        }

        .stat-label {
            font-family: var(--font-pixel);
            font-size: 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 1px;
        }

        .stat-coin {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 16px;
            height: 16px;
            background: var(--coin-gold);
            border-radius: 50%;
            animation: coin-spin 2s linear infinite;
            border: 2px solid #B8860B;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: var(--crt-black);
        }

        .cta-border-top,
        .cta-border-bottom {
            position: absolute;
            left: 0;
            width: 100%;
            height: 4px;
            animation: rainbow-border 3s linear infinite;
            border-top: 4px solid;
        }

        .cta-border-top { top: 0; }
        .cta-border-bottom { bottom: 0; }

        .cta-insert-coin {
            font-family: var(--font-pixel);
            font-size: 0.7rem;
            color: var(--coin-gold);
            margin-bottom: 2rem;
            animation: blink 1.2s ease infinite;
        }

        .cta-title {
            font-family: var(--font-pixel);
            font-size: clamp(1rem, 3vw, 1.8rem);
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 2;
        }

        .cta-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 3rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            font-family: var(--font-pixel);
            font-size: 0.75rem;
            padding: 1.2rem 3rem;
            background: var(--pixel-red);
            color: var(--white);
            border: 4px solid;
            border-color: var(--pixel-red);
            animation: rainbow-border 2s linear infinite;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            border-radius: 50px;
            box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 0, 0.4);
            transition: all 0.2s ease;
            text-transform: uppercase;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 0, 0, 0.6);
        }

        .cta-button:active {
            transform: translateY(2px);
            box-shadow: inset 0 4px 0 rgba(0, 0, 0, 0.3);
        }

        .cta-coins {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .cta-coin-item {
            width: 12px;
            height: 12px;
            background: var(--coin-gold);
            border-radius: 50%;
            opacity: 0.6;
            animation: coin-spin 1.5s linear infinite;
        }

        .cta-coin-item:nth-child(2) { animation-delay: 0.3s; }
        .cta-coin-item:nth-child(3) { animation-delay: 0.6s; }
        .cta-coin-item:nth-child(4) { animation-delay: 0.9s; }
        .cta-coin-item:nth-child(5) { animation-delay: 1.2s; }

        /* Footer */
        .footer {
            background: var(--crt-black);
            border-top: 4px solid var(--pixel-green);
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 255, 0, 0.02) 0px,
                rgba(0, 255, 0, 0.02) 1px,
                transparent 1px,
                transparent 3px
            );
            pointer-events: none;
        }

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

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-col-title {
            font-family: var(--font-pixel);
            font-size: 0.55rem;
            color: var(--pixel-green);
            margin-bottom: 1rem;
            text-shadow: 0 0 5px var(--pixel-green);
        }

        .footer-col a,
        .footer-col p {
            display: block;
            font-size: 0.85rem;
            color: rgba(0, 255, 0, 0.6);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--pixel-green);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 255, 0, 0.2);
        }

        .footer-game-over {
            font-family: var(--font-pixel);
            font-size: 1.2rem;
            color: var(--pixel-green);
            margin-bottom: 1rem;
            text-shadow: 0 0 10px var(--pixel-green);
            animation: blink 2s ease infinite;
        }

        .footer-copyright {
            font-family: var(--font-pixel);
            font-size: 0.45rem;
            color: rgba(0, 255, 0, 0.4);
            line-height: 2;
        }

        .footer-pixels {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-top: 1.5rem;
        }

        .footer-pixels span {
            width: 6px;
            height: 6px;
            display: inline-block;
        }

        /* Marquee */
        .marquee-bar {
            background: var(--dark-blue);
            border-top: 2px solid var(--coin-gold);
            border-bottom: 2px solid var(--coin-gold);
            padding: 0.5rem 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee-scroll 20s linear infinite;
            font-family: var(--font-pixel);
            font-size: 0.55rem;
            color: var(--coin-gold);
        }

        .marquee-content span {
            margin: 0 2rem;
        }

        /* Responsive */
        @media (max-width: 359px) {
            html { font-size: 13px; }
            .hero-title { font-size: 1.2rem; }
            .header { padding: 0.5rem 1rem; }
        }

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

            .mobile-toggle { display: block; }
            .nav-menu { display: none; }

            .hero { padding: 5rem 1rem 3rem; min-height: 90vh; }
            .hero-buttons { flex-direction: column; align-items: center; }

            .section { padding: 3rem 1rem; }
            .features-grid { grid-template-columns: 1fr; }
            .board-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

            .footer-top { grid-template-columns: 1fr; }

            .cta-button { padding: 1rem 2rem; font-size: 0.6rem; }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            html { font-size: 15px; }

            .mobile-toggle { display: block; }
            .nav-menu { display: none; }

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

        @media (min-width: 1024px) and (max-width: 1279px) {
            html { font-size: 16px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .board-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1280px) and (max-width: 1919px) {
            html { font-size: 16px; }
        }

        @media (min-width: 1920px) and (max-width: 2559px) {
            html { font-size: 17px; }
        }

        @media (min-width: 2560px) and (max-width: 3839px) {
            html { font-size: 19px; }
        }

        @media (min-width: 3840px) {
            html { font-size: 22px; }
        }

        /* Utility */
        .text-green { color: var(--pixel-green); }
        .text-gold { color: var(--coin-gold); }
        .text-pink { color: var(--hot-pink); }
        .text-cyan { color: var(--neon-cyan); }
        .text-blue { color: var(--arcade-blue); }

        .bg-green { background-color: var(--pixel-green); }
        .bg-gold { background-color: var(--coin-gold); }
        .bg-pink { background-color: var(--hot-pink); }
        .bg-cyan { background-color: var(--neon-cyan); }
        .bg-blue { background-color: var(--arcade-blue); }
        .bg-red { background-color: var(--pixel-red); }
/* 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_062 */
body.hm-site-062 {
    --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(145 72% 38%);
    --hm-accent-2: hsl(303 69% 42%);
    --hm-accent-3: hsl(19 70% 44%);
    --hm-accent-soft: hsl(145 86% 95%);
    --hm-page-bg: linear-gradient(178deg, hsl(145 74% 97%) 0%, hsl(303 78% 98%) 48%, hsl(19 76% 96%) 100%);
    --hm-surface: hsl(153 38% 99%);
    --hm-surface-alt: hsl(303 58% 95%);
    --hm-text: hsl(7 36% 13%);
    --hm-muted: hsl(355 18% 42%);
    --hm-border: hsl(303 42% 82%);
    --hm-header-bg: hsl(145 70% 98% / 0.96);
    --hm-header-border: hsl(145 56% 84%);
    --hm-header-shadow: 0 14px 24px hsl(145 50% 28% / 0.12);
    --hm-card-shadow: 0 14px 24px hsl(145 50% 28% / 0.12);
    --hm-radius: 18px;
    --hm-card-radius: 28px;
    --hm-nav-radius: 4px;
    --hm-shell-width: 1034px;
    --hm-card-width: 296px;
    --hm-gallery-width: 270px;
    --hm-site-gap: 19px;
    --hm-hero-bg: linear-gradient(123deg, hsl(145 74% 97%) 0%, hsl(153 38% 99%) 42%, hsl(19 76% 96%) 100%);
    --hm-preview-bg: linear-gradient(178deg, hsl(145 74% 97%) 0%, hsl(153 38% 99%) 50%, hsl(19 76% 96%) 100%);
}
body.hm-site-062 .hm-header-inner,
body.hm-site-062 .hero-content,
body.hm-site-062 .section-inner,
body.hm-site-062 .hm-preview-head,
body.hm-site-062 .hm-board-panel-head {
    width: min(var(--hm-shell-width), calc(100% - 32px)) !important;
}
body.hm-site-062 .hm-site-header {
    min-height: 80px !important;
    border-bottom-width: 4px !important;
}
body.hm-site-062 .hm-header-inner {
    min-height: 80px !important;
    gap: var(--hm-site-gap) !important;
}
body.hm-site-062 .hm-site-brand {
    font-size: clamp(18px, 2vw, 22px) !important;
    letter-spacing: 0 !important;
}
body.hm-site-062 .hm-brand-mark {
    border-radius: 18px !important;
    transform: rotate(1deg) !important;
}
body.hm-site-062 .hm-primary-nav a {
    border-radius: var(--hm-nav-radius) !important;
    padding-inline: 18px !important;
}
body.hm-site-062 .hm-primary-nav a {border: 1px solid var(--hm-border) !important;background: var(--hm-surface) !important;}}
body.hm-site-062 .hm-main-board-preview {
    background:
        repeating-linear-gradient(123deg, transparent 0 20px, hsl(145 68% 90% / 0.24) 20px 21px),
        var(--hm-preview-bg) !important;
}
body.hm-site-062 .hm-preview-head h2 {
    font-size: clamp(22px, 3vw, 34px) !important;
    letter-spacing: 0 !important;
}
body.hm-site-062 .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-062 .hm-preview-card {
    border-radius: var(--hm-card-radius) !important;
}
body.hm-site-062 .hm-preview-media,
body.hm-site-062 .hm-preview-thumb {
    aspect-ratio: 4 / 3 !important;
}
body.hm-site-062 .hm-preview-media img,
body.hm-site-062 .hm-preview-thumb img {
    filter: saturate(.98) brightness(.98) contrast(1.08) !important;
}
body.hm-site-062 .hm-board-grid {
    gap: var(--hm-site-gap) !important;
}
@media (max-width: 860px) {
    body.hm-site-062 .hm-header-inner,
    body.hm-site-062 .hero-content,
    body.hm-site-062 .section-inner,
    body.hm-site-062 .hm-preview-head,
    body.hm-site-062 .hm-board-panel-head {
        width: min(100% - 24px, var(--hm-shell-width)) !important;
    }
    body.hm-site-062 .hm-site-header,
    body.hm-site-062 .hm-header-inner {
        min-height: 64px !important;
    }
    body.hm-site-062 .hm-preview-carousel {
        grid-auto-columns: minmax(238px, 78vw) !important;
    }
}
/* END_HM_SITE_DESIGN_VARIANTS_V1 */
