:root {
  --bg: #06060b;
  --bg-2: #0c0c14;
  --surface: rgba(16, 16, 26, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f6f3ee;
  --muted: #9b97ab;
  --mint: #2ef2c8;
  --mint-dim: #14c4a0;
  --violet: #9a6bff;
  --amber: #ffc857;
  --glow: 0 0 40px rgba(46, 242, 200, 0.18);
  --radius: 22px;
  --max: 1240px;
  --cta: https://www.effectivecpmnetwork.com/unmgheemh?key=51d9684a30a680738a1b60858e8968bf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Sora", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(154, 107, 255, 0.22), transparent 55%),
    radial-gradient(800px 480px at 90% 0%, rgba(46, 242, 200, 0.16), transparent 50%),
    radial-gradient(700px 500px at 50% 110%, rgba(255, 200, 87, 0.08), transparent 50%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.wrap { position: relative; z-index: 2; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.display { font-family: "Syne", sans-serif; letter-spacing: -0.04em; }

::selection { background: var(--mint); color: #06110e; }

/* NAV */
.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  margin: 14px auto 0;
  width: min(var(--max), calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 14, 0.7);
  backdrop-filter: blur(22px);
  border-radius: 999px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  color: #07110f;
  font-family: "Syne", sans-serif;
  font-weight: 800;
}
.brand-name { font-size: 15px; }
.brand-name span { color: var(--mint); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--mint);
  color: #06221b;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--glow);
}
.nav-cta:hover { transform: translateY(-1px); }
.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

/* HERO shared bits */
.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 48px auto 28px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(46,242,200,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(46,242,200,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,242,200,0); }
}
h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 14px 0 16px;
}
.lede { color: var(--muted); max-width: 640px; line-height: 1.7; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn-main, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
}
.btn-main {
  background: linear-gradient(135deg, var(--mint), #7dffd8);
  color: #05201a;
  box-shadow: var(--glow);
}
.btn-main:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(46,242,200,0.4); }

/* CARDS */
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 56px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}
.section-head h2 {
  font-family: "Syne", sans-serif;
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.04em;
}
.section-head p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101018;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(46,242,200,0.35);
  box-shadow: 0 24px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(46,242,200,.08);
}
.thumb {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .thumb img { transform: scale(1.08); }
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,6,11,.88) 100%);
}
.play-orb {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  opacity: 0;
  transition: .3s;
}
.card:hover .play-orb { opacity: 1; }
.play-orb span {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mint);
  color: #05201a;
  font-size: 18px;
  box-shadow: var(--glow);
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(6,6,11,.7);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.badge.hot { color: var(--amber); }
.badge.live { color: var(--mint); }
.card-meta {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 3;
}
.card-meta h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-family: "Syne", sans-serif;
}
.watch {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 12px;
  font-weight: 700;
}
.watch:hover { background: var(--mint); }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
  margin-top: 20px;
}
.foot {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.foot-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 22px;
}
.foot-nav a:hover { color: var(--mint); }
.footer-ads {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 18px 0 22px;
}
.copy { opacity: .7; }

#backTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--violet);
  color: white;
  box-shadow: 0 10px 30px rgba(154,107,255,.35);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip {
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

.prose { color: var(--muted); line-height: 1.8; font-size: 15px; }
.prose strong { color: var(--text); }
.faq { display: grid; gap: 10px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: 10px 0 0; line-height: 1.7; }

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  margin: 8px 0 36px;
}
.ticker-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding: 12px 0;
  color: var(--muted);
  font-size: 13px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* PAGE: HOME bento */
.page-home .hero h1 { font-size: clamp(46px, 8vw, 92px); max-width: 16ch; }
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.bento .card:nth-child(1) { grid-column: span 6; }
.bento .card:nth-child(2) { grid-column: span 3; }
.bento .card:nth-child(3) { grid-column: span 3; }
.bento .card:nth-child(1) .thumb { aspect-ratio: 16/10; }
.bento .card:nth-child(n+4) { grid-column: span 3; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.03);
}
.stat b { display: block; font-family: "Syne", sans-serif; font-size: 22px; color: var(--mint); }

/* PAGE: BRAND editorial */
.page-brand .hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.page-brand .hero h1 { font-size: clamp(36px, 5vw, 64px); }
.featured-shot {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.featured-shot img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.rank-list { display: grid; gap: 12px; }
.rank-item {
  display: grid;
  grid-template-columns: 72px 120px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  transition: .25s;
}
.rank-item:hover {
  border-color: rgba(154,107,255,.45);
  background: rgba(154,107,255,.08);
  transform: translateX(4px);
}
.rank-no {
  font-family: "Syne", sans-serif;
  font-size: 28px;
  color: var(--violet);
  text-align: center;
}
.rank-item img {
  width: 120px;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
}
.rank-item h3 { margin: 0 0 4px; font-size: 16px; }
.rank-item p { margin: 0; color: var(--muted); font-size: 13px; }
.rank-item .watch { width: auto; padding: 0 16px; }

/* PAGE: OFFICIAL cinema rows */
.page-official .hero {
  text-align: center;
  padding: 20px 0 10px;
}
.page-official .hero h1 { font-size: clamp(38px, 6vw, 72px); }
.page-official .lede { margin: 0 auto; }
.page-official .cta-row { justify-content: center; }
.official-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(46,242,200,.35);
  color: var(--mint);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 24px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}
.filter-btn.on, .filter-btn:hover {
  color: #06221b;
  background: var(--mint);
  border-color: var(--mint);
}
.cinema {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cinema .card[hidden] { display: none; }

.dock {
  display: none;
}

@media (max-width: 980px) {
  .bento .card:nth-child(1),
  .bento .card:nth-child(2),
  .bento .card:nth-child(3),
  .bento .card:nth-child(n+4) { grid-column: span 6; }
  .page-brand .hero { grid-template-columns: 1fr; }
  .rank-item { grid-template-columns: 48px 96px 1fr; }
  .rank-item .watch { grid-column: 1 / -1; }
  .cinema { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 62px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(8,8,14,.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
  }
  .menu-btn { display: grid; place-items: center; }
  .bento .card:nth-child(n) { grid-column: span 12; }
  .cinema { grid-template-columns: 1fr 1fr; }
  .nav-cta { display: none; }
  .dock {
    display: flex;
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 45;
    background: rgba(8,8,14,.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
  }
  .dock a {
    flex: 1;
    text-align: center;
    padding: 12px 6px;
    font-size: 12px;
    font-weight: 700;
  }
  .dock a.primary { background: var(--mint); color: #06221b; }
}
