:root {
            --bg-primary: #0F0F23;
            --bg-secondary: #1A1A3E;
            --bg-tertiary: #12122B;
            --bg-darkest: #0A0A1A;
            --gold: #F7931A;
            --gold-light: #FFB84D;
            --gold-dark: #D4780E;
            --purple: #627EEA;
            --purple-light: #8B9FF5;
            --purple-dark: #4A63C8;
            --green: #00D395;
            --green-light: #33E0AD;
            --green-dark: #00A876;
            --text-primary: #FFFFFF;
            --text-secondary: #B8B8D4;
            --text-muted: #6B6B8D;
            --card-bg: #1A1A3E;
            --card-border: #2A2A4E;
            --font-heading: 'Sora', 'Noto Sans KR', sans-serif;
            --font-body: 'Noto Sans KR', 'Sora', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

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

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

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

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-darkest);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--purple);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold);
        }

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

        /* Animations */
        @keyframes chainFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-8px) rotate(2deg); }
            75% { transform: translateY(4px) rotate(-1deg); }
        }

        @keyframes hexPulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.05); }
        }

        @keyframes nodeGlow {
            0%, 100% { box-shadow: 0 0 10px rgba(247, 147, 26, 0.3); }
            50% { box-shadow: 0 0 25px rgba(247, 147, 26, 0.6); }
        }

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

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

        @keyframes tickerScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes chainLink {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }

        @keyframes dataFlow {
            0% { left: -10%; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: 110%; opacity: 0; }
        }

        @keyframes borderGlow {
            0%, 100% { border-color: rgba(247, 147, 26, 0.3); }
            50% { border-color: rgba(98, 126, 234, 0.6); }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid transparent;
            border-image: linear-gradient(90deg, transparent, var(--gold), var(--purple), transparent) 1;
            padding: 0.8rem 0;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 0.5rem 0;
            background: rgba(10, 10, 26, 0.98);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            inset: 2px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
        }

        .logo-text {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .logo-text span {
            color: var(--gold);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

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

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

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

        .btn-connect {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.5rem;
            background: var(--green);
            color: var(--bg-primary);
            border: none;
            border-radius: 8px;
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-connect:hover {
            background: var(--green-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 211, 149, 0.3);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Hero Section */
        .hero {
            padding: 10rem 0 6rem;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-mesh {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(247, 147, 26, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(98, 126, 234, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 80%, rgba(0, 211, 149, 0.05) 0%, transparent 50%);
            animation: gradientShift 15s ease infinite;
            background-size: 200% 200%;
        }

        .hero-hex-grid {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .hex-node {
            position: absolute;
            width: 60px;
            height: 60px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            background: rgba(98, 126, 234, 0.1);
            border: 1px solid rgba(98, 126, 234, 0.2);
            animation: hexPulse 4s ease-in-out infinite;
        }

        .hex-node:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
        .hex-node:nth-child(2) { top: 25%; right: 10%; animation-delay: 1s; width: 45px; height: 45px; }
        .hex-node:nth-child(3) { bottom: 30%; left: 8%; animation-delay: 2s; width: 35px; height: 35px; }
        .hex-node:nth-child(4) { top: 40%; right: 5%; animation-delay: 0.5s; }
        .hex-node:nth-child(5) { bottom: 15%; right: 15%; animation-delay: 1.5s; width: 50px; height: 50px; }
        .hex-node:nth-child(6) { top: 60%; left: 15%; animation-delay: 3s; width: 40px; height: 40px; }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            animation: slideUp 1s ease;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.2rem;
            background: rgba(247, 147, 26, 0.1);
            border: 1px solid rgba(247, 147, 26, 0.3);
            border-radius: 50px;
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--gold);
            margin-bottom: 2rem;
            animation: borderGlow 3s ease infinite;
        }

        .hero-badge i {
            font-size: 0.7rem;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--gold);
            text-shadow: 0 0 60px rgba(247, 147, 26, 0.2);
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-subtitle .accent {
            background: linear-gradient(90deg, var(--purple), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 2rem;
            background: var(--gold);
            color: var(--bg-primary);
            border: none;
            border-radius: 10px;
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(247, 147, 26, 0.3);
        }

        .btn-purple {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 2rem;
            background: transparent;
            color: var(--purple-light);
            border: 2px solid var(--purple);
            border-radius: 10px;
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-purple:hover {
            background: rgba(98, 126, 234, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(98, 126, 234, 0.2);
        }

        .hero-hash {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            color: var(--text-muted);
            padding: 0.8rem 1.5rem;
            background: rgba(26, 26, 62, 0.8);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            display: inline-block;
            letter-spacing: 0.05em;
        }

        .hero-hash .hash-prefix {
            color: var(--purple);
        }

        .hero-hash .hash-value {
            color: var(--gold);
        }

        /* Chain Connector */
        .chain-connector {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 0;
            position: relative;
        }

        .chain-link {
            width: 30px;
            height: 30px;
            border: 3px solid var(--gold);
            border-radius: 50%;
            margin: 0 -4px;
            position: relative;
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .chain-link:nth-child(even) {
            border-color: var(--purple);
        }

        .chain-link:hover {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Features Section */
        .features {
            padding: 6rem 0;
            position: relative;
        }

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

        .section-tag {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--purple);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

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

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

        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold);
            transition: height 0.3s ease;
        }

        .feature-card:nth-child(2)::before {
            background: var(--purple);
        }

        .feature-card:nth-child(3)::before {
            background: var(--green);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(247, 147, 26, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .feature-card:hover::before {
            height: 4px;
        }

        .feature-hex-icon {
            width: 64px;
            height: 64px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            background: rgba(247, 147, 26, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:nth-child(2) .feature-hex-icon {
            background: rgba(98, 126, 234, 0.15);
        }

        .feature-card:nth-child(3) .feature-hex-icon {
            background: rgba(0, 211, 149, 0.15);
        }

        .feature-hex-icon i {
            font-size: 1.5rem;
            color: var(--gold);
        }

        .feature-card:nth-child(2) .feature-hex-icon i {
            color: var(--purple);
        }

        .feature-card:nth-child(3) .feature-hex-icon i {
            color: var(--green);
        }

        .feature-card:hover .feature-hex-icon {
            transform: scale(1.1);
        }

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

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

        .feature-chain-link {
            position: absolute;
            top: 50%;
            right: -1.5rem;
            transform: translateY(-50%);
            width: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }

        .feature-chain-link::before {
            content: '';
            width: 20px;
            height: 20px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            animation: nodeGlow 3s ease-in-out infinite;
        }

        /* Board Section */
        .board-section {
            padding: 6rem 0;
            background: var(--bg-tertiary);
            position: relative;
        }

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

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

        .board-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .board-card:hover {
            border-color: rgba(247, 147, 26, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

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

        .board-header-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .board-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gold);
        }

        .block-badge {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            padding: 0.2rem 0.6rem;
            background: rgba(247, 147, 26, 0.15);
            border: 1px solid rgba(247, 147, 26, 0.3);
            border-radius: 4px;
            color: var(--gold);
        }

        .verified-badge {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--green);
        }

        .verified-badge i {
            font-size: 0.65rem;
        }

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

        .board-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 1.5rem;
            border-bottom: 1px solid rgba(42, 42, 78, 0.5);
            transition: background 0.2s ease;
            cursor: pointer;
        }

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

        .board-item:hover {
            background: rgba(98, 126, 234, 0.05);
        }

        .board-item-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex: 1;
            min-width: 0;
        }

        .board-item-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--purple);
            flex-shrink: 0;
        }

        .board-item-title {
            font-size: 0.9rem;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .board-item-date {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-muted);
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .board-chain-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem;
            border-top: 1px solid var(--card-border);
        }

        .chain-dots {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .chain-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--card-border);
            transition: all 0.3s ease;
        }

        .chain-dot.active {
            background: var(--gold);
            box-shadow: 0 0 8px rgba(247, 147, 26, 0.5);
        }

        .chain-dot-line {
            width: 20px;
            height: 2px;
            background: var(--card-border);
        }

        /* Stats Section */
        .stats-section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .stats-hex-bg {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='70' viewBox='0 0 60 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 17.5v35L30 70 0 52.5v-35z' fill='none' stroke='%23F7931A' stroke-width='1'/%3E%3C/svg%3E");
            background-size: 60px 70px;
        }

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

        .stat-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: var(--purple);
            border-radius: 0 0 3px 3px;
        }

        .stat-number {
            font-family: var(--font-mono);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
        }

        .stat-percent {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--green);
            padding: 0.2rem 0.6rem;
            background: rgba(0, 211, 149, 0.1);
            border-radius: 4px;
        }

        .stat-percent i {
            font-size: 0.65rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-inner {
            background: linear-gradient(135deg, var(--gold), var(--purple));
            border-radius: 24px;
            padding: 4rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
        }

        .cta-hex-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background-image: url("data:image/svg+xml,%3Csvg width='40' height='46' viewBox='0 0 40 46' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0l20 11.5v23L20 46 0 34.5v-23z' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
            background-size: 40px 46px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 1rem;
        }

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

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1rem 2.5rem;
            background: var(--green);
            color: var(--bg-primary);
            border: none;
            border-radius: 12px;
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            background: var(--green-light);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 211, 149, 0.3);
        }

        /* Footer */
        .footer {
            padding: 4rem 0 2rem;
            background: var(--bg-darkest);
            border-top: 1px solid var(--card-border);
            position: relative;
        }

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

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-brand-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--bg-primary);
        }

        .footer-brand-name {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
        }

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

        .footer-version {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-muted);
            padding: 0.3rem 0.8rem;
            background: rgba(26, 26, 62, 0.5);
            border: 1px solid var(--card-border);
            border-radius: 4px;
            display: inline-block;
        }

        .footer-col-title {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

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

        .footer-links a:hover {
            color: var(--purple-light);
        }

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

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

        .footer-hex-decoration {
            display: flex;
            gap: 0.5rem;
        }

        .footer-hex {
            width: 24px;
            height: 24px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            background: rgba(98, 126, 234, 0.2);
            transition: all 0.3s ease;
        }

        .footer-hex:hover {
            background: var(--purple);
        }

        .footer-hex:nth-child(2) {
            background: rgba(247, 147, 26, 0.2);
        }

        .footer-hex:nth-child(2):hover {
            background: var(--gold);
        }

        .footer-hex:nth-child(3) {
            background: rgba(0, 211, 149, 0.2);
        }

        .footer-hex:nth-child(3):hover {
            background: var(--green);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 10, 26, 0.98);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            text-decoration: none;
            color: var(--text-primary);
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--gold);
        }

        /* Ticker */
        .ticker-bar {
            background: var(--bg-tertiary);
            border-top: 1px solid var(--card-border);
            border-bottom: 1px solid var(--card-border);
            padding: 0.6rem 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-track {
            display: inline-flex;
            animation: tickerScroll 30s linear infinite;
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0 2rem;
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .ticker-item .symbol {
            color: var(--gold);
            font-weight: 600;
        }

        .ticker-item .positive {
            color: var(--green);
        }

        .ticker-item .negative {
            color: #FF4D4D;
        }

        /* Data Flow Line */
        .data-flow-container {
            position: relative;
            height: 2px;
            background: var(--card-border);
            margin: 2rem 0;
            overflow: hidden;
        }

        .data-flow-particle {
            position: absolute;
            top: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            animation: dataFlow 3s linear infinite;
        }

        .data-flow-particle:nth-child(2) {
            animation-delay: 1s;
            background: linear-gradient(90deg, transparent, var(--purple), transparent);
        }

        .data-flow-particle:nth-child(3) {
            animation-delay: 2s;
            background: linear-gradient(90deg, transparent, var(--green), transparent);
        }

        /* Responsive */
        @media (max-width: 359px) {
            html { font-size: 13px; }
            .hero-title { font-size: 2rem; }
            .hero-buttons { flex-direction: column; }
            .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
            .features-grid { grid-template-columns: 1fr; }
            .board-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
        }

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

            .nav-links { display: none; }
            .btn-connect { display: none; }
            .mobile-toggle { display: flex; }

            .hero { padding: 8rem 0 4rem; min-height: auto; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .hero-hash { font-size: 0.7rem; word-break: break-all; white-space: normal; }

            .features-grid { grid-template-columns: 1fr; }
            .feature-chain-link { display: none; }

            .board-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

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

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

            .nav-links { display: none; }
            .mobile-toggle { display: flex; }

            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .feature-chain-link { display: none; }
            .board-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

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

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

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

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

        /* Animate on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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

/* Repaired Gnuboard Vue theme: vue-045 */
:root {
  --hm-bg: #f7f8fb;
  --hm-panel: #ffffff;
  --hm-text: #14213d;
  --hm-muted: #64748b;
  --hm-line: #e2e8f0;
  --hm-accent: #2563eb;
  --hm-accent-2: #10b981;
}
* { box-sizing: border-box; }
body.vue-theme {
  margin: 0;
  background: var(--hm-bg);
  color: var(--hm-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--hm-line);
  backdrop-filter: blur(12px);
}
.site-brand { font-size: 20px; font-weight: 800; color: var(--hm-text); }
.site-menu { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.site-menu a { color: var(--hm-muted); font-size: 14px; font-weight: 700; }
.site-menu a:hover { color: var(--hm-accent); }
.site-main { max-width: 1180px; margin: 0 auto; padding: clamp(28px, 5vw, 72px) 20px; }
.hero-section {
  min-height: 360px;
  display: grid;
  align-items: center;
  gap: 24px;
  padding: clamp(36px, 6vw, 88px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20,33,61,.94), rgba(37,99,235,.86)),
    radial-gradient(circle at 78% 20%, rgba(16,185,129,.58), transparent 36%);
}
.hero-eyebrow { margin: 0 0 10px; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.hero-title { margin: 0; max-width: 760px; font-size: clamp(34px, 6vw, 72px); line-height: 1.04; letter-spacing: 0; }
.hero-copy { max-width: 660px; margin: 18px 0 0; color: rgba(255,255,255,.82); font-size: 18px; }
.quick-links, .board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.quick-link, .board-card {
  min-height: 132px;
  padding: 22px;
  background: var(--hm-panel);
  border: 1px solid var(--hm-line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}
.quick-link strong, .board-card strong { display: block; margin-bottom: 8px; font-size: 18px; }
.quick-link span, .board-card span { color: var(--hm-muted); font-size: 14px; }
.section-title { margin: 54px 0 16px; font-size: 28px; line-height: 1.25; }
.post-mini-list { display: grid; gap: 10px; margin-top: 14px; }
.post-mini-list a { color: var(--hm-text); font-size: 14px; font-weight: 700; }
.site-footer {
  margin-top: 60px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: #e5e7eb;
  background: #111827;
}
.site-footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: #cbd5e1; margin-right: 14px; font-size: 14px; }
@media (max-width: 720px) {
  .site-nav { align-items: flex-start; flex-direction: column; }
  .site-menu { gap: 12px; }
  .hero-section { padding: 34px 22px; }
}
/* 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: 'Noto Sans KR', Arial, sans-serif;
    --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-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-font: 'IBM Plex Sans KR', 'Noto Sans KR', Arial, sans-serif;
    --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-font: 'Gowun Dodum', 'Noto Sans KR', Arial, sans-serif;
    --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;
}
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;
}
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-05 .hm-preview-head h2,
body.hm-style-08 .hm-preview-head h2 {
    font-family: 'Gowun Batang', 'Noto Sans KR', serif !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;
    }
}
/* END_HM_SITE_DESIGN_VARIANTS_V1 */
