        :root {
            --bg: #141414;
            --bg-card: #1a1a1a;
            --red: #e50914;
            --red-dark: #b20710;
            --red-glow: rgba(229, 9, 20, 0.3);
            --green: #46d369;
            --gold: #f5c518;
            --text: #ffffff;
            --text-muted: #b3b3b3;
            --text-dim: #999;
            --border: #333;
            --neon-green: #00ff41;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-snap-type: y mandatory; scroll-behavior: smooth; }
        body { font-family: 'Noto Sans KR', 'Helvetica Neue', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

        /* ===== SCROLL PROGRESS ===== */
        .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--red); z-index: 200; transition: width 0.1s linear; }

        /* ===== NAV ===== */
        nav { position: fixed; top: 0; width: 100%; padding: 1rem 4%; background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%); z-index: 100; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
        nav.scrolled { background: rgba(20,20,20,0.98); }
        .logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--red); letter-spacing: 3px; cursor: pointer; text-shadow: 0 0 15px rgba(229,9,20,0.5); animation: logoFlicker 4s ease-in-out infinite; }
        @keyframes logoFlicker { 0%,100%{opacity:1}92%{opacity:1}93%{opacity:0.7}94%{opacity:1}96%{opacity:0.8}97%{opacity:1} }
        .nav-center { display: flex; gap: 2rem; list-style: none; }
        .nav-center a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; position: relative; }
        .nav-center a:hover, .nav-center a.active { color: var(--text); }
        .nav-center a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: var(--red); }
        .nav-cta { background: var(--red); color: white; padding: 0.5rem 1.2rem; border-radius: 4px; text-decoration: none; font-size: 0.9rem; font-weight: 700; transition: background 0.3s; }
        .nav-cta:hover { background: var(--red-dark); }
        .nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

        /* ===== SCREEN ===== */
        .screen { min-height: 100vh; scroll-snap-align: start; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }

        /* ===== SECTION INDICATOR ===== */
        .section-indicator { position: fixed; right: 1.5rem; top: 50%; transform: translateY(-50%); z-index: 90; display: flex; flex-direction: column; gap: 0.8rem; }
        .section-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
        .section-dot.active { background: var(--red); border-color: var(--red); transform: scale(1.3); box-shadow: 0 0 10px var(--red-glow); }

        /* ===== HERO ===== */
        .hero {
            background:
                linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.5) 100%),
                linear-gradient(to top, var(--bg) 0%, transparent 30%),
                url('../img/hero-bg.jpg') center/cover no-repeat;
        }
        .hero::before { content:''; position:absolute; top:0; right:0; width:60%; height:100%; background: radial-gradient(ellipse at 70% 50%, rgba(229,9,20,0.08) 0%, transparent 60%), radial-gradient(ellipse at 50% 30%, rgba(70,211,105,0.05) 0%, transparent 50%); pointer-events:none; }
        .hero-content { padding: 0 4%; max-width: 850px; z-index: 10; }

        .series-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(229,9,20,0.15); border: 1px solid rgba(229,9,20,0.4); padding: 0.4rem 1rem; border-radius: 4px; font-size: 0.8rem; color: var(--red); font-weight: 700; letter-spacing: 2px; margin-bottom: 1.5rem; text-transform: uppercase; }
        .series-logo { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 9vw, 7rem); line-height: 0.95; margin-bottom: 1.5rem; letter-spacing: 4px; text-shadow: 0 2px 20px rgba(0,0,0,0.8); position: relative; }
        .glitch-text { position: relative; display: block; }
        .glitch-text::before, .glitch-text::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
        .glitch-text::before { color: #ff0040; z-index: -1; animation: glitchTop 3s infinite linear alternate-reverse; }
        .glitch-text::after { color: #00ffea; z-index: -1; animation: glitchBottom 2.5s infinite linear alternate-reverse; }
        @keyframes glitchTop { 0%{clip-path:inset(0 0 85% 0);transform:translate(0)}10%{clip-path:inset(15% 0 60% 0);transform:translate(-3px,2px)}20%{clip-path:inset(50% 0 20% 0);transform:translate(3px,-1px)}30%{clip-path:inset(10% 0 70% 0);transform:translate(-2px,1px)}40%{clip-path:inset(60% 0 5% 0);transform:translate(2px,0)}50%{clip-path:inset(0 0 90% 0);transform:translate(0)}60%{clip-path:inset(30% 0 40% 0);transform:translate(-1px,2px)}70%{clip-path:inset(70% 0 10% 0);transform:translate(3px,-2px)}80%{clip-path:inset(5% 0 80% 0);transform:translate(-2px,0)}90%{clip-path:inset(40% 0 30% 0);transform:translate(1px,1px)}100%{clip-path:inset(0 0 85% 0);transform:translate(0)} }
        @keyframes glitchBottom { 0%{clip-path:inset(80% 0 0 0);transform:translate(0)}10%{clip-path:inset(60% 0 15% 0);transform:translate(2px,-1px)}20%{clip-path:inset(20% 0 50% 0);transform:translate(-3px,2px)}30%{clip-path:inset(70% 0 5% 0);transform:translate(1px,0)}40%{clip-path:inset(5% 0 60% 0);transform:translate(-1px,-2px)}50%{clip-path:inset(85% 0 0 0);transform:translate(0)}60%{clip-path:inset(40% 0 30% 0);transform:translate(2px,1px)}70%{clip-path:inset(10% 0 70% 0);transform:translate(-2px,-1px)}80%{clip-path:inset(75% 0 5% 0);transform:translate(3px,2px)}90%{clip-path:inset(30% 0 40% 0);transform:translate(-1px,0)}100%{clip-path:inset(80% 0 0 0);transform:translate(0)} }

        .meta-info { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; flex-wrap: wrap; font-size: 0.9rem; }
        .match-score { color: var(--green); font-weight: 700; }
        .badge { border: 1px solid rgba(255,255,255,0.4); padding: 0.2rem 0.6rem; font-size: 0.75rem; border-radius: 3px; }
        .badge.red { background: var(--red); border: none; }
        .badge.gold { background: var(--gold); color: #000; border: none; font-weight: 700; }

        .rating-strip { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding: 0.8rem 1.2rem; background: linear-gradient(90deg, rgba(245,197,24,0.15), rgba(229,9,20,0.1)); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; }
        .rating-stars { font-size: 1.2rem; letter-spacing: 2px; }
        .rating-text { font-weight: 700; font-size: 0.95rem; }
        .rating-text strong { color: var(--gold); }
        .synopsis { font-size: 1.15rem; line-height: 1.8; margin-bottom: 2rem; color: rgba(255,255,255,0.9); font-weight: 300; }
        .synopsis strong { color: var(--green); font-weight: 700; }
        .typing-cursor { display: inline-block; width: 3px; height: 1.1em; background: var(--neon-green); vertical-align: text-bottom; margin-left: 3px; animation: cursorBlink 1s step-end infinite; box-shadow: 0 0 6px rgba(0,255,65,0.5); }
        @keyframes cursorBlink { 0%,100%{opacity:1}50%{opacity:0} }

        .hero .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
        .btn { padding: 0.9rem 2rem; font-size: 1.05rem; font-weight: 700; border-radius: 5px; cursor: pointer; border: none; display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; transition: all 0.3s; font-family: 'Noto Sans KR', sans-serif; }
        .btn-play { background: var(--text); color: var(--bg); animation: neonPulseWhite 2.5s ease-in-out 1s infinite; }
        .btn-play:hover { background: rgba(255,255,255,0.8); transform: scale(1.02); }
        @keyframes neonPulseWhite { 0%,100%{box-shadow:0 0 10px rgba(255,255,255,0.2)}50%{box-shadow:0 0 20px rgba(255,255,255,0.4),0 0 40px rgba(255,255,255,0.15)} }
        .btn-info { border: 1px solid var(--neon-green); color: var(--neon-green); background: rgba(0,255,65,0.05); animation: neonPulseGreen 2s ease-in-out 1.5s infinite; }
        .btn-info:hover { background: rgba(0,255,65,0.1); transform: scale(1.02); }
        @keyframes neonPulseGreen { 0%,100%{box-shadow:0 0 10px rgba(0,255,65,0.15),0 0 20px rgba(0,255,65,0.08)}50%{box-shadow:0 0 20px rgba(0,255,65,0.35),0 0 40px rgba(0,255,65,0.18),0 0 60px rgba(0,255,65,0.08)} }

        .hero-book { position: absolute; right: 12%; top: 50%; transform: translateY(-50%); z-index: 10; text-decoration: none; transition: transform 0.3s; }
        .hero-book:hover { transform: translateY(-50%) scale(1.03); }
        .hero-book-img { width: 220px; height: auto; border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 20px rgba(229,9,20,0.15); }
        .hero-book-badge { display: block; text-align: center; margin-top: 0.8rem; color: var(--neon-green); font-size: 0.85rem; font-weight: 700; animation: neonPulseGreen 2s ease-in-out 1.5s infinite; padding: 0.4rem 0; border-radius: 4px; }

        .hero-scroll-hint { position: absolute; bottom: 5.5rem; left: 50%; transform: translateX(-50%); text-align: center; color: var(--text-muted); font-size: 0.8rem; animation: bounceDown 2s ease infinite; z-index: 10; }
        .hero-scroll-hint .arrow { display: block; font-size: 1.5rem; margin-top: 0.3rem; }
        @keyframes bounceDown { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)} }

        /* ===== TRUST BAR ===== */
        .trust-bar { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 4%; display: flex; justify-content: center; gap: 36px; align-items: center; flex-wrap: wrap; z-index: 20; }
        .trust-item { display: flex; align-items: center; gap: 10px; }
        .trust-img { height: 40px; width: auto; object-fit: contain; }
        .trust-img.badge-img { background: #000; padding: 2px; border-radius: 6px; }
        .trust-text { font-size: 0.75rem; color: var(--text-muted); line-height: 1.3; }
        .trust-text strong { color: #fff; display: block; font-size: 0.85rem; }
        .trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }

        /* ===== STATS: GALLERY GRID ===== */
        .screen-stats { padding: 100px 4% 120px; align-items: stretch; justify-content: center; }
        .screen-stats .s-header { max-width: none; width: 100%; text-align: left; margin-bottom: 16px; display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
        .s-header { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
        .s-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 2px; }
        .screen-stats .s-title { font-family: 'Noto Sans KR', sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: -0.3px; }
        .s-sub { color: var(--text-muted); margin-top: 8px; font-size: 0.9rem; }
        .screen-stats .s-sub { margin-top: 0; color: var(--text-dim); font-size: 0.85rem; }

        .gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; width: 100%; padding: 20px 0 40px; }
        .gallery-item { position: relative; cursor: pointer; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 4px; opacity: 0; transform: translateY(20px); }
        .gallery-item.visible { opacity: 1; transform: translateY(0); }
        .gallery-item.visible:hover { transform: scale(1.05); z-index: 10; }
        .rank-badge { position: absolute; top: -12px; left: -6px; font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.35); letter-spacing: -1px; z-index: 3; pointer-events: none; user-select: none; }
        .gallery-thumb-wrapper { position: relative; width: 100%; aspect-ratio: 3 / 4; border-radius: 4px; overflow: hidden; background: #0a0a0a; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        .gallery-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
        .gallery-thumb.contain { object-fit: contain; padding: 20px; background: #000; }
        .gallery-item:hover .gallery-thumb { transform: scale(1.05); }
        .gallery-new-badge { position: absolute; top: 8px; left: 8px; background: var(--red); color: #fff; font-size: 0.65rem; font-weight: 900; padding: 2px 6px; letter-spacing: 1px; text-transform: uppercase; z-index: 3; }
        .gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 50px 14px 14px; background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.3) 70%, transparent 100%); z-index: 2; }
        .gallery-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; text-shadow: 0 1px 4px rgba(0,0,0,0.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
        .gallery-meta { font-size: 0.72rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
        .gallery-meta .dot { width: 3px; height: 3px; background: rgba(255,255,255,0.6); border-radius: 50%; flex-shrink: 0; }
        .gallery-detail { position: absolute; top: calc(100% + 2px); left: 0; right: 0; background: var(--bg-card); padding: 14px 14px 16px; opacity: 0; transform: translateY(-10px); transition: all 0.3s; pointer-events: none; border-radius: 0 0 4px 4px; border-top: 2px solid var(--red); box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
        .gallery-item:hover .gallery-detail { opacity: 1; transform: translateY(0); pointer-events: auto; }
        .detail-tags { display: flex; gap: 6px; align-items: center; font-size: 0.7rem; margin-bottom: 8px; flex-wrap: wrap; }
        .detail-tags .tag { padding: 2px 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 3px; color: var(--text-dim); font-weight: 700; }
        .detail-tags .tag-highlight { color: #00ff88; border-color: rgba(0,255,136,0.3); }
        .detail-text { font-size: 0.78rem; color: var(--text-dim); line-height: 1.5; }

        /* ===== SERVICES: PLAN CARDS ===== */
        /* ===== SERVICES: Netflix Flex Cards ===== */
        .screen-services { padding: 100px 4% 120px; align-items: stretch; justify-content: center; }
        .screen-services .s-header { width: 100%; max-width: none; text-align: left; margin-bottom: 24px; display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
        .screen-services .s-title { font-family: 'Noto Sans KR', sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: -0.3px; }
        .screen-services .s-sub { color: var(--text-dim); margin-top: 0; font-size: 0.85rem; }
        .plans-grid { display: flex; gap: 12px; width: 100%; min-height: 500px; position: relative; z-index: 1; }
        .plan-card { position: relative; flex: 1; border-radius: 8px; overflow: hidden; cursor: pointer; transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s; display: flex; flex-direction: column; justify-content: flex-end; padding: 50px 40px 40px; min-width: 0; opacity: 0; transform: translateY(40px); }
        .plan-card.visible { opacity: 1; transform: translateY(0); }
        .plan-card.visible:hover { flex: 2.5; box-shadow: 0 20px 60px rgba(229,9,20,0.25); z-index: 2; transform: translateY(0); }
        .plan-card.c-outsourcing { background: radial-gradient(ellipse at 30% 50%, rgba(229,9,20,0.3) 0%, transparent 60%), linear-gradient(135deg, #2d0a0f 0%, #141414 100%); }
        .plan-card.c-lecture { background: radial-gradient(ellipse at 30% 50%, rgba(245,158,11,0.25) 0%, transparent 60%), linear-gradient(135deg, #2a1a08 0%, #141414 100%); }
        .plan-card.c-biz { background: radial-gradient(ellipse at 30% 50%, rgba(59,25,152,0.3) 0%, transparent 60%), linear-gradient(135deg, #0d0a24 0%, #141414 100%); }
        .plan-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%); pointer-events: none; }
        .plan-content { position: relative; z-index: 1; width: 100%; }
        .plan-tag-row { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
        .plan-rank-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff; font-size: 0.72rem; font-weight: 900; padding: 4px 10px; border-radius: 3px; letter-spacing: 0.5px; white-space: nowrap; }
        .plan-meta-tag { background: rgba(255,255,255,0.1); color: var(--text-dim); font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 3px; white-space: nowrap; }
        .plan-name { font-family: 'Noto Sans KR', sans-serif; font-size: clamp(1.8rem, 2.8vw, 3.2rem); font-weight: 900; line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-top: 4px; }
        .plan-name .accent { display: block; }
        .c-outsourcing .plan-name .accent { color: var(--red); }
        .c-lecture .plan-name .accent { color: #f59e0b; }
        .c-biz .plan-name .accent { color: #8a70e8; }
        .plan-expanded { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s 0.2s; }
        .plan-card.visible:hover .plan-expanded { max-height: 420px; opacity: 1; }
        .plan-desc { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 20px; max-width: 480px; }
        .plan-features { display: flex; gap: 16px; margin-bottom: 28px; color: var(--text-dim); font-size: 0.85rem; flex-wrap: wrap; }
        .plan-features .item::before { content: '✓ '; color: var(--neon-green); font-weight: 900; }
        .plan-actions { display: flex; gap: 12px; }
        .btn-service-play, .btn-service-info { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 4px; font-size: 0.95rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
        .btn-service-play { background: #fff; color: #000; }
        .btn-service-play:hover { background: rgba(255,255,255,0.85); }
        .btn-service-info { background: rgba(109,109,110,0.7); color: #fff; }
        .btn-service-info:hover { background: rgba(109,109,110,0.5); }

        /* ===== MEDIA: Watch Also On Platform Banners ===== */
        .screen-media { padding: 100px 4% 120px; align-items: stretch; justify-content: center; }
        .screen-media .s-header { width: 100%; max-width: none; text-align: left; margin-bottom: 24px; display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; position: relative; }
        .screen-media .s-title { font-family: 'Noto Sans KR', sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: -0.3px; }
        .screen-media .s-sub { color: var(--text-dim); margin-top: 0; font-size: 0.85rem; }
        .channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 100%; z-index: 1; }
        .channel-tile { position: relative; height: 280px; border-radius: 8px; overflow: hidden; cursor: pointer; transition: transform 0.4s; text-decoration: none; color: inherit; display: block; opacity: 0; transform: translateY(20px); }
        .channel-tile.visible { opacity: 1; transform: translateY(0); }
        .channel-tile.visible:hover { transform: scale(1.03); }
        .tile-bg { position: absolute; inset: 0; transition: transform 0.6s; }
        .channel-tile:hover .tile-bg { transform: scale(1.08); }
        .tile-overlay { position: absolute; inset: 0; }
        .tile-yt .tile-bg { background: linear-gradient(135deg, #7a1a1a 0%, #2a0808 50%, #1a0505 100%); }
        .tile-yt .tile-overlay { background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%); }
        .tile-yozm .tile-bg { background: linear-gradient(135deg, #1a5a3a 0%, #0f3a24 50%, #071a10 100%); }
        .tile-yozm .tile-overlay { background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%); }
        .tile-book .tile-bg { background: linear-gradient(135deg, #8a5a10 0%, #3a2808 50%, #1a1005 100%); }
        .tile-book .tile-overlay { background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%); }
        .tile-content { position: relative; z-index: 1; padding: 30px 28px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
        .tile-top { display: flex; justify-content: space-between; align-items: flex-start; }
        .tile-platform-logo { font-size: 2rem; display: flex; align-items: center; gap: 10px; }
        .tile-platform-logo .platform-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px; opacity: 0.7; }
        .tile-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 900; padding: 4px 10px; border-radius: 20px; border: 1px solid; }
        .badge-live { background: rgba(255,0,0,0.2); color: #ff6b6b; border-color: rgba(255,0,0,0.4); }
        .badge-active { background: rgba(34,197,94,0.2); color: #6bff8e; border-color: rgba(34,197,94,0.4); }
        .badge-upcoming { background: rgba(245,158,11,0.2); color: #ffc966; border-color: rgba(245,158,11,0.4); }
        .tile-badge::before { content: ''; width: 6px; height: 6px; background: currentColor; border-radius: 50%; animation: livePulse 1.5s infinite; }
        @keyframes livePulse { 0%,100%{opacity:1}50%{opacity:0.3} }
        .tile-bottom { display: flex; flex-direction: column; gap: 10px; }
        .tile-name { font-family: 'Noto Sans KR', sans-serif; font-size: 1.6rem; font-weight: 900; line-height: 1.2; letter-spacing: -0.3px; color: #fff; margin: 0; }
        .tile-desc { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.5; margin: 0; }
        .tile-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: #fff; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 14px; margin-top: 6px; text-decoration: none; }
        .tile-cta .arrow { transition: transform 0.3s; }
        .channel-tile:hover .tile-cta .arrow { transform: translateX(4px); }

        /* ===== CONTACT: Netflix Membership Gateway ===== */
        .screen-contact { padding: 100px 4% 120px; align-items: center; text-align: center; justify-content: center; position: relative; }
        .screen-contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(229,9,20,0.1) 0%, transparent 70%), radial-gradient(circle at 20% 20%, rgba(229,9,20,0.08), transparent 40%), radial-gradient(circle at 80% 80%, rgba(229,9,20,0.08), transparent 40%); pointer-events: none; z-index: 0; }
        .content-wrapper { position: relative; z-index: 5; max-width: 960px; width: 100%; display: flex; flex-direction: column; align-items: center; }
        .coming-soon-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(229,9,20,0.15); border: 1px solid rgba(229,9,20,0.4); padding: 6px 16px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; color: var(--red); letter-spacing: 3px; margin-bottom: 24px; text-transform: uppercase; }
        .badge-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: badgePulse 1.5s ease-in-out infinite; }
        @keyframes badgePulse { 0%,100%{opacity:1}50%{opacity:0.3} }
        .contact-main-title { font-family: 'Noto Sans KR', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -1px; text-align: center; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
        .contact-main-title .highlight { color: var(--red); }
        .contact-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.75); text-align: center; margin-bottom: 50px; line-height: 1.6; max-width: 640px; }
        .contact-cta-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 960px; width: 100%; margin: 0 auto 40px; }
        .contact-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 24px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; text-decoration: none; color: inherit; transition: all 0.3s; cursor: pointer; text-align: left; font-family: 'Noto Sans KR', sans-serif; }
        .contact-cta:hover { background: rgba(229,9,20,0.08); border-color: rgba(229,9,20,0.4); transform: translateY(-4px); }
        .contact-cta-icon { font-size: 1.5rem; }
        .contact-cta-name { font-size: 1rem; font-weight: 900; color: #fff; }
        .contact-cta-desc { font-size: 0.78rem; color: var(--text-dim); line-height: 1.4; flex: 1; }
        .contact-cta-arrow { font-size: 0.8rem; color: var(--red); font-weight: 700; margin-top: 8px; }
        .contact-channels { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 0.8rem; color: var(--text-dim); }
        .channel-link { color: var(--text-dim); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
        .channel-link:hover { color: #fff; }

        /* ===== FOOTER ===== */
        footer { padding: 2rem 4%; text-align: center; font-size: 0.85rem; color: var(--text-dim); border-top: 1px solid var(--border); }
        footer a { color: var(--text-muted); text-decoration: none; }
        footer a:hover { color: var(--red); }

        /* ===== FLOATING CTA ===== */
        .floating-cta { position: fixed; bottom: 2rem; right: 2rem; z-index: 90; opacity: 0; transform: translateY(20px); transition: all 0.4s; pointer-events: none; }
        .floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
        .floating-btn { width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: white; border: none; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px var(--red-glow); transition: all 0.3s; text-decoration: none; }
        .floating-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(229,9,20,0.5); }
        .floating-tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.9); color: white; padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.8rem; white-space: nowrap; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
        .floating-cta:hover .floating-tooltip { opacity: 1; }

        /* ===== SCROLL REVEAL ANIMATIONS ===== */
        .s-header { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); will-change: transform, opacity; }
        .s-header.revealed { opacity: 1; transform: translateY(0); }
        .hero { will-change: background-position; }
        @media (prefers-reduced-motion: no-preference) {
          .screen-stats, .screen-services, .screen-media, .screen-contact { will-change: transform; }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .gallery-grid { grid-template-columns: repeat(3, 1fr); }
            .plans-grid { flex-direction: column; min-height: auto; }
            .plan-card { flex: none; min-height: 240px; padding: 32px 28px; }
            .plan-card.visible:hover { flex: none; }
            .plan-expanded { max-height: 420px; opacity: 1; }
            .plan-name { white-space: normal; }
            .channel-grid { grid-template-columns: 1fr; }
            .channel-tile { height: 220px; }
            .contact-cta-row { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-center { display: none; }
            .nav-center.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(20,20,20,0.98); padding: 1rem 4%; gap: 1rem; }
            .nav-toggle { display: block; }
            .section-indicator { display: none; }
            .screen { min-height: 100vh; min-height: 100dvh; padding-top: 5rem; padding-bottom: 4rem; scroll-snap-align: start; }
            html { scroll-snap-type: y proximity; }
            .hero { min-height: 100vh; padding-top: 0; }
            .hero-content { padding-top: 100px; }
            .hero-book { display: none; }
            .hero-scroll-hint { display: none; }
            .series-logo { font-size: 3rem; }
            .trust-bar { gap: 16px; padding: 12px 3%; }
            .trust-img { height: 28px; }
            .trust-text { font-size: 0.65rem; }
            .trust-text strong { font-size: 0.75rem; }
            .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
            .screen-stats { padding: 80px 4% 60px; }
            .screen-stats .s-title, .screen-services .s-title, .screen-media .s-title { font-size: 1.2rem; }
            .gallery-item.visible:hover { transform: scale(1); }
            .gallery-detail { display: none; }
            .rank-badge { font-size: 1.8rem; top: -8px; left: -4px; }
            .screen-services, .screen-media { padding: 80px 4% 60px; }
            .plan-name { font-size: 2rem; }
            .screen-contact { padding: 80px 4% 60px; }
            .contact-main-title { font-size: 2.5rem; }
            .contact-cta-row { grid-template-columns: 1fr; }
            .contact-channels { flex-direction: column; align-items: center; gap: 12px; }
            .floating-tooltip { display: none; }
        }
        @media (max-width: 480px) {
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .btn-group { flex-direction: column; }
            .btn { width: 100%; justify-content: center; }
        }
        @media (prefers-reduced-motion: reduce) {
            html { scroll-snap-type: none; scroll-behavior: auto; }
            *, *::before, *::after { animation: none !important; transition: none !important; }
        }
