 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Noto Sans KR', 'Inter', sans-serif;
            background: #0a0e1a;
            color: #f0f4ff;
            line-height: 1.5;
            overflow-x: hidden;
        }

        .koreaHeritageBg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 10% 20%, rgba(0, 100, 150, 0.08) 0%, transparent 60%),
                              repeating-linear-gradient(45deg, rgba(255, 215, 0, 0.02) 0px, rgba(255, 215, 0, 0.02) 1px, transparent 1px, transparent 12px);
            pointer-events: none;
            z-index: 0;
        }

        .koreanWaveGlow {
            position: fixed;
            top: -15%;
            left: -15%;
            width: 85vw;
            height: 85vw;
            background: radial-gradient(circle, rgba(0, 160, 210, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
            filter: blur(85px);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        .koreanWaveGlowSecond {
            position: fixed;
            bottom: -10%;
            right: -25%;
            width: 90vw;
            height: 90vw;
            background: radial-gradient(circle, rgba(220, 80, 40, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
            filter: blur(100px);
            z-index: 0;
            pointer-events: none;
        }

        .appMainWrap {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .heroKoreaSection {
            position: relative;
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            padding: 44px 0 60px;
            isolation: isolate;
            text-align: center;
        }

        .heroKoreaSection::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(125deg, rgba(10,14,26,0.92) 0%, rgba(16,22,42,0.96) 100%);
            z-index: -1;
        }

        .koreaBadge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 160, 210, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 200, 80, 0.5);
            border-radius: 100px;
            padding: 6px 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
        }

        .koreaBadge i {
            color: #ffcd4a;
        }

        .mainTitleKorea {
            font-size: 2.7rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(125deg, #FFFFFF 0%, #ffcd7e 70%, #60a5ff 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .mainTitleKorea span {
            display: block;
            font-size: 1.45rem;
            font-weight: 600;
            background: linear-gradient(135deg, #ffe6b3, #ffb347);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-top: 10px;
        }

        .heroDescKor {
            font-size: 0.95rem;
            color: #ccdeff;
            max-width: 500px;
            margin: 0 auto 28px;
            background: rgba(0, 0, 0, 0.35);
            padding: 14px 20px;
            border-radius: 36px;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 200, 100, 0.2);
        }

        .ctaMainKor {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(105deg, #e07c2c, #ffb347);
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            color: #0a0e1a;
            transition: transform 0.2s ease, box-shadow 0.2s;
            box-shadow: 0 10px 20px rgba(230, 120, 30, 0.4);
            margin-bottom: 34px;
            border: none;
            cursor: pointer;
        }

        .ctaMainKor:active {
            transform: scale(0.97);
        }

        .hanokCard {
            background: rgba(18, 25, 45, 0.75);
            backdrop-filter: blur(18px);
            border-radius: 48px;
            border: 1px solid rgba(255, 200, 100, 0.4);
            padding: 28px 20px;
            margin-top: 12px;
            text-align: center;
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.4);
        }

        .profileCircle {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .avatarGoldRing {
            width: 90px;
            height: 90px;
            background: linear-gradient(145deg, #ffcd4a, #e07c2c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3px;
        }

        .avatarGoldRing img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            background: #101826;
        }

        .expertName {
            font-size: 1.55rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #ffcd7e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .statsGridKor {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .statItemKor {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 28px;
            padding: 12px 8px;
            flex: 1;
            border: 1px solid rgba(255, 200, 80, 0.3);
        }

        .statNumber {
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(145deg, #fff3cf, #ffcd7e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .marketTickerKor {
            background: #050814;
            border-top: 1px solid #ffcd4a;
            border-bottom: 1px solid #ffcd4a;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .tickerMoving {
            display: inline-block;
            animation: marqueeKor 40s linear infinite;
            padding-left: 20px;
        }

        .tickerStockItem {
            display: inline-block;
            margin-right: 32px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        @keyframes marqueeKor {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .sectionPremium {
            padding: 56px 0;
        }

        .sectionHeadKor {
            text-align: center;
            margin-bottom: 40px;
        }

        .sectionHeadKor h2 {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(125deg, #ffffff, #ffcd7e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .featureCardModern {
            background: rgba(12, 18, 32, 0.75);
            backdrop-filter: blur(12px);
            border-radius: 40px;
            border: 1px solid rgba(255, 200, 100, 0.25);
            overflow: hidden;
            margin-bottom: 32px;
        }

        .featureImgArea {
            width: 100%;
            height: auto;
            display: block;
        }

        .featureImgArea img {
            width: 100%;
            height: auto;
            display: block;
        }

        .featureTxtArea {
            padding: 28px 22px;
        }

        .featureTxtArea h3 {
            font-size: 1.6rem;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .benefitList {
            list-style: none;
            margin-top: 20px;
        }

        .benefitList li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .communityHub {
            background: linear-gradient(135deg, rgba(0, 50, 80, 0.7), rgba(15, 20, 40, 0.95));
            border-radius: 50px;
            padding: 38px 24px;
            text-align: center;
            border: 1px solid rgba(255, 200, 100, 0.5);
        }

        .commFeaturesGrid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 36px 0 24px;
        }

        .commFeatureCard {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 32px;
            padding: 20px 12px;
            width: 160px;
            flex: 1 1 140px;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 180, 70, 0.3);
        }

        .floatingContactBtn {
            position: fixed;
            bottom: 20px;
            left: 16px;
            right: 16px;
            z-index: 100;
            text-align: center;
        }

        .floatingBtnStyle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(105deg, #e07c2c, #ffb347);
            border-radius: 60px;
            padding: 16px 12px;
            font-weight: 800;
            font-size: 0.9rem;
            text-decoration: none;
            color: #0a0e1a;
            box-shadow: 0 12px 28px rgba(220, 100, 20, 0.5);
            backdrop-filter: blur(8px);
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .liveSignal {
            position: fixed;
            bottom: 95px;
            left: 20px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(12px);
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.7rem;
            z-index: 99;
            border-left: 0px solid #ffcd4a;
        }

        .pulseLive {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #ffcd4a;
            border-radius: 50%;
            margin-right: 8px;
            animation: pulseAnimKor 1.2s infinite;
        }

        @keyframes pulseAnimKor {
            0% { opacity: 0.4; transform: scale(0.8);}
            100% { opacity: 1; transform: scale(1.2);}
        }

        .modalOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.88);
            backdrop-filter: blur(12px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: all 0.25s ease;
        }

        .modalInner {
            background: linear-gradient(145deg, #121c2c, #070c1a);
            max-width: 340px;
            width: 85%;
            border-radius: 52px;
            border: 1px solid #ffcd4a;
            padding: 32px 24px;
            text-align: center;
            box-shadow: 0 30px 45px rgba(0,0,0,0.6);
        }

        .modalInner i {
            font-size: 3rem;
            color: #ffcd4a;
            margin-bottom: 12px;
        }

        .modalInner h3 {
            font-size: 1.6rem;
            margin-bottom: 12px;
        }

        .modalBtnGroup {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .modalLinkPrimary {
            background: linear-gradient(105deg, #e07c2c, #ffb347);
            padding: 12px;
            border-radius: 60px;
            text-decoration: none;
            color: #0a0e1a;
            font-weight: 700;
        }

        .modalCloseBtn {
            background: rgba(255, 255, 255, 0.1);
            padding: 12px;
            border-radius: 60px;
            cursor: pointer;
            font-weight: 600;
        }

        footer {
            background: #03050c;
            padding: 44px 0 32px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 200, 100, 0.2);
        }

        .legalNotice {
            font-size: 0.7rem;
            color: #9babc9;
            border-left: 0px solid #ffcd4a;
            padding-left: 14px;
            margin: 20px 0;
        }

        .policyLinks {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin: 18px 0 12px;
            font-size: 0.7rem;
        }

        .policyLinks a {
            color: #ffcd7e;
            text-decoration: none;
        }

        @media (max-width: 480px) {
            .mainTitleKorea { font-size: 2rem; }
            .mainTitleKorea span { font-size: 1.2rem; }
            .featureTxtArea h3 { font-size: 1.35rem; }
        }