:root {
  --grass: #0b241b;
  --grass-2: #153d2d;
  --lime: #d6ff3f;
  --gold: #f5c451;
  --red: #dc4b3e;
  --blue: #2f7df4;
  --paper: #f7f3ea;
  --paper-2: #ebe3d4;
  --ink: #111713;
  --muted: #617067;
  --line: rgba(17, 23, 19, 0.13);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 36, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  background:
    linear-gradient(90deg, rgba(11, 36, 27, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(11, 36, 27, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, #fffaf0 44%, var(--paper-2) 100%);
  background-size: 32px 32px, 32px 32px, auto;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: rgba(11, 36, 27, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid rgba(214, 255, 63, 0.38);
  border-radius: 12px;
  color: var(--grass);
  background: var(--lime);
  font-family: "Archivo", sans-serif;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.top-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.top-nav a,
.header-action,
.language-switch button {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.top-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.header-action {
  color: var(--grass);
  background: var(--lime);
}

.header-tools,
.language-switch {
  display: flex;
  align-items: center;
}

.header-tools {
  gap: 10px;
}

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch button {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--grass);
  background: var(--lime);
}

main {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 220px);
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 6vw, 72px);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 19, 13, 0.92) 0%, rgba(5, 19, 13, 0.74) 42%, rgba(5, 19, 13, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 19, 13, 0.75) 0%, transparent 46%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 820px;
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow,
.world-cup .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(3.4rem, 6.6vw, 6.2rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.8rem);
  font-weight: 900;
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(720px, 100%);
  margin-top: 22px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-search input,
.inline-form input {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  outline: none;
}

.hero-search input {
  color: var(--white);
  background: transparent;
  padding: 0 14px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.hero-search button,
.inline-form button,
.solid-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  color: var(--grass);
  background: var(--lime);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

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

.hero-actions a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.match-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(11, 36, 27, 0.76);
  backdrop-filter: blur(18px);
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(220, 75, 62, 0.16);
}

.match-card strong {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
}

.match-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.match-card a {
  color: var(--lime);
  font-weight: 900;
}

.pulse-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.pulse-strip article {
  min-height: 126px;
  padding: 24px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.pulse-strip strong,
.pulse-strip span {
  display: block;
}

.pulse-strip strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.pulse-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.section-grid,
.content-band,
.world-cup,
.growth-board,
.forms-row,
.site-footer {
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.feature,
.channel-card,
.board-column,
.signup-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.feature {
  min-height: 250px;
  padding: 24px;
}

.feature span {
  color: var(--red);
  font-weight: 900;
}

.feature h3 {
  margin-top: 44px;
}

.feature p,
.world-cup-copy p,
.timeline p,
.board-column li,
.signup-card p,
.site-footer p,
.best-for {
  color: var(--muted);
  line-height: 1.65;
}

.content-band {
  background: #fffbf2;
  border-block: 1px solid var(--line);
}

.band-head {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.filter-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.filter-button.is-active {
  color: var(--grass);
  border-color: transparent;
  background: var(--lime);
}

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

.channel-card {
  overflow: hidden;
}

.channel-card[hidden] {
  display: none;
}

.channel-visual {
  display: grid;
  min-height: 172px;
  place-items: center;
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
}

.visual-caze {
  background: linear-gradient(135deg, #ffcc33, #19a34a 68%, #0b241b);
}

.visual-laliga {
  background: linear-gradient(135deg, #f33b44, #ffb000 45%, #3157ff);
}

.visual-peleja {
  background:
    linear-gradient(45deg, rgba(214, 255, 63, 0.2) 25%, transparent 25%),
    #111713;
  background-size: 22px 22px;
}

.visual-maldini {
  background: linear-gradient(135deg, #1b2430, #2f7df4);
}

.visual-desimpedidos {
  background: linear-gradient(135deg, #193f22, #57b547);
}

.visual-copa {
  background: linear-gradient(135deg, #0b241b, #dc4b3e 54%, #f5c451);
}

.channel-copy {
  padding: 20px;
}

.channel-copy p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.best-for {
  display: block;
  margin: 12px 0 18px;
}

.channel-copy a {
  color: var(--grass);
  font-weight: 900;
}

.empty-results {
  margin: 24px 0 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
}

.world-cup {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 36, 27, 0.94), rgba(11, 36, 27, 0.76)),
    url("https://images.unsplash.com/photo-1431324155629-1a6deb1dec8d?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.world-cup-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.timeline span {
  color: var(--lime);
  font-weight: 900;
}

.timeline h3 {
  margin-top: 10px;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.growth-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.board-column {
  padding: 24px;
}

.board-column h2,
.signup-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.board-column ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.board-column li + li {
  margin-top: 10px;
}

.forms-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: #fffbf2;
}

.signup-card {
  padding: clamp(22px, 4vw, 36px);
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 20px;
}

.inline-form input {
  border: 1px solid var(--line);
  padding: 0 14px;
  background: var(--white);
}

.form-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  background: var(--grass);
}

.site-footer strong {
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 1.3rem;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  font-weight: 900;
  text-decoration: none;
}

.mobile-tabs {
  display: none;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  display: grid;
  gap: 14px;
  padding: 92px min(7vw, 96px) 48px;
  color: var(--white);
  background: var(--grass);
}

.legal-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 9vw, 6rem);
}

.legal-hero p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 20px;
  max-width: 920px;
  padding: 52px min(7vw, 96px) 80px;
}

.legal-content article {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 10px;
  color: var(--grass);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content a {
  color: var(--grass);
  font-weight: 900;
}

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

  .top-nav {
    display: none;
  }

  .hero,
  .section-grid,
  .world-cup,
  .growth-board,
  .forms-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 180px);
  }

  .feature-grid,
  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 62px;
  }

  .site-header {
    position: relative;
    padding: 14px 16px;
  }

  .header-action {
    display: none;
  }

  .language-switch button {
    min-height: 34px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 36px 16px 112px;
    min-height: calc(100svh - 126px);
    align-items: start;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(2.85rem, 14vw, 4.15rem);
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-search input,
  .inline-form input,
  .hero-search button,
  .inline-form button {
    min-height: 48px;
  }

  .hero-search,
  .inline-form {
    grid-template-columns: 1fr;
  }

  .pulse-strip,
  .feature-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .pulse-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .band-head {
    display: grid;
    align-items: start;
  }

  .filter-tools {
    justify-content: flex-start;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .mobile-tabs {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(11, 36, 27, 0.94);
    box-shadow: 0 18px 42px rgba(11, 36, 27, 0.28);
    backdrop-filter: blur(16px);
  }

  .mobile-tabs a {
    padding: 10px 4px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
  }

  .mobile-tabs a:focus,
  .mobile-tabs a:hover {
    color: var(--grass);
    background: var(--lime);
  }
}
