@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --red: #e10613;
  --red-2: #ff2a33;
  --bg: #0d0909;
  --bg-2: #140c0c;
  --card: #1a1112;
  --ink: #f7f4f4;
  --muted: #a89898;
  --line: rgba(255, 255, 255, 0.08);
  --glow: 0 10px 28px rgba(225, 6, 19, 0.38);
  --radius: 10px;
  --max: 1120px;
  --header: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 85% -8%, rgba(225, 6, 19, 0.2), transparent 55%),
    radial-gradient(700px 380px at 0% 18%, rgba(225, 6, 19, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.55;
  color-scheme: dark;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
.display {
  font-family: "Bebas Neue", Inter, sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0;
  font-weight: 400;
}

p {
  margin: 0;
}

button,
input,
select {
  font: inherit;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: #111;
  color: #fff;
  padding: 8px 12px;
}

.announce {
  background: #160406;
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(225, 6, 19, 0.35);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 9, 9, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.header-inner {
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 56px;
  width: auto;
  max-width: 168px;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  display: none;
}

.brand-text {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
}

.billboard {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 120px 0 48px;
  overflow: hidden;
}

.billboard-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #140808 center/cover no-repeat;
  transform: scale(1.06);
  filter: saturate(1.05);
}

.billboard-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 9, 9, 0.92) 8%, rgba(13, 9, 9, 0.55) 48%, rgba(13, 9, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(13, 9, 9, 0.2) 0%, rgba(13, 9, 9, 0.92) 100%);
}

.billboard-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: max(16px, calc((100% - var(--max)) / 2));
  text-align: left;
}

.billboard-content h1 {
  max-width: 18ch;
}

.billboard-content .lede {
  max-width: 46ch;
}

.featured-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 28px;
  padding-bottom: 6px;
}

.featured-rail button {
  flex: 0 0 92px;
  height: 128px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1112;
  cursor: pointer;
}

.featured-rail button.on,
.featured-rail button:hover {
  border-color: #fff;
}

.featured-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-rail span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 8px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-actions {
  justify-self: end;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--card);
  color: #fff;
  border-radius: 8px;
}

.hero,
.section,
.cta-band,
.footer {
  padding: 72px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-mosaic {
  position: absolute;
  inset: -20px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  opacity: 0.34;
  z-index: 0;
  pointer-events: none;
}

.hero-mosaic span,
.hero-mosaic img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  object-fit: cover;
  background:
    linear-gradient(160deg, rgba(225, 6, 19, 0.45), rgba(20, 12, 12, 0.9) 55%, #1a1112);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 9, 9, 0.55) 0%, rgba(13, 9, 9, 0.78) 42%, rgba(13, 9, 9, 0.96) 100%),
    radial-gradient(900px 420px at 50% 20%, rgba(225, 6, 19, 0.18), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  height: 148px;
  width: auto;
  margin-bottom: 10px;
  background: transparent;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffd0d2;
  margin-bottom: 14px;
}

.kicker.pill {
  background: rgba(225, 6, 19, 0.22);
  border: 1px solid rgba(225, 6, 19, 0.45);
  border-radius: 999px;
  padding: 7px 14px;
}

.kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(225, 6, 19, 0.22);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  max-width: 16ch;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 54ch;
  margin-top: 16px;
}

.hero-content .actions {
  justify-content: center;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: filter 0.12s ease, background 0.12s ease, transform 0.12s ease;
}

.btn:hover {
  filter: brightness(1.08);
}

.btn-primary {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
  box-shadow: var(--glow);
}

.btn-play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent currentColor;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
  height: 32px;
  padding: 0 10px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: none;
}

.logo-card,
.player-card,
.card,
.plan,
.feature,
.post-card,
.app-tile,
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.logo-card,
.player-card {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.logo-card img {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  border-radius: 16px;
  background: #000;
  object-fit: contain;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.trust {
  justify-content: center;
}

.trust span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ddd;
}

.trust span::before {
  content: "✓ ";
  color: var(--red-2);
}

.section-head {
  max-width: 62ch;
  margin-bottom: 32px;
}

.section h2,
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.section .body,
.prose p,
.prose li {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.02rem;
}

.split,
.renew {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.renew {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card,
.plan,
.feature,
.post-card {
  padding: 22px;
}

.num {
  font-family: "Bebas Neue", sans-serif;
  color: var(--red-2);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.rail-block + .rail-block {
  margin-top: 28px;
}

.rail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.rail-head h3 {
  font-size: 1.7rem;
}

.rail-head a {
  color: #ffd0d2;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 150px);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.rail .poster {
  scroll-snap-align: start;
}

.rail .poster .hint {
  display: block;
  padding: 0 8px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.search-box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 8px;
  margin-top: 12px;
}

.search-box input {
  flex: 1;
  min-width: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

input[type="search"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"] {
  flex: 1;
  background: #100b0b;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
}

input:focus {
  border-color: rgba(225, 6, 19, 0.7);
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.bullets li {
  padding-left: 26px;
  position: relative;
  margin: 9px 0;
  font-weight: 600;
}

.bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.plan .meta {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  margin-top: 6px;
}

.price span {
  font-size: 1rem;
  margin-left: 4px;
  color: var(--muted);
}

.plan.highlight {
  background: linear-gradient(180deg, #2a1014, #1a1112);
  border-color: rgba(225, 6, 19, 0.55);
}

.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  margin: 10px 0 14px;
}

.badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  font-weight: 800;
  padding: 16px 18px;
  cursor: pointer;
}

.faq-item .answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.open .answer {
  display: block;
}

.cta-band {
  background: linear-gradient(180deg, #160508, #0b0808);
  border-top: 1px solid rgba(225, 6, 19, 0.28);
  border-bottom: 1px solid var(--line);
}

.alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.muted {
  color: var(--muted);
}

.footer {
  background: #090606;
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer a {
  text-decoration: none;
  font-weight: 700;
  color: #d7d0d0;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.footer li {
  margin: 8px 0;
}

.prose {
  max-width: 72ch;
}

.prose h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 12px;
}

.prose h2 {
  margin-top: 32px;
}

.prose a {
  color: #ffd0d2;
}

.crumbs {
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--muted);
}

.crumbs a {
  text-decoration: none;
  color: #fff;
}

.notice {
  background: rgba(225, 6, 19, 0.1);
  border: 1px solid rgba(225, 6, 19, 0.28);
  border-radius: 10px;
  padding: 12px 14px;
  color: #ffd6d8;
  margin-top: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 16px;
}

.modal.open {
  display: flex;
}

.modal-card {
  width: min(460px, 100%);
  background: #161010;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.qr {
  width: 220px;
  height: 220px;
  margin: 16px auto;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
}

.player-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  min-height: 70vh;
}

.cat-list,
.poster-grid {
  display: grid;
  gap: 8px;
}

.poster-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.poster {
  background: #151010;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  color: inherit;
  padding: 0;
  text-decoration: none;
  display: block;
  width: 100%;
  font: inherit;
}

.poster img,
.poster-ph {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background:
    linear-gradient(160deg, rgba(225, 6, 19, 0.45), rgba(20, 12, 12, 0.9) 55%, #1a1112);
  display: block;
}

.cat-list .btn {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  font-size: 0.82rem;
}

.poster span {
  display: block;
  padding: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.video-wrap {
  background: #000;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.video-wrap video {
  width: 100%;
  height: 100%;
}

.login-card {
  max-width: 420px;
  margin: 40px auto;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
  text-decoration: none;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .nav,
  .nav-actions {
    display: none;
  }

  .nav.open,
  .nav-actions.open {
    display: flex;
  }

  .nav.open {
    position: absolute;
    inset: calc(var(--header) + 8px) 0 auto;
    background: #141010;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 50;
  }

  .nav.open .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

@media (max-width: 1080px) {
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .split,
  .posts,
  .footer-grid,
  .features,
  .renew,
  .player-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .billboard {
    min-height: 78vh;
    align-items: flex-end;
    padding-top: 96px;
  }

  .billboard-content {
    margin-left: 16px;
  }

  .hero-logo {
    height: 104px;
  }

  .hero-mosaic {
    grid-template-columns: repeat(4, 1fr);
  }

  .search-box {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .plans {
    grid-template-columns: 1fr;
  }
}
