:root {
  --red: #E50914;
  --red-dark: #B20710;
  --black: #141414;
  --black-2: #000000;
  --grey-1: #808080;
  --grey-2: #2a2a2a;
  --grey-3: #333333;
  --white: #ffffff;
  --font: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  --wordmark: "Bebas Neue", var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; padding: 0; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 4vw; }

/* ── parody strip ─────────────────────────────────────────── */
.parody-strip {
  background: #000;
  color: var(--grey-1);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 5px 12px;
  border-bottom: 1px solid #1a1a1a;
}
.parody-strip strong { color: var(--grey-1); }

/* ── nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 26px; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, top 0.3s ease;
}
.nav.solid { background: var(--black); box-shadow: 0 2px 12px rgba(0,0,0,.6); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-left { display: flex; align-items: center; gap: 28px; }
.logo {
  font-family: var(--wordmark);
  font-size: 1.9rem;
  letter-spacing: 0.5px;
  color: var(--red);
  line-height: 1;
  white-space: nowrap;
}
.logo em { font-style: normal; color: var(--white); }
.nav-links { display: flex; gap: 18px; font-size: 0.85rem; color: #e5e5e5; }
.nav-links a:hover { color: var(--grey-1); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.btn {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid #6b6b6b; }
.btn-ghost:hover { border-color: #fff; }
.lang-select {
  background: rgba(0,0,0,.6); color: #fff; border: 1px solid #808080;
  border-radius: 3px; padding: 6px 8px; font-size: 0.85rem;
}

/* ── hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(229,9,20,.35), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(120,10,20,.25), transparent 60%),
    linear-gradient(180deg, #1a0508 0%, #100000 55%, var(--black) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(180deg, transparent, var(--black) 92%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: center; margin: 0 auto; max-width: 950px; padding-top: 40px; }
.hero-content h1 {
  font-family: var(--wordmark);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: 0.5px;
  margin: 0 0 12px;
  line-height: 1.05;
}
.hero-content h1 .accent { color: var(--red); }
.hero-content p.lede { font-size: clamp(1.05rem, 2.4vw, 1.5rem); color: #f2f2f2; margin: 0 0 6px; }
.hero-content p.sub { font-size: clamp(0.95rem, 1.8vw, 1.15rem); color: #d2d2d2; margin: 0 0 26px; }
.hero-email {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  max-width: 700px; margin: 0 auto;
}
.hero-email input {
  flex: 1 1 320px; min-width: 220px;
  padding: 16px 14px; font-size: 1rem;
  background: rgba(0,0,0,.55); border: 1px solid #8c8c8c; border-radius: 3px; color: #fff;
}
.hero-email input::placeholder { color: #cfcfcf; }
.ca-field {
  flex: 1 1 320px; min-width: 220px;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; font-size: 1rem;
  background: rgba(0,0,0,.55); border: 1px solid #8c8c8c; border-radius: 3px; color: #fff;
}
.ca-field .ca-label { font-weight: 700; color: var(--red); letter-spacing: 0.04em; font-size: 0.85rem; flex: 0 0 auto; }
.ca-field .ca-value {
  flex: 1 1 auto; font-family: monospace; font-size: 0.92rem; color: #e5e5e5;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ca-field .ca-value.pending { color: #9a9a9a; font-family: var(--font); }
.ca-field .ca-copy {
  flex: 0 0 auto; background: transparent; border: none; color: #cfcfcf;
  font-size: 1.05rem; padding: 2px 4px; border-radius: 3px;
}
.ca-field .ca-copy:not(:disabled) { cursor: pointer; color: #fff; }
.ca-field .ca-copy:not(:disabled):hover { background: rgba(255,255,255,.12); }
.ca-field .ca-copy:disabled { opacity: 0.4; cursor: not-allowed; }
.ca-field .ca-copy.copied { color: #4caf50; }
.btn-cta {
  background: var(--red); color: #fff; font-size: 1.2rem; font-weight: 700;
  padding: 14px 26px; border-radius: 3px; display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--red-dark); }

/* ── generic section ─────────────────────────────────────── */
/* offsets same-page anchor jumps (nav "How it works" / "Live feed" /
   "Transparency" / footer "FAQ" links) so smooth-scrolled content clears the
   fixed nav instead of landing flush underneath it */
#how, #feed, #transparency, #faq, #parody-row, #more-to-watch, #why-join { scroll-margin-top: 110px; }
section.block { padding: 56px 0; border-top: 8px solid #232323; position: relative; z-index: 2; background: var(--black); }
.block h2 { font-size: clamp(1.5rem, 3.4vw, 2.4rem); margin: 0 0 26px; text-align: center; }
.block h2 .accent { color: var(--red); }

/* ── trending row ─────────────────────────────────────────── */
.row-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.row-head h3 { font-size: 1.35rem; margin: 0; }
.row-scroll {
  display: flex; gap: 10px; overflow-x: auto; padding: 10px 0 20px;
  scrollbar-width: thin;
}
.row-scroll::-webkit-scrollbar { height: 6px; }
.row-scroll::-webkit-scrollbar-thumb { background: #444; border-radius: 3px; }
.card {
  flex: 0 0 220px; height: 130px; border-radius: 4px; position: relative;
  display: flex; align-items: flex-end; padding: 10px;
  font-weight: 700; font-size: 0.95rem; color: #fff;
  background-size: cover; background-position: center;
  transition: transform .25s ease;
  cursor: pointer;
  box-shadow: inset 0 -60px 40px -20px rgba(0,0,0,.6);
}
.card:hover { transform: scale(1.06); z-index: 3; box-shadow: 0 12px 30px rgba(0,0,0,.6), inset 0 -60px 40px -20px rgba(0,0,0,.6); }
.card .badge { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,.55); padding: 2px 7px; border-radius: 3px; font-size: 0.7rem; letter-spacing: 0.05em; color: #ffd54a; }
.top10-row { display: flex; gap: 4px; overflow-x: auto; padding: 10px 0 24px; }
.top10-card { position: relative; flex: 0 0 210px; display: flex; align-items: flex-end; }
.top10-num {
  font-family: var(--wordmark); font-size: 7rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 2px #4d4d4d; margin-right: -18px; align-self: flex-end;
}
.top10-card .card { flex: 0 0 150px; height: 120px; }

/* ── feature grid ─────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: #000; }
.grid-4 .tile { background: var(--black); padding: 34px 22px; text-align: center; }
.grid-4 .tile .icon { font-size: 2.2rem; margin-bottom: 14px; }
.grid-4 .tile h4 { margin: 0 0 8px; font-size: 1.15rem; }
.grid-4 .tile p { margin: 0; color: #c7c7c7; font-size: 0.92rem; line-height: 1.4; }
@media (max-width: 900px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* ── faq ──────────────────────────────────────────────────── */
.faq { max-width: 900px; margin: 0 auto; }
.faq-item { background: #2d2d2d; margin-bottom: 8px; border-radius: 2px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: #fff;
  padding: 20px 24px; font-size: 1.15rem; display: flex; justify-content: space-between; align-items: center;
}
.faq-q:hover { background: #3d3d3d; }
.faq-q .plus { font-size: 1.6rem; font-weight: 300; transition: transform .2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; background: #2d2d2d; }
.faq-a p { padding: 0 24px 22px; margin: 0; color: #e2e2e2; font-size: 1rem; line-height: 1.5; max-width: 760px; }

/* ── footer ───────────────────────────────────────────────── */
footer { padding: 50px 0 60px; color: var(--grey-1); }
footer .footer-cta { text-align: center; margin-bottom: 34px; }
footer .footer-cta p { font-size: 1.05rem; color: #e5e5e5; margin-bottom: 16px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 20px; max-width: 900px; margin: 0 auto 30px; }
.footer-links a { display: block; font-size: 0.85rem; color: var(--grey-1); margin-bottom: 12px; }
.footer-links a:hover { text-decoration: underline; }
@media (max-width: 700px) { .footer-links { grid-template-columns: 1fr 1fr; } }
footer .disclaimer { max-width: 900px; margin: 0 auto; font-size: 0.78rem; line-height: 1.6; color: #6b6b6b; text-align: center; }
footer .disclaimer a { color: #8a8a8a; text-decoration: underline; }

/* ── token / dashboard page ───────────────────────────────── */
.token-hero {
  padding: 150px 0 50px;
  background: radial-gradient(ellipse at 50% 0%, rgba(229,9,20,.25), transparent 60%), var(--black);
  text-align: center;
}
.pill { display: inline-block; background: rgba(229,9,20,.15); color: #ff5b63; border: 1px solid rgba(229,9,20,.4); padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; letter-spacing: 0.04em; margin-bottom: 18px; }
.token-hero h1 { font-family: var(--wordmark); font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin: 0 0 14px; }
.token-hero p { max-width: 720px; margin: 0 auto; color: #d6d6d6; font-size: 1.1rem; line-height: 1.6; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 40px 0; }
.stat-card { background: #1c1c1c; border: 1px solid #2c2c2c; border-radius: 8px; padding: 22px; }
.stat-card .label { font-size: 0.78rem; color: var(--grey-1); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.stat-card .value { font-family: var(--wordmark); font-size: 1.9rem; letter-spacing: 0.3px; }
.stat-card .value.red { color: var(--red); }
.stat-card .sub { font-size: 0.8rem; color: #8f8f8f; margin-top: 4px; }
@media (max-width: 900px) { .stat-grid { grid-template-columns: 1fr 1fr; } }

.flow { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 40px 0; }
.flow-step { flex: 1 1 220px; max-width: 260px; background: #1c1c1c; border: 1px solid #2c2c2c; border-radius: 8px; padding: 22px; text-align: center; }
.flow-step .n { width: 34px; height: 34px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-weight: 700; }
.flow-step h4 { margin: 0 0 8px; font-size: 1rem; }
.flow-step p { margin: 0; font-size: 0.85rem; color: #b8b8b8; line-height: 1.5; }
.flow-arrow { align-self: center; color: #555; font-size: 1.4rem; }

.feed { max-width: 780px; margin: 0 auto; }
.feed-item { display: flex; gap: 12px; padding: 12px 16px; border-bottom: 1px solid #232323; font-size: 0.9rem; align-items: baseline; }
.feed-item .tag { flex: 0 0 100px; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; padding: 3px 8px; border-radius: 3px; text-align: center; height: fit-content; }
.tag.claim { background: rgba(255,193,7,.15); color: #ffc107; }
.tag.buy { background: rgba(33,150,243,.15); color: #64b5f6; }
.tag.distribute { background: rgba(76,175,80,.15); color: #81c784; }
.feed-item .detail { flex: 1; color: #ddd; }
.feed-item .time { color: #666; font-size: 0.78rem; white-space: nowrap; }
.feed-item a { color: #64b5f6; text-decoration: underline; }
.feed-empty { text-align: center; color: #777; padding: 30px; }

.transparency-box { max-width: 780px; margin: 40px auto 0; background: #1c1c1c; border: 1px solid #2c2c2c; border-radius: 8px; padding: 24px; }
.transparency-box .row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #262626; font-size: 0.88rem; flex-wrap: wrap; }
.transparency-box .row:last-child { border-bottom: none; }
.transparency-box .k { color: var(--grey-1); }
.transparency-box .v { color: #eee; font-family: monospace; word-break: break-all; text-align: right; }
.transparency-box .v a { color: #64b5f6; }

.risk-box { max-width: 780px; margin: 40px auto 0; background: #241414; border: 1px solid #4a1f1f; border-radius: 8px; padding: 22px 24px; font-size: 0.85rem; color: #e0b8b8; line-height: 1.6; }
.risk-box strong { color: #ff9b9b; }

/* ── browse (post sign-in "TV UI" home screen) ───────────────
   Clones the real signed-in Netflix lean-back interface: a slim icon-only
   left rail overlaid on a full-bleed hero, N-badge title card, Play/More
   Info, and a thumbnail row below. Own parody content throughout — no real
   Netflix artwork, photos, or logo glyph reproduced. */
.browse { background: var(--black); min-height: 100vh; }

.browse-topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px; background: #000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.browse-topnav .btn-left { display: flex; align-items: center; }
.browse-topnav .logo { font-size: 1.35rem; }
.browse-topnav .n-mark {
  background: var(--red); color: #fff; font-family: var(--wordmark);
  width: 30px; height: 30px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.topnav-links { display: flex; gap: 22px; margin-left: 30px; }
.topnav-links a { font-size: 0.92rem; color: #d8d8d8; font-weight: 500; }
.topnav-links a.active { color: #fff; font-weight: 700; }
.topnav-links a:hover { color: #b3b3b3; }
.browse-topnav .btn-right { display: flex; align-items: center; gap: 20px; }
.browse-topnav .btn-right a { color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0.9; }
.browse-topnav .btn-right a:hover { opacity: 1; }
.browse-topnav .btn-right svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.nav-nflx-price {
  font-family: var(--wordmark); font-size: 1rem; letter-spacing: 0.3px;
  color: var(--red); white-space: nowrap;
}
.browse-topnav .avatar {
  width: 28px; height: 28px; border-radius: 4px; background: var(--red);
  font-family: var(--wordmark); font-size: 1rem; font-weight: 700;
}

.browse-hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: flex-end;
  padding-bottom: 60px;
  padding-top: 68px;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(229,9,20,.28), transparent 45%),
    radial-gradient(ellipse at 30% 40%, rgba(80,20,90,.3), transparent 55%),
    linear-gradient(200deg, #2b0a12 0%, #120004 45%, var(--black) 100%);
  overflow: hidden;
}
.browse-hero-video {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.browse-hero-video iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; /* 16:9 */
  min-width: 177.78vh; min-height: 100%; /* cover behavior regardless of viewport shape */
  opacity: 0.6;
}
.browse-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, transparent 30%, rgba(0,0,0,.5) 78%, var(--black) 100%),
    linear-gradient(90deg, rgba(0,0,0,.65) 0%, transparent 45%);
  pointer-events: none;
}
/* faint decorative fireworks/sparkle burst, pure CSS, no image asset */
.browse-hero .burst {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9), rgba(229,9,20,.4) 40%, transparent 70%);
  filter: blur(1px);
  opacity: 0.7;
}
.browse-hero .burst.b1 { width: 260px; height: 260px; top: -60px; right: 10%; }
.browse-hero .burst.b2 { width: 180px; height: 180px; top: 40px; right: 32%; opacity: .5; }
.browse-hero .burst.b3 { width: 140px; height: 140px; top: 120px; right: 6%; opacity: .4; }

.browse-content { position: relative; z-index: 2; padding-left: 6vw; padding-right: 6vw; max-width: 780px; }
.n-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.n-badge .mark {
  background: var(--red); color: #fff; font-family: var(--wordmark);
  width: 26px; height: 26px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.n-badge .label { font-size: 0.8rem; letter-spacing: 0.18em; color: #d8d8d8; font-weight: 600; }
.browse-title {
  font-family: "Anton", var(--wordmark);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.5px;
  margin: 0 0 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.browse-desc { font-size: 1.05rem; line-height: 1.55; color: #e8e8e8; max-width: 560px; margin: 0 0 26px; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.browse-actions { display: flex; gap: 12px; }
.btn-play {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #000; font-weight: 700; font-size: 1.05rem;
  padding: 12px 26px; border-radius: 4px;
}
.btn-play:hover { background: rgba(255,255,255,.75); }
.btn-info {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(109,109,110,.55); color: #fff; font-weight: 700; font-size: 1.05rem;
  padding: 12px 26px; border-radius: 4px;
}
.btn-info:hover { background: rgba(109,109,110,.8); }

.browse-rows { position: relative; z-index: 2; padding: 40px 6vw 6vw; }
.browse-row { margin-bottom: 34px; }
.browse-rows h3 { font-size: 1.05rem; font-weight: 600; margin: 0 0 12px; }
.browse-rows .row-scroll .card { position: relative; }
.browse-rows .card .n-chip {
  position: absolute; top: 8px; left: 8px;
  background: var(--red); color: #fff; font-family: var(--wordmark);
  width: 18px; height: 18px; border-radius: 2px; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}

.parody-pill {
  position: fixed; left: 16px; bottom: 14px; z-index: 60;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.15);
  color: #bdbdbd; font-size: 0.7rem; padding: 6px 12px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.parody-pill strong { color: #e5e5e5; }

.tmdb-attribution {
  display: none; /* JS reveals this once real TMDB data actually loads */
  max-width: 900px; margin: 0 auto; padding: 0 6vw 40px;
  font-size: 0.75rem; line-height: 1.5; color: #666; text-align: center;
}
.tmdb-attribution a { color: #888; text-decoration: underline; }

/* real (TMDB-backed) cards get a play-hint + pointer cursor; parody cards
   (no data-id attached) get neither */
.card.playable { cursor: pointer; }
.card.playable .play-hint {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,.5); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; opacity: 0; transition: opacity .2s ease;
  padding-left: 3px; /* optically center the ▶ glyph */
}
.card.playable:hover .play-hint { opacity: 1; }

.parody-modal {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.85);
  align-items: center; justify-content: center; padding: 5vh 4vw;
}
.parody-modal.open { display: flex; }
.parody-modal-inner { width: 100%; max-width: 900px; }
.parody-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.parody-title { color: #fff; font-size: 1.1rem; font-weight: 700; }
.parody-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 6px; overflow: hidden; }
.parody-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.parody-loading { display: flex; align-items: center; justify-content: center; height: 100%; color: #999; font-size: 0.95rem; }
.parody-close {
  flex: 0 0 auto; background: rgba(255,255,255,.1); color: #fff; border: none;
  width: 32px; height: 32px; border-radius: 50%; font-size: 1rem;
}
.parody-close:hover { background: rgba(255,255,255,.2); }

@media (max-width: 720px) {
  .browse-topnav { padding: 0 16px; }
  .topnav-links { display: none; }
}
