em, i, cite, address, dfn, var { font-style: normal; }
:root {
  --bg: #0e0f15; --bg-elevated: #15161e; --bg-card: #1a1b25;
  --bg-overlay: rgba(20, 21, 30, 0.85);
  --border: rgba(255, 255, 255, 0.08); --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5fa; --text-2: #a8a9bd; --text-3: #6a6b80; --text-cream: #fff5cc;
  --brand: #ff3a5c; --brand-deep: #c41f3d;
  --gold: #e6aa07; --gold-bright: #f5c843; --gold-deep: #8a6a14; --gold-glow: rgba(230, 170, 7, 0.32);
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1400px; --container-pad: clamp(20px, 4vw, 40px); --rail-gap: 12px;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Helvetica Neue", sans-serif;
  font-weight: 400; font-size: 15px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  padding-bottom: 88px;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--container-pad); padding-right: var(--container-pad); }

/* NAV + DRAWER — loaded from shared /css/nav.css */

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 9px 18px; border-radius: var(--r-md); font-size: 13px; font-weight: 500; transition: transform 0.15s var(--ease), background 0.2s var(--ease), opacity 0.2s; white-space: nowrap; }
.btn:active { transform: scale(0.97); }
.btn-light { background: #fff; color: #0e0f15; }
.btn-light:hover { opacity: 0.92; }
.btn-ghost { background: rgba(255,255,255,0.1); color: var(--text); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-outline:hover { background: rgba(255,255,255,0.04); }

/* HERO */
.hero { position: relative; padding: clamp(28px, 4vw, 56px) 0 0; background: linear-gradient(180deg, #16131c 0%, #11101a 60%, #0e0f15 100%); overflow: hidden; }
.hero-bg-stack { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg-layer { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms cubic-bezier(0.33, 1, 0.68, 1); }
.hero-bg-layer.is-active { opacity: 1; }
.hero::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 3px); pointer-events: none; mix-blend-mode: overlay; }
.hero-slides { position: relative; z-index: 2; min-height: 340px; }
.hero-slide { display: grid; grid-template-columns: minmax(220px, 280px) 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; padding: clamp(40px, 5vw, 72px) 0 28px; }
.hero-slide:not(:first-child) { position: absolute; inset: 0; }
.hero-slide { opacity: 0; visibility: hidden; transition: opacity 700ms cubic-bezier(0.33, 1, 0.68, 1), visibility 0s linear 700ms; }
.hero-slide.is-active { opacity: 1; visibility: visible; transition: opacity 700ms cubic-bezier(0.33, 1, 0.68, 1), visibility 0s linear 0s; }
.hero-slide.is-active .hero-poster, .hero-slide.is-active .hero-eyebrow, .hero-slide.is-active .hero-title, .hero-slide.is-active .hero-meta, .hero-slide.is-active .hero-credits, .hero-slide.is-active .hero-desc, .hero-slide.is-active .quality-row, .hero-slide.is-active .hero-cta-row { animation: heroSlideRise 800ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-slide.is-active .hero-poster { animation-delay: 0ms; }
.hero-slide.is-active .hero-eyebrow { animation-delay: 60ms; }
.hero-slide.is-active .hero-title { animation-delay: 120ms; }
.hero-slide.is-active .hero-meta { animation-delay: 200ms; }
.hero-slide.is-active .hero-credits { animation-delay: 230ms; }
.hero-slide.is-active .hero-desc { animation-delay: 260ms; }
.hero-slide.is-active .quality-row { animation-delay: 320ms; }
.hero-slide.is-active .hero-cta-row { animation-delay: 380ms; }
@keyframes heroSlideRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-poster { aspect-ratio: 9 / 16; border-radius: var(--r-lg); background: var(--poster-bg); position: relative; overflow: hidden; box-shadow: 0 20px 60px var(--poster-glow-1, rgba(230, 170, 7, 0.28)), 0 0 100px var(--poster-glow-2, rgba(230, 170, 7, 0.12)), inset 0 1px 0 rgba(255,255,255,0.15); cursor: pointer; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.hero-poster:hover { transform: translateY(-4px) scale(1.01); }
.hero-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 45%); }
.hero-poster .play-orb { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; border-radius: 50%; background: rgba(255, 255, 255, 0.96); display: grid; place-items: center; color: #2a1f05; font-size: 22px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35); transition: transform 0.3s var(--ease); }
.hero-poster:hover .play-orb { transform: translate(-50%, -50%) scale(1.08); }
.hero-poster .ep-badge { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,0.55); backdrop-filter: blur(8px); color: #fff; font-size: 10px; letter-spacing: 1px; padding: 5px 10px; border-radius: var(--r-sm); text-transform: uppercase; font-weight: 500; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-bright, var(--gold-bright)); font-weight: 500; margin-bottom: 20px; }
.hero-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent, var(--gold)); box-shadow: 0 0 12px var(--accent, var(--gold)); }
.hero-title { font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", sans-serif; font-weight: 300; font-size: clamp(40px, 6vw, 80px); line-height: 0.98; letter-spacing: -2.5px; margin: 0 0 14px; color: var(--text); }
.hero-title em { font-style: normal; font-weight: 500; color: var(--accent-bright, var(--gold-bright)) !important; }
.hero-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 14px; color: var(--text-2); font-size: 13px; margin-bottom: 18px; }
.hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }
.hero-meta .star { color: var(--gold); }
.hero-desc { max-width: 540px; color: var(--text-2); font-size: 15px; line-height: 1.65; margin: 0 0 20px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.hero-desc-more { display: none; }
.hero-thumb { display: none; }
.quality-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.quality-badge { font-size: 10px; letter-spacing: 0.6px; font-weight: 500; padding: 4px 9px; border-radius: var(--r-sm); background: rgba(255,255,255,0.06); border: 0.5px solid var(--border); color: var(--text); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-cta-row .btn { padding: 12px 22px; font-size: 14px; }
.hero-pagination { position: relative; z-index: 3; margin-top: clamp(18px, 2vw, 32px); padding: 0 0 clamp(18px, 2vw, 32px); display: flex; justify-content: center; }
.hero-pagination-list { display: flex; align-items: center; gap: 10px; padding: 0; }
.hero-dot { position: relative; width: 8px; height: 8px; padding: 0; background: rgba(255,255,255,0.28); border: 0; border-radius: 50%; cursor: pointer; overflow: hidden; transition: background 300ms var(--ease), transform 300ms var(--ease); }
.hero-dot > span:not(.hero-dot-fill) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.hero-dot:hover { background: rgba(255,255,255,0.55); }
.hero-dot.is-active { background: rgba(255,255,255,0.9); transform: scale(1.15); }
.hero-dot-fill { display: none; }

/* SECTION + RAIL */
section.block { padding: 44px 0; }
section.block.bleed { padding-left: var(--container-pad); padding-right: 0; }
section.block.bleed .section-head { padding-right: var(--container-pad); }
section.block.bleed .rail-wrap .rail, section.block.bleed .rail-wrap .top10-rail { padding-right: var(--container-pad); }
section.block.bleed .slick-arrow-next { right: 8px; }
section.block.bleed .slick-arrow-prev { left: -14px; }
section.block.bleed .mood-grid { padding-right: var(--container-pad); }
section.block.compact { padding: 28px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.section-title { font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", sans-serif; font-weight: 300; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.7px; margin: 0; line-height: 1.1; }
.section-title em { font-style: normal; font-weight: 500; color: var(--gold-bright); }
.section-sub { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.rail-wrap { position: relative; }
.slick-arrow { position: absolute; top: 50%; transform: translateY(-50%) scale(0.94); width: 44px; height: 44px; border-radius: 50%; background: rgba(20, 21, 28, 0.78); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.92); display: grid; place-items: center; cursor: pointer; z-index: 5; opacity: 0; pointer-events: none; box-shadow: 0 6px 18px rgba(0,0,0,0.35); transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }
.slick-arrow .slick-nav { display: grid; place-items: center; font-size: 20px; line-height: 1; }
.slick-arrow-prev { left: -14px; }
.slick-arrow-next { right: -14px; }
.rail-wrap:hover .slick-arrow { opacity: 1; pointer-events: auto; transform: translateY(-50%) scale(1); }
.slick-arrow:hover { background: rgba(28, 29, 38, 0.92); border-color: rgba(255,255,255,0.12); transform: translateY(-50%) scale(1.06); }
.section-link { font-size: 13px; color: var(--text-2); flex-shrink: 0; }
.section-link:hover { color: var(--gold-bright); }
.rail { display: flex; gap: var(--rail-gap); overflow-x: auto; padding: 4px 0 16px; scrollbar-width: none; scroll-behavior: smooth; contain: layout style; }
.rail::-webkit-scrollbar { display: none; }

/* VERTICAL CARDS */
.v-card { flex: 0 0 auto; width: clamp(150px, 14vw, 188px); scroll-snap-align: start; cursor: pointer; transform: translateZ(0); }
.v-card .poster { width: 100%; aspect-ratio: 9 / 16; border-radius: var(--r-md); position: relative; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease); will-change: transform; }
.v-card:hover .poster { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 44px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06); filter: brightness(1.08); }
.v-card:active .poster { transform: translateY(-2px) scale(0.98); transition-duration: 0.1s; }
.v-card .poster::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.65) 100%); }
.v-card .corner-badge { position: absolute; top: 8px; left: 8px; font-size: 9px; font-weight: 500; padding: 3px 7px; border-radius: 4px; text-transform: uppercase; }
.v-card .badge-new { background: var(--brand); color: #fff; }
.v-card .badge-vip { background: var(--gold); color: #2a1f05; }
.v-card .badge-fresh { background: rgba(0,0,0,0.65); backdrop-filter: blur(8px); color: #fff; }
.top10-card .corner-badge { position: absolute; top: 8px; left: 8px; font-size: 9px; font-weight: 500; padding: 3px 7px; border-radius: 4px; text-transform: uppercase; z-index: 3; }
.top10-card .badge-new { background: var(--brand); color: #fff; }
.v-card .ep-meta { position: absolute; bottom: 10px; left: 10px; right: 10px; font-size: 10px; color: rgba(255,255,255,0.92); display: flex; justify-content: space-between; }
.v-card .progress-track { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.18); }
.v-card .progress-fill { height: 100%; background: var(--gold); }
.v-card-meta { margin-top: 10px; }
.v-card-title { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.3; margin: 0 0 3px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
.v-card-sub { font-size: 11px; color: var(--text-3); }

/* Poster gradient classes */
.grad-1 { background: linear-gradient(170deg, #c2185b, #4a0a26); }
.grad-2 { background: linear-gradient(170deg, #6a3a8a, #2a1535); }
.grad-3 { background: linear-gradient(170deg, #d4a020, #4a3408); }
.grad-4 { background: linear-gradient(170deg, #1a4a6a, #0a1f35); }
.grad-5 { background: linear-gradient(170deg, #6a4a2a, #2a1a0a); }
.grad-6 { background: linear-gradient(170deg, #2a6a4a, #0a3a1f); }
.grad-7 { background: linear-gradient(170deg, #8a3a3a, #3a0a0a); }
.grad-8 { background: linear-gradient(170deg, #4a3a8a, #15103a); }
.grad-9 { background: linear-gradient(170deg, #8a5a8a, #2a153a); }
.grad-10 { background: linear-gradient(170deg, #5a8a4a, #1a3a15); }

/* TOP 10 */
.top10-rail { display: flex; gap: var(--rail-gap); overflow-x: auto; overflow-y: hidden; padding: 8px 0 24px; align-items: flex-end; scrollbar-width: none; scroll-behavior: smooth; contain: layout style; }
.top10-rail::-webkit-scrollbar { display: none; }
.top10-card { position: relative; flex: 0 0 auto; display: flex; align-items: flex-end; cursor: pointer; transform: translateZ(0); }
.top10-card .rank { font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif; font-weight: 700; font-size: clamp(40px, 4.4vw, 64px); line-height: 1; color: #fff; position: absolute; left: 10px; bottom: 10px; pointer-events: none; z-index: 3; text-shadow: 0 2px 10px rgba(0,0,0,0.75), 0 1px 3px rgba(0,0,0,0.9); letter-spacing: -1.5px; transition: transform 0.3s var(--ease); }
.top10-card:hover .rank { transform: scale(1.1); }
.top10-card .poster { width: clamp(140px, 13vw, 178px); aspect-ratio: 9 / 16; border-radius: var(--r-md); position: relative; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); will-change: transform; }
.top10-card:hover .poster { transform: translateY(-6px) scale(1.02); box-shadow: 0 18px 40px rgba(0,0,0,0.5); }
.top10-card .poster::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%); }

/* MOOD TILES */
.mood-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.mood-tile { aspect-ratio: 16 / 9; border-radius: var(--r-lg); padding: 18px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease); will-change: transform; }
.mood-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%); pointer-events: none; transition: opacity 0.3s; }
.mood-tile:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 14px 36px rgba(0,0,0,0.4); filter: brightness(1.1); }
.mood-tile:hover::after { opacity: 0.6; }
.mood-tile-eyebrow { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 500; }
.mood-tile-title { font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif; font-weight: 300; font-size: 26px; line-height: 1.05; letter-spacing: -0.6px; color: #fff; }
.mood-tile-title em { font-style: normal; font-weight: 600; }
.mood-1 { background: linear-gradient(135deg, #ff3a5c, #6a1a3a); }
.mood-2 { background: linear-gradient(135deg, #6a4a2a, #2a1a0a); }
.mood-3 { background: linear-gradient(135deg, #4a2a8a, #1a0a3a); }
.mood-4 { background: linear-gradient(135deg, #2a6a8a, #0a2a3a); }
.mood-5 { background: linear-gradient(135deg, #2a8a4a, #0a3a1a); }
.mood-6 { background: linear-gradient(135deg, #d44a2a, #5a1a0a); }
.mood-7 { background: linear-gradient(135deg, #8a3a6a, #3a0a2a); }
.mood-8 { background: linear-gradient(135deg, #6a8a2a, #2a3a0a); }

/* PROMO */
.promo { position: relative; border-radius: var(--r-xl); padding: clamp(28px, 4vw, 48px); overflow: hidden; background: radial-gradient(ellipse 500px 400px at 90% 50%, rgba(230, 170, 7, 0.25) 0%, transparent 60%), radial-gradient(ellipse 400px 300px at 10% 30%, rgba(255, 58, 92, 0.18) 0%, transparent 60%), linear-gradient(135deg, #1a0a1f 0%, #1f1408 60%, #14101a 100%); border: 0.5px solid var(--border); }
.promo-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; position: relative; z-index: 2; }
.promo-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-bright); font-weight: 500; margin-bottom: 16px; }
.promo-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.promo-title { font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif; font-weight: 300; font-size: clamp(28px, 3.6vw, 50px); line-height: 1.02; letter-spacing: -1.3px; margin: 0 0 14px; }
.promo-title em { font-style: normal; font-weight: 500; color: var(--gold-bright); }
.promo-text { color: var(--text-2); font-size: 14px; line-height: 1.6; margin: 0 0 20px; max-width: 440px; }
.promo-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.promo-fineprint { font-size: 11px; color: var(--text-3); margin-top: 12px; }
.promo-features { display: grid; gap: 12px; }
.promo-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text); }
.promo-feature .check { width: 22px; height: 22px; border-radius: 50%; background: rgba(230, 170, 7, 0.15); border: 0.5px solid rgba(230, 170, 7, 0.4); color: var(--gold-bright); display: grid; place-items: center; font-size: 11px; flex-shrink: 0; }
.promo-feature span strong { font-weight: 500; }
.promo-feature span small { display: block; color: var(--text-3); font-size: 12px; margin-top: 2px; }

/* BUNDLE */
.bundle { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 18px 22px; background: linear-gradient(90deg, #1a1a26 0%, #2a1a3a 100%); border: 0.5px solid var(--border); border-radius: var(--r-lg); }
.bundle-stack { display: grid; grid-template-columns: repeat(3, 36px); gap: 6px; }
.bundle-stack > div { width: 36px; height: 64px; border-radius: 4px; }
.bundle-text strong { display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.bundle-text span { font-size: 12px; color: var(--text-2); }

/* DEVICE */
.device-section { text-align: center; padding: 60px 0; border-top: 0.5px solid var(--border); background: radial-gradient(ellipse 800px 300px at 50% 0%, rgba(230, 170, 7, 0.06) 0%, transparent 70%); content-visibility: auto; contain-intrinsic-size: 0 500px; }
.device-eyebrow { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 12px; }
.device-title { font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif; font-weight: 300; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.02; letter-spacing: -1.2px; margin: 0 0 12px; }
.device-title em { font-style: normal; font-weight: 500; color: var(--gold-bright); }
.device-sub { color: var(--text-2); font-size: 14px; margin-bottom: 32px; }
.device-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 720px; margin: 0 auto 28px; }
.device-pill { font-size: 12px; color: var(--text); background: rgba(255,255,255,0.05); border: 0.5px solid var(--border); padding: 8px 14px; border-radius: var(--r-pill); font-weight: 500; }
.device-stores { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #0e0f15; padding: 10px 16px; border-radius: var(--r-md); font-size: 12px; }
.store-btn:hover { opacity: 0.9; }
.store-btn small { display: block; font-size: 9px; color: var(--text-3); letter-spacing: 0.5px; text-transform: uppercase; }
.store-btn strong { font-weight: 600; font-size: 14px; }

/* FAQ */
.faq-section { padding: 60px 0; border-top: 0.5px solid var(--border); content-visibility: auto; contain-intrinsic-size: 0 600px; }
.faq-head { text-align: center; margin-bottom: 32px; }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 8px; }
.faq-item { background: rgba(255,255,255,0.025); border: 0.5px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-item[open] { background: rgba(230, 170, 7, 0.04); border-color: rgba(230, 170, 7, 0.18); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 15px; font-weight: 500; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--text-3); flex-shrink: 0; transition: transform 0.3s var(--ease), color 0.3s var(--ease); }
.faq-item[open] summary::after { content: "\2212"; color: var(--gold-bright); transform: rotate(180deg); }
.faq-body { padding: 0 22px 20px; color: var(--text-2); font-size: 14px; line-height: 1.65; max-width: 640px; animation: faqExpand 0.3s var(--ease); }
@keyframes faqExpand { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* FOOTER */
.footer { border-top: 0.5px solid var(--border); padding: 56px 0 32px; background: #0a0b11; content-visibility: auto; contain-intrinsic-size: 0 400px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--text-2); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--text-2); font-size: 13px; line-height: 1.6; margin: 16px 0 20px; }
.social-row { display: flex; gap: 8px; }
.social-btn { width: 36px; height: 36px; display: grid; place-items: center; border-radius: var(--r-pill); background: rgba(255,255,255,0.04); color: var(--text-2); font-size: 13px; }
.social-btn:hover { background: rgba(230, 170, 7, 0.12); color: var(--gold-bright); }
.footer-base { padding-top: 28px; border-top: 0.5px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--text-3); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--text-2); }

/* HOVER PREVIEW */
.hover-preview { position: fixed; z-index: 9999; width: 320px; background: var(--bg-elevated); border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06); overflow: hidden; opacity: 0; transform: scale(0.94) translateY(8px); pointer-events: none; transition: opacity 0.2s cubic-bezier(0.16,1,0.3,1), transform 0.2s cubic-bezier(0.16,1,0.3,1); will-change: opacity, transform; }
.hover-preview.is-visible { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.hover-preview-poster { width: 100%; aspect-ratio: 16 / 9; background-size: cover; position: relative; }
.hover-preview-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg-elevated) 0%, transparent 60%); }
.hover-preview-body { padding: 14px 16px 16px; }
.hover-preview-title { font-size: 15px; font-weight: 700; margin: 0 0 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hover-preview-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-2); margin-bottom: 10px; }
.hover-preview-meta .match { color: #46d369; font-weight: 600; }
.hover-preview-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); }
.hover-preview-genres { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-3); flex-wrap: wrap; }
.hover-preview-genres span:not(.genre-dot) { color: var(--text-2); }
.hover-preview-genres .genre-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); }
.hover-preview-actions { display: flex; gap: 8px; margin-top: 12px; }
.hover-preview-actions button { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3); background: transparent; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.hover-preview-actions button:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hover-preview-actions button svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .hover-preview { display: none !important; } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-slide { grid-template-columns: minmax(180px, 240px) 1fr; gap: 28px; }
  .hero-poster { aspect-ratio: 9 / 14; }
}
@media (max-width: 768px) {
  .hero-slides { min-height: 280px; }
  .hero-slide { grid-template-columns: 150px 1fr; gap: 14px; padding: 28px 0 28px; text-align: left; position: relative; align-items: start; }
  .hero-poster { display: none; }
  .hero-thumb { display: block; width: 150px; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 2 / 3; flex-shrink: 0; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
  .hero-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-slide > div:last-child { overflow: hidden; min-width: 0; }
  .hero-title { font-size: clamp(20px, 5.5vw, 28px) !important; letter-spacing: -0.8px !important; margin-bottom: 6px !important; line-height: 1.1 !important; }
  .hero-desc { font-size: 12.5px; max-width: 100%; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; margin: 0 0 4px; line-height: 1.5; color: var(--text-2); max-height: 2.95em; }
  .hero-desc-more { font-size: 11.5px; color: var(--gold-bright); margin-bottom: 10px; display: inline-block; }
  .hero-eyebrow { justify-content: flex-start; font-size: 9px; margin-bottom: 6px; letter-spacing: 1.5px; }
  .hero-meta { justify-content: flex-start; font-size: 10.5px; margin-bottom: 6px; gap: 4px 8px; }
  .hero-credits { display: none !important; }
  .quality-row { display: none !important; }
  .hero-cta-row { display: flex; flex-wrap: nowrap; justify-content: flex-end; gap: 8px; margin-top: 0; }
  .hero-cta-row .btn { padding: 8px 12px; font-size: 11px; white-space: nowrap; }
  .hero-pagination { margin-top: 14px; padding-bottom: 14px; }
  .promo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section.block { padding: 28px 0; }
  .section-title { font-size: 22px !important; }
  .container { padding: 0 16px; }
  .v-card { width: 150px !important; }
  .top10-card .poster { width: 132px !important; }
  .rail, .top10-rail { gap: 10px !important; }
  .slick-arrow { display: none !important; }
  .rail, .top10-rail { scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 560px) {
  .hero-slide { grid-template-columns: 138px 1fr; gap: 12px; padding: 24px 0 16px; }
  .hero-thumb { width: 138px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 16px; }
  .hero-title { font-size: clamp(18px, 5vw, 24px) !important; }
  .hero-cta-row .btn { padding: 7px 10px; font-size: 10.5px; }
  .v-card { width: 138px !important; }
}
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.rise { animation: rise 0.9s var(--ease) both; }
.rise-1 { animation-delay: 0.05s; } .rise-2 { animation-delay: 0.15s; } .rise-3 { animation-delay: 0.25s; }

/* View Transitions API — smooth page-to-page navigation */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: fadeOut 0.2s ease forwards; }
::view-transition-new(root) { animation: fadeIn 0.25s ease forwards; }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Section link hover animation */
.section-link { position: relative; }
.section-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--gold-bright); transition: width 0.25s var(--ease); }
.section-link:hover::after { width: 100%; }

/* PROMO / AD SECTIONS */
.promo-section { max-width: var(--container); margin: 48px auto; padding: 52px 48px; border-radius: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.promo-content { display: flex; flex-direction: column; justify-content: center; }
.promo-features-col { display: flex; align-items: center; justify-content: center; }
.promo-subtitle { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.promo-subtitle span { display: inline-block; width: 24px; height: 2px; }
.promo-title { font-size: clamp(28px, 4vw, 42px); font-weight: 300; line-height: 1.15; margin: 0 0 18px; }
.promo-desc { font-size: 14.5px; line-height: 1.65; opacity: 0.8; margin: 0 0 26px; max-width: 420px; }
.promo-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.promo-btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 28px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600; transition: all 0.2s var(--ease); text-decoration: none; }
.promo-btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.promo-btn-outline { background: transparent; }
.promo-btn-outline:hover { background: rgba(255,255,255,0.08); }
.promo-footnote { font-size: 11px; opacity: 0.5; margin: 0; }
.promo-features { display: flex; flex-direction: column; gap: 20px; }
.promo-feature { display: flex; align-items: flex-start; gap: 14px; }
.promo-feature-icon { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.promo-feature div { display: flex; flex-direction: column; gap: 3px; }
.promo-feature strong { font-size: 14px; font-weight: 600; }
.promo-feature span { font-size: 12.5px; opacity: 0.6; }
@media (max-width: 768px) {
  .promo-section { grid-template-columns: 1fr !important; padding: 36px 28px !important; gap: 28px !important; text-align: center; }
  .promo-content { align-items: center; }
  .promo-subtitle { justify-content: center; }
  .promo-desc { max-width: 100%; }
  .promo-buttons { justify-content: center; }
  .promo-features-col { margin-top: 4px; }
  .promo-features { align-items: flex-start; text-align: left; }
}

/* SKELETON LOADING */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skel-bar, .skel-card {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 37%, rgba(255,255,255,0.03) 63%);
  background-size: 600px 100%;
  animation: shimmer 1.2s infinite linear;
  border-radius: var(--r-md);
}
.skel-bar { display: block; }
.skel-card { flex: 0 0 auto; width: clamp(150px, 14vw, 188px); aspect-ratio: 9 / 16; }

/* Preloader */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0.4s; }
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-spin { width: 36px; height: 36px; border: 3px solid rgba(255,255,255,0.08); border-top-color: #f5c843; border-radius: 50%; animation: spin 0.6s linear infinite; will-change: transform; }
@keyframes spin { to { transform: rotate(360deg); } }
