:root {
  color-scheme: dark;
  --bg: #101411;
  --ink: #f7f4ea;
  --muted: #b9c0b3;
  --soft: #e7e0cf;
  --panel: #171d18;
  --panel-2: #20281f;
  --panel-3: #f2efe4;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(16, 20, 17, 0.15);
  --green: #32d26b;
  --green-2: #15803d;
  --red: #e5484d;
  --gold: #f4c96b;
  --cyan: #6dd5d8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --app-bg: #f5f7fb;
  --app-surface: #ffffff;
  --app-ink: #122018;
  --app-muted: #647067;
  --app-line: #dce4de;
  --app-green: #0a7f44;
  --app-blue: #1868db;
  --app-gold: #f2b84b;
  --app-red: #d83b45;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.football-app {
  background: var(--app-bg);
  color: var(--app-ink);
}

.football-app a {
  color: inherit;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--app-line);
  backdrop-filter: blur(18px);
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.app-brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--app-green);
  color: white;
  font-size: 14px;
}

.app-nav {
  justify-self: center;
  display: flex;
  gap: 22px;
  color: var(--app-muted);
  font-size: 14px;
  font-weight: 800;
}

.app-nav a:hover {
  color: var(--app-ink);
}

.app-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 16px;
  background: var(--app-green);
  color: white;
  font-weight: 950;
}

.app-cta.large {
  min-height: 52px;
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 520px);
  gap: clamp(24px, 6vw, 78px);
  align-items: end;
  padding: 84px clamp(18px, 6vw, 80px) 42px;
  background:
    linear-gradient(135deg, rgba(10, 127, 68, 0.95), rgba(18, 32, 24, 0.9)),
    url("assets/hero-mundial-apuestas.png") center / cover;
  color: white;
}

.app-kicker {
  margin: 0 0 12px;
  color: var(--app-gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
}

.app-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-search-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search-panel label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.hero-search-panel input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 0 14px;
  background: white;
  color: var(--app-ink);
}

.search-suggestions {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.search-suggestions.visible {
  display: grid;
}

.search-suggestion {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--app-ink);
  cursor: pointer;
  text-align: left;
}

.search-suggestion strong {
  font-size: 14px;
}

.search-suggestion span {
  color: var(--app-muted);
  font-size: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.hero-stats div {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 26px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.league-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px clamp(18px, 6vw, 80px);
  background: var(--app-surface);
  border-bottom: 1px solid var(--app-line);
}

.league-tab {
  min-height: 40px;
  white-space: nowrap;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  padding: 8px 12px;
  background: white;
  color: var(--app-muted);
  cursor: pointer;
  font-weight: 950;
}

.league-tab.active {
  background: var(--app-ink);
  border-color: var(--app-ink);
  color: white;
}

.competition-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 80px);
}

.competition-panel,
.match-board,
.tables-section,
.scorers-section,
.monetize-strip {
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: var(--app-surface);
  box-shadow: 0 12px 30px rgba(18, 32, 24, 0.08);
}

.competition-panel {
  align-self: start;
  position: sticky;
  top: 86px;
  padding: 22px;
}

.competition-panel .app-kicker,
.match-board .app-kicker,
.tables-section .app-kicker,
.scorers-section .app-kicker,
.monetize-strip .app-kicker {
  color: var(--app-green);
}

.competition-panel h2,
.board-heading h2,
.monetize-strip h2 {
  color: var(--app-ink);
}

.competition-panel p,
.board-heading p,
.monetize-strip p,
.data-note span {
  color: var(--app-muted);
}

.selection-chip {
  display: none;
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #eef7f1;
  color: var(--app-green);
  font-weight: 950;
}

.selection-chip.visible {
  display: block;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.quick-filters button {
  min-height: 34px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  padding: 7px 10px;
  background: #eef7f1;
  color: var(--app-green);
  cursor: pointer;
  font-weight: 900;
}

.data-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: #fff7e8;
}

.data-note strong {
  color: #8a5a00;
}

.team-profile {
  display: none;
  margin: 14px 0;
  overflow: hidden;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: white;
}

.team-profile.visible {
  display: block;
}

.team-photo {
  display: flex;
  min-height: 150px;
  align-items: end;
  gap: 14px;
  padding: 16px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--team-primary) 84%, black), color-mix(in srgb, var(--team-secondary) 76%, white)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.18) 18px 22px);
}

.team-crest {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border: 4px solid var(--team-secondary);
  border-radius: 50%;
  background: var(--team-primary);
  color: var(--team-secondary);
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.team-photo span,
.team-photo strong {
  display: block;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.team-photo span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-photo strong {
  font-size: 30px;
  line-height: 1;
}

.team-profile > p {
  margin: 0;
  padding: 14px;
  color: var(--app-muted);
}

.key-player {
  display: grid;
  gap: 4px;
  margin: 0 14px 14px;
  padding: 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--team-primary) 12%, white);
}

.key-player span {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.key-player strong {
  color: var(--team-primary);
  font-size: 22px;
}

.player-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 14px 14px;
}

.player-strip span {
  min-height: 46px;
  border-radius: 8px;
  padding: 10px;
  background: #f3f6f4;
  color: var(--app-ink);
  font-size: 13px;
  font-weight: 850;
}

.team-next {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--app-line);
}

.team-next strong {
  color: var(--app-ink);
}

.team-next a,
.team-next span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
  padding: 10px;
  background: #f7faf8;
  color: var(--app-ink);
  font-size: 13px;
  font-weight: 850;
}

.team-next small {
  color: var(--app-muted);
}

.team-ref {
  display: flex;
  justify-content: center;
  margin: 0 14px 14px;
  border-radius: 8px;
  padding: 12px;
  background: var(--team-primary);
  color: var(--team-secondary);
  font-weight: 950;
}

.match-board {
  padding: 22px;
}

.board-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.board-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.board-tools select {
  min-height: 42px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  padding: 0 10px;
  background: white;
  color: var(--app-ink);
}

.app-match-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.app-match-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #fbfdfb;
}

.app-match-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--app-muted);
  font-size: 13px;
  font-weight: 900;
}

.app-match-card h3 {
  color: var(--app-ink);
}

.app-match-card h3 span {
  color: var(--app-muted);
  font-size: 16px;
}

.app-match-card p {
  color: var(--app-muted);
}

.match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.match-actions a {
  border-radius: 8px;
  padding: 9px 10px;
  background: #eef3ff;
  color: var(--app-blue);
  font-size: 13px;
  font-weight: 950;
}

.match-actions a:last-child {
  background: var(--app-green);
  color: white;
}

.tables-section,
.scorers-section,
.monetize-strip {
  margin: 0 clamp(18px, 6vw, 80px) 24px;
  padding: 22px;
}

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

.standing-card,
.scorer-card {
  overflow: hidden;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: white;
}

.standing-card h3,
.scorer-card h3 {
  margin: 0;
  padding: 14px;
  background: #eef7f1;
  color: var(--app-green);
}

.standing-card table,
.scorer-card table {
  width: 100%;
  border-collapse: collapse;
}

.standing-card th,
.standing-card td,
.scorer-card th,
.scorer-card td {
  padding: 10px 12px;
  border-top: 1px solid var(--app-line);
  text-align: left;
  font-size: 14px;
}

.standing-card th,
.scorer-card th {
  color: var(--app-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.scorers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.monetize-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  background: #122018;
  color: white;
}

.monetize-strip h2 {
  color: white;
}

.monetize-strip p {
  color: rgba(255, 255, 255, 0.74);
}

.app-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 26px clamp(18px, 6vw, 80px);
  color: var(--app-muted);
}

.app-footer strong {
  color: var(--app-ink);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(16, 20, 17, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #fff 46%, var(--red));
  color: #0b100d;
  font-size: 13px;
  font-weight: 950;
}

nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover,
.header-cta:hover {
  color: var(--ink);
}

.header-cta,
.text-link {
  color: var(--green);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 80px) 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 20, 17, 0.98) 0%, rgba(16, 20, 17, 0.82) 42%, rgba(16, 20, 17, 0.12) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(16, 20, 17, 0) 30%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 760px) minmax(240px, 340px);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
  min-height: calc(94vh - 192px);
}

.hero-content {
  max-width: 760px;
}

.pill,
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7.7vw, 92px);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.age-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 950;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease;
}

.button:hover,
.filter-button:hover,
.modal-close:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green);
  color: #07110b;
}

.button.calendar-button {
  background: var(--gold);
  color: #151009;
}

.button.secondary,
.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: var(--ink);
}

.button.card-button {
  width: 100%;
  margin-top: auto;
  background: var(--ink);
  color: #0b100d;
}

.microcopy {
  margin-top: 18px;
  color: #cbd3c7;
  font-size: 13px;
}

.match-widget {
  align-self: center;
  padding: 24px;
  background: rgba(10, 14, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.widget-kicker,
.match-widget span {
  color: var(--muted);
}

.match-widget strong {
  display: block;
  color: var(--green);
  font-size: clamp(62px, 9vw, 116px);
  line-height: 0.9;
}

.widget-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.pulse-line {
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}

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

.signal-strip div {
  min-height: 150px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #0e120f;
}

.signal-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 950;
}

.signal-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.signal-strip p,
.intro > p,
.section-heading p,
.book-card p,
.book-card dd,
.bonus-panel p,
.bonus-checklist p,
.preview-grid p,
.tool-copy p,
.academy-list p,
.sports-ads p,
.social-engine p,
.lead-band p,
.faq p,
.site-footer p,
.article-copy p,
.article-copy li {
  color: var(--muted);
}

.section {
  padding: 92px clamp(18px, 6vw, 80px);
}

.intro,
.tool-section,
.academy,
.social-engine,
.lead-band,
.article-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(280px, 1fr);
  gap: clamp(28px, 8vw, 92px);
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.filter-button.active {
  background: var(--green);
  border-color: var(--green);
  color: #07110b;
}

.book-list,
.preview-grid,
.academy-list,
.ad-market,
.article-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.book-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.book-card.hidden {
  display: none;
}

.book-card.featured {
  background: linear-gradient(180deg, #1d3323, var(--panel));
  border-color: rgba(50, 210, 107, 0.5);
}

.book-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.rank,
.score,
.check {
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 950;
}

.rank {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.score {
  width: 58px;
  height: 58px;
  background: var(--green);
  color: #07110b;
}

.tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
}

.metric-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.metric-list dt {
  color: var(--muted);
}

.metric-list dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.conversion,
.match-plan {
  background: var(--panel-3);
  color: #111512;
}

.conversion {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 8vw, 92px);
  align-items: center;
}

.conversion .eyebrow,
.match-plan .eyebrow {
  color: var(--green-2);
}

.bonus-panel p,
.bonus-checklist p {
  color: #4b5549;
}

.bonus-checklist {
  display: grid;
  gap: 14px;
}

.bonus-checklist div,
.preview-grid article,
.academy-list article,
.article-cards article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.bonus-checklist div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  background: #fffdf2;
  border-color: var(--dark-line);
}

.bonus-checklist strong,
.bonus-checklist p {
  grid-column: 2;
}

.check {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  background: var(--green);
  color: #07110b;
}

.preview-grid article,
.academy-list article,
.article-cards article {
  min-height: 230px;
}

.preview-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-grid a,
.article-cards a {
  color: var(--green);
  font-weight: 950;
}

.limit-tool {
  display: grid;
  gap: 24px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.limit-tool label {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-weight: 900;
}

input[type="range"] {
  accent-color: var(--green);
}

.result-box {
  padding: 22px;
  background: #0c100d;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-box span,
.result-box small {
  display: block;
  color: var(--muted);
}

.result-box strong {
  display: block;
  margin: 4px 0;
  color: var(--green);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
}

.academy {
  background: #0c100d;
}

.social-engine {
  align-items: center;
  background: #0c100d;
}

.social-funnel {
  display: grid;
  gap: 12px;
}

.social-funnel article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.social-funnel span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #1877f2;
  color: white;
  font-weight: 950;
}

.social-funnel strong {
  font-size: 20px;
}

.social-funnel p {
  margin-bottom: 0;
}

.sports-ads {
  background:
    linear-gradient(180deg, rgba(50, 210, 107, 0.08), rgba(16, 20, 17, 0)),
    var(--bg);
}

.ad-market {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
}

.ad-slot {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.ad-slot.premium {
  background:
    linear-gradient(180deg, rgba(244, 201, 107, 0.18), rgba(23, 29, 24, 0.96)),
    var(--panel);
  border-color: rgba(244, 201, 107, 0.44);
}

.ad-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-slot strong {
  display: block;
  margin: auto 0 18px;
  color: var(--green);
  font-size: 20px;
}

.lead-band {
  align-items: center;
  background: var(--panel-2);
  border-block: 1px solid var(--line);
}

.calendar-hero {
  background:
    linear-gradient(90deg, rgba(16, 20, 17, 0.96), rgba(16, 20, 17, 0.62)),
    url("assets/hero-mundial-apuestas.png") center / cover;
}

.calendar-feature {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 6vw, 80px);
  background: var(--panel-3);
  color: #101411;
  border-bottom: 1px solid var(--dark-line);
}

.calendar-feature .eyebrow {
  color: var(--green-2);
}

.calendar-feature h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.calendar-feature p {
  margin-bottom: 0;
  color: #4b5549;
}

.calendar-app {
  background: #0c100d;
}

.calendar-controls {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.calendar-controls label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.calendar-controls input,
.calendar-controls select {
  min-height: 50px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.calendar-controls option {
  color: #101411;
}

.calendar-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.calendar-summary strong {
  color: var(--green);
  font-size: 22px;
}

.calendar-summary span {
  color: var(--muted);
}

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

.match-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.match-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.match-card-top span,
.match-card-top strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-card dl {
  display: grid;
  gap: 8px;
  margin: 8px 0 18px;
}

.match-card dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.match-card dt {
  color: var(--muted);
}

.match-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.match-card p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.lead-form span {
  grid-column: 1 / -1;
  min-height: 20px;
  color: var(--green);
  font-size: 14px;
}

.faq {
  max-width: 980px;
  margin-inline: auto;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 20px;
  font-weight: 950;
}

details p {
  padding-bottom: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 36px clamp(18px, 6vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.age-gate,
.affiliate-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(5, 7, 5, 0.78);
  backdrop-filter: blur(18px);
}

.age-gate.hidden,
.affiliate-modal.hidden {
  display: none;
}

.age-panel,
.modal-panel {
  position: relative;
  width: min(100%, 560px);
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.age-panel p,
.modal-panel p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.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;
}

.article-page .site-header {
  position: sticky;
}

.article-hero {
  padding: 104px clamp(18px, 6vw, 80px) 62px;
  background:
    linear-gradient(90deg, rgba(16, 20, 17, 0.96), rgba(16, 20, 17, 0.68)),
    url("assets/hero-mundial-apuestas.png") center / cover;
}

.article-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
}

.article-copy {
  max-width: 960px;
  margin-inline: auto;
  padding: 76px clamp(18px, 6vw, 80px);
}

.article-copy h2 {
  margin-top: 42px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.article-copy ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

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

.post-calendar {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.post-calendar article {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.post-calendar span {
  color: var(--gold);
  font-weight: 950;
}

.post-calendar p {
  margin: 0;
}

.post-calendar a {
  color: var(--green);
  font-weight: 950;
}

.article-cta {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

  .app-nav {
    display: none;
  }

  .app-hero,
  .competition-shell,
  .monetize-strip {
    grid-template-columns: 1fr;
  }

  .competition-panel {
    position: static;
  }

  .app-match-grid,
  .standings-grid {
    grid-template-columns: 1fr;
  }

  .board-heading {
    display: grid;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-grid,
  .signal-strip,
  .intro,
  .conversion,
  .tool-section,
  .academy,
  .social-engine,
  .lead-band,
  .article-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: center;
  }

  .section-heading.split {
    display: grid;
  }

  .book-list,
  .preview-grid,
  .academy-list,
  .ad-market,
  .match-grid,
  .article-cards {
    grid-template-columns: 1fr;
  }

  .book-card,
  .preview-grid article,
  .academy-list article,
  .ad-slot {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .app-brand strong {
    display: none;
  }

  .app-hero h1 {
    font-size: 38px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .search-suggestions {
    grid-template-columns: 1fr;
  }

  .board-tools {
    display: grid;
  }

  .board-tools select,
  .app-cta {
    width: 100%;
  }

  .match-actions {
    display: grid;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    font-size: 14px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-grid {
    min-height: calc(90vh - 192px);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 20, 17, 0.96) 0%, rgba(16, 20, 17, 0.78) 62%, var(--bg) 100%),
      rgba(16, 20, 17, 0.2);
  }

  h1 {
    font-size: 42px;
  }

  .section {
    padding-block: 66px;
  }

  .hero-actions,
  .age-actions,
  .modal-actions,
  .inline-actions,
  .lead-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .post-calendar article {
    grid-template-columns: 1fr;
  }

  .calendar-controls {
    grid-template-columns: 1fr;
  }

  .calendar-feature {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
