:root {
  --bg: #eef4fb;
  --bg-deep: #0c1830;
  --paper: rgba(245, 249, 255, 0.88);
  --paper-strong: rgba(252, 255, 255, 0.97);
  --line: rgba(12, 24, 48, 0.12);
  --text: #15223b;
  --muted: #66748e;
  --accent: #2b82ff;
  --accent-deep: #0f4ea8;
  --accent-soft: #d8e8ff;
  --success: #1f9d6f;
  --danger: #d84c61;
  --draw: #6e7ea4;
  --shadow: 0 22px 52px rgba(12, 24, 48, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --mobile-edge-gap: 5px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(43, 130, 255, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(12, 24, 48, 0.12), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 90%);
}

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

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

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

.page-shell > *,
.page-hero > *,
.hero-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.hero-stack > *,
.metric-strip > *,
.faq-grid > *,
.fc-home-hero > *,
.fc-news-layout > *,
.fc-board-layout > *,
.fc-score-strip > * {
  min-width: 0;
}

.site-shell {
  width: min(1540px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 48px;
  position: relative;
}

.site-header,
.site-footer,
.surface,
.hero-panel,
.main-nav,
.nav-toggle {
  backdrop-filter: blur(18px);
}

.site-header {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(249, 252, 247, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand-block {
  display: flex;
  gap: 16px;
  align-items: center;
}

.brand-mark {
  width: 76px;
  height: 76px;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  box-shadow: none;
}

.brand-mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.site-header h1,
.page-hero h2,
.section-head h2,
.metric-card__value,
.hero-panel__row strong {
  font-family: "Avenir Next Condensed", "Segoe UI Condensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  letter-spacing: 0.01em;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 800;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  justify-self: end;
  min-width: 0;
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.lang-switch__link {
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.lang-switch__link.is-active {
  background: var(--accent-deep);
  color: #ffffff;
}

.main-nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
  white-space: nowrap;
  font-size: 0.94rem;
}

.main-nav__link:hover,
.main-nav__link.is-active {
  background: var(--accent-deep);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  color: transparent;
  position: relative;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-deep);
  transform: translateX(-50%);
}

.nav-toggle::before {
  top: 17px;
  box-shadow: 0 6px 0 var(--accent-deep);
}

.nav-toggle::after {
  top: 29px;
}

.page-shell {
  margin-top: 24px;
  display: grid;
  gap: 22px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.page-hero__copy,
.hero-panel,
.surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.page-hero__copy {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(120deg, rgba(248, 252, 255, 0.48), rgba(255, 255, 255, 0.28)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    var(--page-hero-cover, url('./hero111.jpg')) center/cover no-repeat;
}

.page-hero__copy > * {
  position: relative;
  z-index: 1;
}

.page-hero__copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right center, rgba(43, 130, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  pointer-events: none;
}

.page-hero__copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.95;
  max-width: 12ch;
}

.page-hero__copy p {
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.65;
}

.hero-panel {
  padding: 24px;
  background: linear-gradient(180deg, var(--bg-deep), var(--accent-deep));
  color: #ffffff;
  display: grid;
  gap: 14px;
}

.hero-panel__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-panel__row span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel__row strong {
  max-width: 18ch;
  text-align: right;
  font-size: 1.08rem;
}

.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.hero-stack,
.metric-strip,
.faq-grid,
.fc-home-hero,
.fc-news-layout,
.fc-board-layout,
.fc-score-strip {
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
}

.hero-stack {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

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

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

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

.surface {
  padding: 26px;
  background: var(--paper-strong);
}

.surface--hero {
  background:
    linear-gradient(145deg, var(--bg-deep), var(--accent-deep)),
    radial-gradient(circle at top right, var(--accent-soft), transparent 30%);
  color: #ffffff;
}

.surface--hero .eyebrow,
.surface--hero p {
  color: rgba(255, 255, 255, 0.74);
}

.surface--soft {
  background: rgba(255, 255, 255, 0.52);
}

.fc-home-hero {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
  align-items: stretch;
}

.fc-home-hero__main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fc-home-hero__main > * {
  position: relative;
  z-index: 1;
}

.fc-home-hero__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, var(--bg-deep) 0%, var(--bg-deep) 42%, transparent 100%),
    var(--hero-cover, none) center/cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

.fc-home-hero__main::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--accent-soft), transparent 66%);
  pointer-events: none;
}

.fc-home-hero__actions,
.fc-cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.bet-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #081109;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(25, 86, 174, 0.24);
}

.cta-button--xs {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.cta-button--bet {
  background: linear-gradient(135deg, #f3d879 0%, #e7b84b 52%, #d7992b 100%);
  color: #111111;
  box-shadow: 0 14px 32px rgba(215, 153, 43, 0.28);
}

.cta-button--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.page-hero__copy .cta-button--ghost {
  color: var(--text);
  border-color: rgba(12, 24, 48, 0.12);
}

.bet-actions__hint {
  flex: 1 0 100%;
  font-size: 0.9rem;
  color: var(--muted);
}

.surface--hero .bet-actions__hint {
  color: rgba(255, 255, 255, 0.74);
}

.mobile-betbar {
  display: none;
}

.fc-home-sidebar,
.fc-board-side {
  display: grid;
  gap: 22px;
}

.fc-side-card .match-card.surface {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.match-card__actions {
  margin-top: 10px;
}

.live-strip--template {
  margin-bottom: 0;
}

.fc-score-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc-score-strip .metric-card {
  min-height: 120px;
}

.fc-news-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
}

.fc-news-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.fc-news-feature__media {
  min-height: 100%;
  background: rgba(12, 24, 48, 0.12);
}

.fc-news-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-news-feature__body {
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.fc-news-feature__body h2,
.fc-news-card__body h3,
.fc-cta-banner h2 {
  margin: 0;
  font-family: "Avenir Next Condensed", "Segoe UI Condensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  line-height: 0.96;
}

.fc-news-feature__body h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.fc-news-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.fc-news-list {
  display: grid;
  gap: 18px;
}

.fc-news-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 14px;
}

.fc-news-card__thumb {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(12, 24, 48, 0.08);
  min-height: 120px;
}

.fc-news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-news-card__body {
  display: grid;
  align-content: center;
  gap: 8px;
}

.fc-news-card__body h3 {
  font-size: 1.6rem;
}

.fc-news-card__body span {
  color: var(--muted);
  font-size: 0.9rem;
}

.fc-media-wall .media-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc-board-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
}

.fc-board-main {
  display: grid;
  gap: 22px;
}

.fc-leader-list {
  display: grid;
  gap: 10px;
}

.fc-leader-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.fc-leader-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fc-leader-row__name {
  font-weight: 800;
}

.fc-leader-row__meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.fc-pulse {
  display: grid;
  gap: 16px;
}

.fc-pulse .progress-card {
  box-shadow: none;
  background: rgba(12, 24, 48, 0.04);
}

.fc-cta-banner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10, 20, 40, 0.98), rgba(19, 41, 78, 0.96)),
    radial-gradient(circle at right center, rgba(43, 130, 255, 0.3), transparent 34%);
  color: #ffffff;
}

.fc-cta-banner p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.72);
}

.surface--copy p,
.surface__copy,
.progress-card p,
.faq-grid p,
.detail-list,
.table-sub {
  color: var(--muted);
  line-height: 1.65;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
}

.metric-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.live-strip {
  margin: 22px 0 6px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(210, 155, 58, 0.16), rgba(255, 255, 255, 0.06));
  display: grid;
  gap: 12px;
}

.live-strip__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.live-strip__title {
  margin: 6px 0 0;
  font-size: 1.1rem;
}

.live-strip__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.live-strip__score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.6vw, 1.9rem);
}

.live-strip__score span:last-child {
  text-align: right;
}

.live-strip__meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card--accent {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #ffffff;
}

.surface .metric-card {
  background: rgba(17, 17, 17, 0.03);
  border-color: rgba(17, 17, 17, 0.06);
}

.metric-card__label {
  color: inherit;
  opacity: 0.78;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.metric-card__value {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1;
}

.progress-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.progress-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.progress-card__head h3 {
  margin: 0;
  font-size: 1rem;
}

.progress-card__head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.progress-card__track {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.08);
  margin: 16px 0 12px;
}

.progress-card__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
}

.match-card {
  display: grid;
  gap: 12px;
}

.match-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.team-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.team-line--away {
  justify-content: flex-end;
}

.team-badge {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}

.coach-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.coach-card__media {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  overflow: hidden;
  flex: 0 0 88px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.coach-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coach-card__body {
  min-width: 0;
}

.coach-card__meta {
  margin: 8px 0 0;
  color: var(--muted);
}

.team-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.transfer-player-cell {
  align-items: center;
}

.match-card__teams span:last-child {
  text-align: right;
}

.match-card__teams strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.meta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
}

.detail-list li + li {
  margin-top: 8px;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-pill {
  display: inline-flex;
  min-width: 42px;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
}

.form-pill--W {
  background: var(--success);
}

.form-pill--L {
  background: var(--danger);
}

.form-pill--D {
  background: var(--draw);
}

.form-pill--Upcoming {
  background: var(--accent-deep);
}

.stack-list {
  display: grid;
  gap: 12px;
}

.stack-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.stack-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.player-avatar {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  object-fit: cover;
  background: rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.person-hero {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.person-hero__content {
  display: grid;
  gap: 10px;
}

.person-hero__content--full {
  grid-column: 1 / -1;
}

.person-hero__content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.96;
}

.person-hero__avatar {
  width: 180px;
  height: 180px;
  border-radius: 32px;
  object-fit: cover;
  background: rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.person-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.person-meta span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: var(--muted);
  font-size: 0.92rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.poster-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.poster-card__frame {
  aspect-ratio: 2 / 3;
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(210, 155, 58, 0.26), transparent 45%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(45, 45, 45, 0.9));
  color: #ffffff;
  position: relative;
}

.poster-card__frame::after {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 220px;
  height: 220px;
  transform: rotate(20deg);
  background: radial-gradient(circle at center, rgba(210, 155, 58, 0.65), transparent 62%);
  pointer-events: none;
}

.poster-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.poster-card__badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.poster-card__badge span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.poster-card__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  z-index: 2;
  display: grid;
  place-items: center;
}

.poster-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.poster-card__meta {
  z-index: 2;
  display: grid;
  gap: 8px;
}

.poster-card__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.poster-card__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.media-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.media-card:hover {
  transform: translateY(-3px);
}

.media-card__thumb {
  aspect-ratio: 16 / 10;
  background: rgba(17, 17, 17, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.media-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.media-card__placeholder {
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(17, 17, 17, 0.65);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.06), rgba(210, 155, 58, 0.12));
}

.media-card__play {
  position: absolute;
  inset: auto 14px 14px auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.72);
  color: #ffffff;
  font-size: 1.05rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.media-card__body {
  padding: 14px 14px 16px;
  display: grid;
  gap: 10px;
}

.media-card__type {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-card__title {
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  text-align: left;
  vertical-align: top;
}

.data-table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.standings-table tr.is-active {
  background: rgba(210, 155, 58, 0.14);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid article {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(17, 17, 17, 0.04);
}

.faq-grid h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.text-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  padding: 24px 26px;
  border-radius: var(--radius-xl);
  background: rgba(17, 17, 17, 0.94);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-links .text-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.footer-meta {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 480ms ease, transform 480ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .page-hero,
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .faq-grid,
  .fc-home-hero,
  .fc-news-layout,
  .fc-board-layout {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fc-score-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stack {
    grid-template-rows: none;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fc-media-wall .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 92px;
  }

  body::before {
    display: none;
  }

  .site-header,
  .site-footer,
  .surface,
  .hero-panel,
  .main-nav,
  .nav-toggle {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-shell {
    width: calc(100% - (var(--mobile-edge-gap) * 2));
    padding: var(--mobile-edge-gap) 0 24px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 14px;
  }

  .brand-block {
    min-width: 0;
    gap: 12px;
  }

  .brand-block h1 {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 0;
    font-size: 0;
  }

  .lang-switch {
    grid-column: auto;
    justify-content: center;
    justify-self: center;
    min-width: 0;
    gap: 4px;
    padding: 4px;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    padding-top: 4px;
    justify-content: flex-start;
    margin-top: 4px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .page-hero__copy,
  .hero-panel,
  .surface {
    padding: 14px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .fc-score-strip,
  .fc-news-card,
  .fc-news-feature {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .poster-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }

  .footer-meta {
    text-align: left;
  }

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

  .person-hero__media {
    display: flex;
    justify-content: center;
  }

  .fc-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .bet-actions,
  .fc-home-hero__actions,
  .fc-cta-banner__actions {
    margin-top: 18px;
  }

  .mobile-betbar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 50;
    display: block;
    padding: 10px;
    border-radius: 24px;
    background: rgba(247, 251, 255, 0.92);
    border: 1px solid rgba(12, 24, 48, 0.1);
    box-shadow: 0 18px 42px rgba(12, 24, 48, 0.18);
  }

  .mobile-betbar .cta-button {
    width: 100%;
    min-height: 54px;
  }
}

@media (max-width: 560px) {
  .site-header {
    border-radius: 22px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .brand-block {
    gap: 12px;
    min-width: 0;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 0;
  }

  .brand-mark img {
    width: 52px;
    height: 52px;
  }

  .brand-block .eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .site-header h1 {
    font-size: 0.96rem;
    line-height: 1.05;
  }

  .lang-switch {
    padding: 3px;
    gap: 3px;
  }

  .lang-switch__link {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .nav-toggle::before {
    top: 15px;
  }

  .nav-toggle::after {
    top: 27px;
  }

  .page-shell {
    margin-top: 14px;
    gap: 14px;
  }

  .page-hero,
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .hero-stack,
  .metric-strip,
  .faq-grid,
  .fc-home-hero,
  .fc-news-layout,
  .fc-board-layout,
  .fc-score-strip {
    gap: 14px;
  }

  .page-hero__copy,
  .hero-panel,
  .surface,
  .progress-card,
  .media-card__body,
  .fc-news-feature__body {
    padding-left: 12px;
    padding-right: 12px;
  }

  .live-strip,
  .metric-card,
  .progress-card,
  .faq-grid article,
  .fc-news-card {
    padding: 12px;
  }

  .section-head {
    gap: 10px;
    margin-bottom: 14px;
  }

  .section-head h2 {
    font-size: 1.5rem;
  }

  .match-card__teams,
  .live-strip__score {
    gap: 8px;
  }

  .data-table th,
  .data-table td {
    padding: 12px 10px;
  }

  .bet-actions,
  .fc-home-hero__actions,
  .fc-cta-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bet-actions .cta-button,
  .fc-home-hero__actions .cta-button,
  .fc-cta-banner__actions .cta-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
