* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark: #0a0a0a;
  --dark-2: #141414;
  --card: #1b1b1b;
  --card-hover: #232323;

  --red: #e50914;
  --red-dark: #b20710;
  --red-light: #ff4d4d;

  --yellow: #f8dd2e;

  --text: #ffffff;
  --text-secondary: #b3b3b3;

  --border: #2d2d2d;

  --white: #ffffff;
  --green: #16a34a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.6;
  color: var(--text);
  background: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
}

.brand-i {
  color: white;
}

.brand-sub {
  color: var(--yellow);
}

/* HEADER */

.site-header {
  position: relative;
  color: white;
  background: #0a0a0a;
}

.site-header::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 220px;

  background: linear-gradient(
    transparent,
    #0a0a0a
  );

  pointer-events: none;
}

.navbar {
  width: min(1400px, 95%);
  margin: 0 auto;
  padding: 24px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 10;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
}

.logo .brand-sub {
  text-shadow:
    0 0 8px rgba(248,221,46,0.45),
    0 0 18px rgba(248,221,46,0.25);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: white;
  font-weight: 700;
  transition: .3s;
}

.nav-links a:hover {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}

/* HERO */

.hero {
  width: min(1400px, 95%);
  margin: 0 auto;

  min-height: 780px;

  padding: 95px 60px 170px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;

  position: relative;
  z-index: 5;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
}

.eyebrow {
  color: #ff7b7b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;

  text-shadow:
    0 3px 10px rgba(0,0,0,.8),
    0 10px 40px rgba(0,0,0,.8);
}

.hero-text {
  color: rgba(255,255,255,.86);
  font-size: 1.2rem;
  max-width: 720px;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;

  color: #f3f4f6;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 26px;

  border-radius: 12px;

  font-weight: 800;

  transition: .3s;
}

.btn.primary {
  background: var(--red);
  color: white;

  box-shadow:
    0 8px 25px rgba(229,9,20,.35);
}

.btn.primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  background: rgba(0,0,0,.4);
  color: white;
  border: 1px solid rgba(255,255,255,.15);
}

.btn.secondary:hover {
  background: rgba(255,255,255,.08);
}

.btn.full {
  width: 100%;
  margin-top: 16px;
}

/* SECTIONS */

.section {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.section-heading p {
  color: var(--text-secondary);
}

h2 {
  font-size: clamp(2rem,4vw,4rem);
  margin-bottom: 18px;
}

/* STATS */

.stats {
  padding-top: 40px;
}

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

.stats-grid div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--yellow);
  font-size: 2rem;
  margin-bottom: 8px;
}

.stats-grid span {
  color: var(--text-secondary);
}

/* GRIDS */

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

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

/* CARDS */

.course-card,
.price-card,
details {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 20px;

  transition: .3s;
}

.course-card:hover,
.price-card:hover {
  background: var(--card-hover);
  transform: translateY(-5px);
}

.course-tag {
  display: inline-block;

  background: rgba(229,9,20,.15);

  color: #ff6b6b;

  padding: 6px 12px;

  border-radius: 999px;

  font-size: .75rem;

  font-weight: 800;

  margin-bottom: 14px;
}

.course-card p,
.price-card p,
.split p,
.contact p,
details p {
  color: var(--text-secondary);
}

.course-card h3,
.price-card h3 {
  margin-bottom: 12px;
}

/* BENEFITS */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list div {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 14px;

  padding: 18px;

  font-weight: 700;
}

/* PRICING */

.price-card {
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--red);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;

  background: rgba(248,221,46,.15);

  color: var(--yellow);

  padding: 5px 10px;

  border-radius: 999px;

  font-size: .75rem;

  font-weight: 800;
}

.price {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.price span {
  color: var(--text-secondary);
  font-size: 1rem;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.price-card li::before {
  content: "✓ ";
  color: #22c55e;
  font-weight: 900;
}

/* FAQ */

.faq {
  max-width: 900px;
}

details {
  margin-bottom: 14px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin-top: 12px;
}

/* CONTACT */

.contact {
  background:
    linear-gradient(
      135deg,
      #1a0000,
      #300000
    );

  border-radius: 28px;

  padding: 50px;

  margin-bottom: 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 40px;

  color: var(--text-secondary);

  border-top: 1px solid var(--border);

  background: #000;
}

/* MOBILE */

@media (max-width: 900px) {

  .hero,
  .split,
  .contact {
    display: grid;
    grid-template-columns: 1fr;
  }

  .course-grid,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 100px 30px 180px;
  }
}

@media (max-width: 640px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;

    position: absolute;

    top: 70px;
    left: 4%;
    right: 4%;

    flex-direction: column;

    background: #111;

    border: 1px solid var(--border);

    padding: 20px;

    border-radius: 16px;
  }

  .nav-links.show {
    display: flex;
  }

  .course-grid,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 80px 20px 150px;
  }

  h1 {
    font-size: 3.2rem;
  }
}

/* UPDATED HERO INTRO */
.hero-intro-card {
  display: inline-block;
  padding: 16px 18px;
  margin-bottom: 30px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(2px);
}

/* MOVING PROGRAM ROW */
.logo-marquee {
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: 18px;
  padding: 18px 0;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: logoScroll 26s linear infinite;
}

.channel-logo {
  min-width: 120px;
  height: 70px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px;

  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);

  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.channel-logo img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  display: block;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* PRICING CLEANUP */
.price-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.price-card .btn.full {
  margin-top: auto;
  padding: 12px 14px;
  gap: 8px;
  font-size: .92rem;
}
.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: .85rem;
}
.popular {
  top: 14px;
  right: 14px;
}

/* TERMS */
.terms-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
}
.terms-box h3 {
  margin: 20px 0 8px;
}
.terms-box h3:first-child {
  margin-top: 0;
}
.terms-box p {
  color: var(--text-secondary);
}
.legal-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(248,221,46,.08);
  border: 1px solid rgba(248,221,46,.18);
}
footer a { color: var(--yellow); }

@media (max-width: 900px) {
  .site-header { background-size: cover; }
}

.hero-showcase {
  margin-top: 45px;
  text-align: center;
}

.hero-showcase img {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.hero-showcase-text {
  margin-top: 18px;
}

.hero-showcase-text h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.hero-showcase-text p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}

.world-cup-banner {
  width: min(55%, 280px);
  margin: 22px auto 0;
  border-radius: 22px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.45);
}

.world-cup-banner img {
  width: 100%;
  display: block;
  height: auto;
}

@media (max-width: 640px) {
  .world-cup-banner {
    margin-top: 16px;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .channel-logo {
    min-width: 92px;
    height: 56px;
    padding: 9px;
    border-radius: 12px;
  }

  .channel-logo img {
    max-height: 34px;
  }

  .logo-track {
    gap: 12px;
  }

  .logo-marquee {
    padding: 12px 0;
  }
}

/* BIGGER MOVING IMAGE ROW AFTER WORLD CUP */

.poster-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 28px;
  padding: 18px 0;

  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.poster-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: posterScroll 32s linear infinite;
}


.poster-card {
  min-width: 230px;
  height: 400px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  border-radius: 18px;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);

  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* opposite direction from the channel logos */
@keyframes posterScroll {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 640px) {
  .poster-marquee {
    margin-top: 22px;
    padding: 14px 0;
    border-radius: 18px;
  }

  .poster-track {
    gap: 12px;
    animation-duration: 26s;
  }

  .poster-card {
    min-width: 175px;
    height: 100px;
    border-radius: 14px;
  }
}

