   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Noto Sans KR', sans-serif;
            background: #f5f7fc;
            color: #1e2a3e;
            line-height: 1.5;
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
        }

        .hero-kr {
            position: relative;
            background: linear-gradient(125deg, #0c1a2b 0%, #1f3a4b 100%);
            padding: 100px 0 90px;
            color: white;
            overflow: hidden;
        }

        .hero-kr::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            pointer-events: none;
        }

        .kr-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,215,0,0.08) 2%, transparent 2.5%);
            background-size: 40px 40px;
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 960px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,245,0.1);
            backdrop-filter: blur(8px);
            padding: 8px 24px;
            border-radius: 60px;
            font-weight: 500;
            margin-bottom: 28px;
            font-size: 0.9rem;
            border: 1px solid rgba(255,215,0,0.4);
            letter-spacing: -0.3px;
        }

        .hero-badge i {
            color: #ffcd4a;
        }

        .hero-title {
            font-size: 3.4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-title span {
            background: linear-gradient(135deg, #ffcd4a, #f79d1c);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero-sub {
            font-size: 1.2rem;
            color: #ccddee;
            margin-bottom: 36px;
            font-weight: 400;
        }

        .card-glass {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(14px);
            border-radius: 56px;
            padding: 32px 28px;
            margin-top: 48px;
            border: 1px solid rgba(255,215,0,0.2);
            transition: all 0.2s;
        }

        .channel-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 22px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .avatar-kr {
            width: 76px;
            height: 76px;
            border-radius: 50%;
            background: #facc15;
            padding: 3px;
            box-shadow: 0 0 0 2px rgba(255,215,0,0.5);
        }

        .avatar-kr img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .stats-kr {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 28px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.9rem;
            font-weight: 800;
            color: #ffcd4a;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(105deg, #f59e0b, #ea580c);
            padding: 16px 40px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.05rem;
            color: white;
            text-decoration: none;
            transition: all 0.25s;
            box-shadow: 0 10px 24px rgba(234,88,12,0.35);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 32px rgba(234,88,12,0.45);
        }

        .stock-ticker-kr {
            background: #0f212f;
            color: #f0f3f8;
            padding: 14px 0;
            overflow: hidden;
            white-space: nowrap;
            border-bottom: 1px solid #2c4b5e;
            border-top: 1px solid #2c4b5e;
            font-weight: 500;
        }

        .ticker-track {
            display: inline-block;
            animation: tickerScroll 38s linear infinite;
        }

        .ticker-track span {
            display: inline-block;
            margin-right: 42px;
            letter-spacing: -0.2px;
        }

        .ticker-track i {
            margin-right: 6px;
            color: #ffcd4a;
        }

        @keyframes tickerScroll {
            0% { transform: translateX(0);}
            100% { transform: translateX(-50%);}
        }

        .section-kr {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 56px;
        }

        .section-title h2 {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            display: block;
            width: 70px;
            height: 3px;
            background: #f59e0b;
            margin: 12px auto 0;
            border-radius: 4px;
        }

        .feature-grid {
            display: flex;
            align-items: center;
            gap: 52px;
            margin-bottom: 80px;
            flex-wrap: wrap;
        }

        .feature-img {
            flex: 1;
            min-width: 260px;
        }

        .feature-img img {
            width: 100%;
            border-radius: 40px;
            box-shadow: 0 25px 35px -12px rgba(0,0,0,0.12);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .feature-text {
            flex: 1;
        }

        .feature-list {
            list-style: none;
            margin-top: 20px;
        }

        .feature-list li {
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }

        .feature-list i {
            color: #f59e0b;
            font-size: 1.2rem;
            width: 24px;
        }

        .community-premium {
            background: linear-gradient(125deg, #11212e, #1b3b4b);
            color: white;
            border-radius: 64px;
            margin: 40px 0;
            padding: 64px 40px;
            box-shadow: 0 20px 40px -12px rgba(0,0,0,0.25);
        }

        .community-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
            gap: 36px;
            margin-top: 52px;
        }

        .comm-card {
            text-align: center;
            background: rgba(255,255,245,0.05);
            padding: 32px 20px;
            border-radius: 40px;
            backdrop-filter: blur(4px);
            transition: transform 0.2s;
            border: 1px solid rgba(255,215,0,0.2);
        }

        .comm-card i {
            font-size: 2.5rem;
            color: #ffcd4a;
            margin-bottom: 18px;
        }

        .comm-card h4 {
            margin-bottom: 10px;
        }

        .footer-kr {
            background: #0e1a24;
            color: #a0bbd0;
            padding: 52px 0 36px;
            font-size: 0.85rem;
        }

        .footer-legal {
            border-top: 1px solid #2a4050;
            margin-top: 32px;
            padding-top: 28px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 16px;
        }

        .footer-links a {
            color: #ccdeee;
            text-decoration: none;
            margin-right: 28px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #f59e0b;
        }

        .privacy-banner {
            background: #eef2f9;
            color: #1e2a3e;
            padding: 14px 24px;
            border-radius: 40px;
            font-size: 0.8rem;
            margin-bottom: 24px;
            text-align: center;
            font-weight: 500;
        }

        .fixed-cta {
            position: fixed;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: auto;
        }

        .fixed-btn {
            background: linear-gradient(95deg, #f59e0b, #dc6b1f);
            padding: 14px 32px;
            border-radius: 80px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 22px rgba(0,0,0,0.3);
            text-decoration: none;
            color: white;
            font-size: 0.95rem;
            border: 1px solid rgba(255,220,100,0.5);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
            align-items: center;
            justify-content: center;
            z-index: 2000;
            backdrop-filter: blur(6px);
        }

        .modal-card {
            background: white;
            max-width: 480px;
            width: 90%;
            border-radius: 52px;
            padding: 36px 32px;
            text-align: center;
            position: relative;
            animation: modalPop 0.3s ease;
            color: #1e293b;
        }

        @keyframes modalPop {
            from { opacity: 0; transform: scale(0.96);}
            to { opacity: 1; transform: scale(1);}
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 28px;
            font-size: 32px;
            cursor: pointer;
            color: #94a3b8;
        }

        .contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: #1e2f3f;
            padding: 14px 28px;
            border-radius: 80px;
            color: white;
            text-decoration: none;
            margin: 16px 8px;
            transition: 0.2s;
        }

        .contact-badge i {
            font-size: 1.4rem;
        }

        .contact-badge:hover {
            background: #f97316;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 2rem; }
            .feature-grid { flex-direction: column; }
            .fixed-cta .fixed-btn { padding: 10px 18px; font-size: 0.8rem;}
            .section-title h2 { font-size: 1.8rem; }
        }