:root {
  --bg: #f3f6fb;
  --bg-alt: #eef3fa;
  --surface: #ffffff;
  --surface-soft: #eaf0f9;
  --text: #102038;
  --muted: #607089;
  --primary: #0f4fe0;
  --primary-strong: #0a2e8a;
  --accent: #0cc2a0;
  --border: #d6deea;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 30px rgba(12, 28, 58, 0.08);
  --shadow-strong: 0 16px 40px rgba(8, 24, 51, 0.18);
  --container: 1140px;
  --header-height: 82px;
  --header-topbar-height: 36px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: linear-gradient(180deg, #f9fbff, var(--bg));
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  margin-bottom: calc((var(--header-height) + var(--header-topbar-height)) * -1);
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header-home {
  margin-bottom: calc((var(--header-height) + var(--header-topbar-height)) * -1);
}

.site-header::before {
  content: none;
}

.site-header::after {
  content: none;
}

.header-topbar {
  min-height: var(--header-topbar-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 12, 0.92);
  backdrop-filter: blur(12px) saturate(135%);
}

.header-topbar-inner {
  min-height: var(--header-topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-locale {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 600;
}

.header-locale-item {
  opacity: 0.72;
}

.header-locale-item.is-active {
  opacity: 1;
}

.header-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.24);
}

.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.header-social-link {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
}

.header-social-link svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-social-link .icon-fill {
  fill: currentColor;
  stroke: none;
}

.header-social-link .icon-stroke {
  fill: none;
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.9));
  border: 1px solid rgba(140, 167, 214, 0.26);
  border-radius: 0 0 22px 22px;
  padding: 0.95rem 1rem;
  box-shadow:
    0 18px 40px rgba(4, 9, 17, 0.12),
    0 8px 18px rgba(93, 130, 197, 0.08);
  backdrop-filter: blur(12px);
}

.site-header-home .nav-wrap {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 22px 44px rgba(4, 9, 17, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}

.brand img {
  height: 64px !important;
  width: auto !important;
  vertical-align: middle;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
  transition: transform 0.24s ease, filter 0.24s ease;
}

.header-logo {
  height: 72px;
  width: auto;
}

.brand:hover img {
  transform: translateY(-1px) scale(1.015);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15, 20, 28, 0.12);
  background: #fff;
  color: #111820;
  padding: 0.44rem 0.84rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  font: inherit;
  box-shadow: 0 8px 18px rgba(14, 20, 28, 0.08);
}

.site-nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-left: auto;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-nav a {
  color: #131a22;
  text-decoration: none;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #0f1115;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 17, 21, 0.18);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 0.5rem;
}

.header-search-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 20, 28, 0.12);
  background: #fff;
  color: #111820;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(15, 20, 28, 0.06);
}

.header-search-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta:hover,
.header-search-btn:hover {
  transform: translateY(-1px);
}

.header-cta-secondary {
  color: #131a22;
  background: #f3f5f8;
  border: 1px solid rgba(15, 20, 28, 0.08);
}

.header-cta-primary {
  color: #fff;
  background: #0f1115;
  border: 1px solid #0f1115;
  box-shadow: 0 12px 24px rgba(15, 17, 21, 0.18);
}

.hero {
  position: relative;
  color: #0b234a;
  width: 100%;
  margin-inline: 0;
  padding: calc(var(--header-height) + var(--header-topbar-height) + 2.25rem) 0 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(237, 63, 91, 0.12), transparent 40%),
    radial-gradient(circle at 84% 12%, rgba(82, 148, 255, 0.14), transparent 44%),
    linear-gradient(145deg, #f6f9ff 0%, #ecf3ff 56%, #e5efff 100%);
  border-bottom: 1px solid rgba(92, 126, 191, 0.3);
  box-shadow: inset 0 -16px 34px rgba(38, 64, 112, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 32%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 18px
    );
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -15%, rgba(255, 217, 135, 0.24), transparent 42%),
    radial-gradient(circle at 50% 120%, rgba(52, 95, 182, 0.28), transparent 56%);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  text-align: center;
  max-width: 1140px;
  margin-inline: auto;
  padding: 3.3rem 1rem 3.3rem;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  position: relative;
}

.hero-inner nav[aria-label="Breadcrumb"] {
  position: absolute;
  top: 0;
  left: 1rem;
}

.hero-inner h1 {
  margin: 10px 0 0;
  font-size: clamp(2.3rem, 5.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  color: #0b234a;
  text-shadow: 0 6px 18px rgba(46, 81, 144, 0.12);
}

.hero-kicker {
  display: none;
}

.hero .breadcrumb-list {
  margin: 0;
  padding: 0.65rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(112, 144, 204, 0.38);
  border-left: 2px solid rgba(82, 129, 214, 0.62);
  box-shadow:
    0 10px 22px rgba(24, 48, 94, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #39557d;
  font-size: 0.94rem;
  font-weight: 600;
  gap: 0.38rem;
}

.hero .breadcrumb-list li {
  display: inline-flex;
  align-items: center;
}

.hero .breadcrumb-list li:not(:last-child)::after {
  content: "\203A";
  color: #6e8dbf;
  margin-left: 0.44rem;
}

.hero .breadcrumb-list a {
  color: #1e3b67;
  text-decoration: none;
}

.hero .breadcrumb-list li:first-child a::before {
  content: "\2302";
  margin-right: 0.4rem;
  color: #6b88b8;
  font-size: 0.92rem;
}

.hero .breadcrumb-list a:hover {
  color: #0f2d59;
  text-decoration: none;
}

.hero .breadcrumb-list li[aria-current="page"] {
  color: #0f2d59;
  font-weight: 700;
  text-shadow: none;
}

.hero-copy {
  margin: 0.95rem auto 0;
  max-width: 62ch;
  color: #355174;
  font-size: 1.08rem;
  font-weight: 500;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

@media (max-width: 760px) {
  .hero {
    padding: 1.95rem 0 0;
  }

  .hero-inner {
    padding: 2.9rem 1rem 2.9rem;
  }

  .hero .breadcrumb-list {
    padding: 0.52rem 0.72rem;
    font-size: 0.86rem;
    border-radius: 12px;
  }

  .hero-inner h1 {
    font-size: clamp(1.9rem, 8vw, 2.9rem);
    line-height: 1.05;
  }
}

.home-hero {
  margin-top: 0;
  padding-top: calc(var(--header-height) + var(--header-topbar-height) + 2.2rem);
  color: #f7fbff;
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.45), rgba(5, 8, 11, 0.8)),
    radial-gradient(circle at 50% 0%, rgba(255, 223, 130, 0.18), transparent 28%),
    url("/assets/footer-stadium.webp?v=20260616a") center 52% / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 -60px 90px rgba(5, 8, 11, 0.42);
}

.home-hero::before {
  opacity: 0.16;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 2px,
      transparent 2px,
      transparent 18px
    );
}

.home-hero::after {
  opacity: 0.55;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 215, 120, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(5, 8, 11, 0.06), rgba(5, 8, 11, 0.36));
}

.home-hero .hero-inner h1 {
  color: #ffffff;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
}

.home-hero .hero-copy {
  color: rgba(246, 250, 255, 0.9);
}

.home-hero .breadcrumb-list {
  background: rgba(8, 12, 18, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.86);
}

.home-hero .breadcrumb-list a,
.home-hero .breadcrumb-list li[aria-current="page"] {
  color: #ffffff;
}

.home-hero .breadcrumb-list li:not(:last-child)::after,
.home-hero .breadcrumb-list li:first-child a::before {
  color: rgba(255, 255, 255, 0.7);
}

.home-hero .countdown-wrap {
  margin: 1.2rem auto 1.22rem;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(120px, 0.48fr) minmax(0, 1.9fr) minmax(110px, 0.42fr);
  align-items: start;
  gap: 1rem 1.2rem;
  padding: 1rem 1.45rem 0.78rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 248, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 16px 36px rgba(10, 16, 28, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.home-hero .countdown-intro {
  color: #8f1732;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
  align-self: center;
}

.home-hero .countdown-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
  align-self: center;
}

.home-hero .countdown-container[data-home-hero-mode="live"] {
  display: grid;
  grid-template-columns: auto minmax(164px, 184px) auto;
  justify-content: center;
  gap: 1rem;
}

.home-hero-live-team {
  display: flex;
  align-items: center;
  min-width: 0;
  color: #071027;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  font-weight: 900;
  line-height: 1.05;
}

.home-hero-live-team .team-inline {
  gap: 0.65rem;
}

.home-hero-live-team .country-flag {
  width: 40px;
  height: 28px;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(16, 32, 56, 0.18);
}

.home-hero-live-team-away {
  justify-content: flex-end;
  text-align: right;
}

.home-hero-live-score {
  min-width: 184px;
  min-height: 118px;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  box-shadow: 0 14px 26px rgba(16, 32, 56, 0.08);
}

.home-hero-live-score .match-article-score-label {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.home-hero-live-score .match-article-score-value {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.home-hero-live-score.is-live .match-article-score-label,
.home-hero-live-score.is-live .match-article-score-value {
  color: #c61e3a;
}

.home-hero .countdown-item {
  position: relative;
  min-width: 66px;
  padding: 0.48rem 0.52rem 0.42rem;
  border-radius: 0;
  background: linear-gradient(180deg, #a01f42, #88142f);
  border: 1px solid rgba(101, 11, 31, 0.55);
  box-shadow: 0 6px 14px rgba(87, 10, 29, 0.22);
}

.home-hero .countdown-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.58rem;
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 50%;
  background: #9f1d3f;
  transform: translateY(-50%);
  box-shadow: 0 0 0 2px rgba(159, 29, 63, 0.18);
}

.home-hero .countdown-value {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.22rem;
  color: #ffffff;
}

.home-hero .countdown-label {
  font-size: 0.62rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 246, 249, 0.92);
}

.home-hero .countdown-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  align-self: end;
  justify-self: end;
  margin-top: -0.1rem;
}

.home-hero .countdown-brand-official {
  width: 132px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(12, 20, 39, 0.16));
}

.home-hero .hero-actions {
  margin-top: 0.65rem;
  gap: 0.6rem;
}

.home-hero .hero-actions .btn {
  padding: 0.62rem 1.1rem;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  background: var(--surface);
  color: var(--text);
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #ed3f5b, #c41e3a);
  color: #fff;
  border: 1px solid #ff5a75;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff5a75, #ed3f5b);
  box-shadow: 0 8px 25px rgba(237, 63, 91, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-secondary {
  background: var(--surface-soft);
  color: var(--primary-strong);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #dce7f9;
  border-color: #b9c9e7;
  box-shadow: 0 10px 24px rgba(10, 46, 138, 0.12);
}

.btn-small {
  padding: 0.52rem 1rem;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}


.breadcrumb-list {
  margin: 0 0 0.6rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #d4e5ff;
  font-size: 0.86rem;
  font-weight: 600;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
}

.breadcrumb-list a {
  color: #f0f6ff;
  text-decoration: none;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-stack {
  padding: 2rem 0 3rem;
}

.section-block + .section-block {
  margin-top: 1.7rem;
}

#cusdis_thread {
  min-height: 120px;
}

#cusdis_thread iframe {
  display: block;
  width: 100%;
  min-height: 120px;
}

.social-share {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 1.55rem;
  padding-bottom: 1.35rem;
}

.social-share-title {
  display: block;
  margin: 0 0 0.85rem;
  color: #102038;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.social-share-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.social-share-item {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fbff;
  color: var(--primary-strong);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 0.75rem;
  cursor: pointer;
  gap: 0.4rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

button.social-share-item {
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.social-share-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-share-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-share-text {
  white-space: nowrap;
}

.social-share-item[data-share-network="facebook"] {
  color: #1877f2;
}

.social-share-item[data-share-network="x"] {
  color: #111111;
}

.social-share-item[data-share-network="whatsapp"] {
  color: #17b65e;
}

.social-share-item[data-share-network="pinterest"] {
  color: #e60023;
}

.social-share-item[data-share-network="copy"] {
  color: #2c3f5f;
}

.social-share-item:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 79, 224, 0.28);
  box-shadow: 0 10px 22px rgba(12, 28, 58, 0.1);
}

.social-share-status {
  margin: 0.45rem 0 0;
  min-height: 1.2rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.comments-section > h2 {
  color: #102038;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 1.2rem;
  text-align: left;
}

@media (max-width: 900px) {
  .social-share-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .social-share-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-share-item {
    min-height: 40px;
    font-size: 0.85rem;
    padding: 0 0.6rem;
  }
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 2.3rem);
  color: var(--primary-strong);
  font-family: "Bebas Neue", "Barlow", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.section-head a {
  text-decoration: none;
  color: var(--primary-strong);
  font-weight: 700;
}

.home-section-head {
  align-items: center;
  margin-bottom: 1.2rem;
}

.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ed3f5b;
  margin-right: 0.45rem;
  box-shadow: 0 0 0 0 rgba(237, 63, 91, 0.5);
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(237, 63, 91, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(237, 63, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(237, 63, 91, 0); }
}

.section-note {
  margin-top: 0;
  color: var(--muted);
}

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

/* Cities page: show 4 cards per row on large screens */
.cities-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cities-card-grid {
  gap: 1.25rem;
}

.cities-card-grid .card {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(7, 92, 69, 0.16);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(4, 39, 29, 0.1);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.cities-card-grid .card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 18, 22, 0) 0 34%, rgba(3, 18, 22, 0.18) 58%, rgba(3, 18, 22, 0.46) 100%);
  opacity: 0.58;
}

.cities-card-grid .card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 63, 91, 0.35);
  box-shadow: 0 22px 42px rgba(4, 39, 29, 0.16);
}

.cities-card-grid .card-image {
  height: 168px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.cities-card-grid .card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.58rem;
  min-height: 13.4rem;
  padding: 1rem 1rem 1.08rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 63, 91, 0.12), transparent 34%),
    linear-gradient(155deg, #ffffff 0%, #f7fbf8 54%, #edf5f0 100%);
}

.cities-card-grid .chip {
  width: fit-content;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 92, 69, 0.18);
  background: rgba(7, 92, 69, 0.08);
  color: #075c45;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.cities-card-grid .card h3 {
  margin: 0;
  color: #102038;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.48rem, 1.7vw, 1.88rem);
  letter-spacing: 0;
  line-height: 1;
}

.cities-card-grid .card p:not(.chip) {
  margin: 0;
  color: #4e6072;
  font-size: 0.94rem;
  line-height: 1.45;
}

.cities-card-grid .card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 0.74rem 0.95rem;
  border: 1px solid rgba(7, 92, 69, 0.2);
  border-radius: 10px;
  background: linear-gradient(135deg, #075c45, #0b7a5f);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(7, 92, 69, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cities-card-grid .card-link::after {
  content: "→";
  margin-left: 0.45rem;
  font-size: 0.95rem;
  transition: transform 0.18s ease;
}

.cities-card-grid .card-link:hover,
.cities-card-grid .card-link:focus-visible {
  border-color: rgba(255, 215, 103, 0.62);
  background: linear-gradient(135deg, #ed3f5b, #c41e3a);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(237, 63, 91, 0.22);
}

.cities-card-grid .card-link:hover::after,
.cities-card-grid .card-link:focus-visible::after {
  transform: translateX(3px);
}

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

.stadiums-after-heading {
  margin: 1rem 0 1.35rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.chip {
  display: inline-flex;
  margin: 0;
  padding: 0.2rem 0.56rem;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.card h3 {
  margin: 0.55rem 0 0;
  color: var(--text);
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.card-link {
  display: inline-block;
  margin-top: 0.85rem;
  text-decoration: none;
  color: var(--primary-strong);
  font-weight: 700;
}

.card-match .match-topbar {
  padding: 0.55rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #d3e5ff;
  background: linear-gradient(130deg, #0d2449, #1a4f9e);
}

.status {
  padding: 0.13rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  font-size: 0.68rem;
}

.status.upcoming {
  color: #324b70;
  background: #e7edf8;
}

.status.live {
  color: #fff;
  background: #ed3f5b;
}

.status.final {
  color: #fff;
  background: #1fa472;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
}

.panel h2 {
  margin: 0 0 0.7rem;
  color: var(--primary-strong);
  line-height: 1.15;
}

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

.article-content p {
  color: var(--muted);
  line-height: 1.78;
  margin: 0 0 1rem;
}

.article-content h3 {
  color: var(--text);
  margin: 1.55rem 0 0.65rem;
}

.article-section:first-of-type h2,
.article-section:first-of-type h3 {
  margin-top: 1rem;
}

.article-content .detail-list {
  margin: 0.5rem 0 1.1rem;
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.detail-list strong {
  min-width: 105px;
  display: inline-block;
}

.link-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.link-cluster a {
  text-decoration: none;
  padding: 0.35rem 0.66rem;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--text);
}

.empty-state {
  margin: 0;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
  color: var(--muted);
}

.related-articles-shell {
  padding: 0 0 2.6rem;
}

.related-articles-block {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.related-articles-head {
  padding-top: 0;
  margin-bottom: 1rem;
}

.related-articles-head .related-articles-title {
  display: block;
  margin: 0;
  color: #000;
  font-size: clamp(1.8rem, 3.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.related-article-card {
  min-width: 0;
}

.related-article-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(198, 213, 240, 0.95);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(22, 43, 86, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.related-article-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 34px rgba(12, 31, 68, 0.14);
  border-color: rgba(117, 147, 204, 0.75);
}

.related-article-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe8ff, #f5f8ff);
}

.related-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.related-article-link:hover .related-article-media img {
  transform: scale(1.04);
}

.related-article-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem 1rem 1.05rem;
}

.related-article-tag {
  margin: 0;
  color: #7a8ba4;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-article-content h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.4;
}

.related-article-content p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.loading-text {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
  color: var(--muted);
  background: var(--surface-soft);
}

.loading-row {
  text-align: center;
  color: var(--muted) !important;
  background: var(--surface-soft);
  font-weight: 600;
}

.site-footer {
  position: relative;
  margin-top: 2.4rem;
  color: #eef4ff;
  background:
    radial-gradient(circle at 15% 10%, rgba(48, 95, 190, 0.16), transparent 34%),
    linear-gradient(180deg, #02050d 0%, #060a13 50%, #050811 100%);
  overflow: hidden;
}

.footer-shell {
  position: relative;
  z-index: 1;
  padding: 2rem 0 1.3rem;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.2rem;
  padding-bottom: 1.8rem;
}

.footer-brand-column {
  flex: 0 0 360px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand-link {
  display: inline-flex;
  text-decoration: none;
}

.footer-logo-mark {
  width: 180px;
  height: auto;
  filter: none;
}

.footer-eyebrow {
  margin: 1rem 0 0.5rem;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.35;
  max-width: 360px;
}

.footer-description {
  margin: 0;
  max-width: 340px;
  color: rgba(225, 234, 249, 0.72);
  font-size: 0.98rem;
  text-align: center;
}

.footer-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.footer-store-btn {
  min-width: 164px;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-store-kicker {
  color: rgba(213, 225, 247, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-store-title {
  font-size: 1.02rem;
  font-weight: 700;
}

.footer-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  padding: 0.35rem 0 1.4rem;
}

.footer-column h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-list li {
  color: rgba(220, 231, 248, 0.72);
  font-size: 0.96rem;
}

.footer-list a {
  color: rgba(230, 238, 252, 0.82);
  text-decoration: none;
}

.footer-list span {
  color: rgba(220, 231, 248, 0.56);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-column-social {
  text-align: center;
}

.footer-column-social h3 {
  text-align: center;
}

.footer-column-social .footer-socials {
  display: grid;
  grid-template-columns: repeat(5, 48px);
  justify-content: center;
  justify-items: center;
  gap: 0.7rem;
  width: max-content;
  margin-inline: auto;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(236, 242, 252, 0.88);
  font-size: 1rem;
  font-weight: 700;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 20px;
  height: 20px;
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-social-icon svg path,
.footer-social-icon svg rect,
.footer-social-icon svg circle {
  stroke: rgba(236, 242, 252, 0.92);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-icon svg .icon-fill {
  fill: rgba(236, 242, 252, 0.92);
  stroke: none;
}

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

.footer-bottom {
  padding: 1rem 0 1.05rem;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: rgba(212, 225, 245, 0.72);
}

.footer-ownership {
  margin: 0.45rem auto 0;
  max-width: 820px;
  color: rgba(212, 225, 245, 0.84);
  font-size: 0.92rem;
}

.footer-stadium-strip {
  height: 280px;
  background:
    linear-gradient(180deg, rgba(5, 8, 17, 1) 0%, rgba(5, 8, 17, 0.92) 10%, rgba(5, 8, 17, 0.58) 28%, rgba(5, 8, 17, 0.14) 48%, rgba(5, 8, 17, 0) 68%),
    url("/assets/footer-stadium.webp?v=20260616a") center 62% / cover no-repeat;
  filter: saturate(1.05) contrast(1.02);
}

.footer-logo {
  filter: none;
}

.copyright-text {
  margin: 0;
  opacity: 0.7;
}

.faq-accordion {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding-right: 2.3rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-strong);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
}

@media (max-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-main {
    flex-direction: column;
  }

  .footer-cta-group {
    justify-content: flex-start;
  }

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

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

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

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  body {
    background: #f7faff;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .site-header {
    margin-bottom: 0;
    padding-top: 0.65rem;
  }

  .site-header-home {
    margin-bottom: 0;
  }

  .home-hero {
    padding-top: 1.5rem;
  }

  .header-topbar {
    display: none;
  }

  .nav-wrap {
    min-height: var(--header-height);
    border-radius: 18px;
    padding: 0.55rem 0.72rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(140, 167, 214, 0.24);
    box-shadow:
      0 14px 30px rgba(6, 14, 28, 0.12),
      0 5px 12px rgba(93, 130, 197, 0.08);
    backdrop-filter: blur(14px) saturate(150%);
  }

  .brand img {
    height: 50px !important;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(6, 14, 28, 0.12);
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) + 0.75rem);
    left: 0.625rem;
    right: 0.625rem;
    max-height: min(72vh, 560px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(11, 15, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    box-shadow: 0 22px 46px rgba(3, 10, 26, 0.34);
  }

  .site-nav a {
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    padding: 0.78rem 0.9rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
  }

  .site-nav.is-open {
    display: flex;
    animation: mobile-nav-in 0.18s ease-out;
  }

  @keyframes mobile-nav-in {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

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

  .panel,
  .card,
  .group-panel,
  .article-content {
    border-radius: 16px;
  }

  .page-stack {
    gap: 1.2rem;
  }

  .table-responsive {
    margin: 1rem 0 1.4rem;
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(12, 28, 58, 0.08);
  }

  .table-responsive::after {
    content: "Swipe table";
    position: sticky;
    left: 0;
    bottom: 0;
    display: block;
    width: max-content;
    padding: 0.28rem 0.65rem;
    margin: 0.35rem;
    border-radius: 999px;
    background: rgba(16, 32, 56, 0.08);
    color: #405570;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
  }

  .data-table {
    min-width: 720px;
  }

  .standings-table {
    min-width: 560px;
    table-layout: auto;
  }

  .squad-list-table {
    min-width: 640px;
  }

  .data-table th,
  .data-table td {
    padding: 0.78rem 0.85rem;
    font-size: 0.92rem;
  }

  .data-table th {
    white-space: nowrap;
  }

  .related-articles-shell {
    padding-bottom: 2.5rem;
  }

  .related-articles-block {
    padding: 1rem;
    border-radius: 22px;
  }

  .related-articles-grid {
    grid-template-columns: 1fr;
  }

  .related-articles-head {
    padding-top: 0.95rem;
  }

  .footer-shell {
    padding-top: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .footer-store-btn {
    min-width: 0;
    width: 100%;
  }

  .footer-stadium-strip {
    height: 180px;
  }

  .groups-overview-grid,
  .matches-summary-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .match-card-fixture {
    align-items: flex-start;
  }

  .card-image {
    height: 205px;
  }

  .premium-content-block {
    grid-template-columns: 1fr;
  }

  .home-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
}

.premium-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-soft);
}

.centered-block {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.content-max {
  max-width: 800px;
}

.intro-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1.2rem !important;
}

.intro-copy {
  font-size: 1.08rem !important;
  line-height: 1.6 !important;
}

.intro-copy-last {
  margin-bottom: 2rem !important;
}

.stats-grid-center {
  justify-content: center;
  width: 100%;
}

.panel-accent {
  margin-bottom: 2rem;
  border-top: 4px solid var(--primary);
}

.stacked-panels {
  margin-bottom: 2rem;
}

.content-text-col h2 {
  color: var(--primary-strong);
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.3rem);
  letter-spacing: 0.02em;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
  line-height: 1.15;
}

.content-text-col h2:first-child {
  margin-top: 0;
}

.content-text-col p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-text-col strong {
  color: var(--text);
  font-weight: 700;
}

.premium-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
}

.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  background: var(--surface);
}

.data-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--surface);
  text-align: left;
}

.data-table th, .data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  overflow-wrap: normal;
  word-break: normal;
}

.data-table th {
  background: var(--surface-soft);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--primary-strong);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: #f8fbff;
}

/* Local flags used with team names in table cells */
.team-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.country-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(16, 32, 56, 0.15);
  box-shadow: 0 1px 4px rgba(16, 32, 56, 0.2);
}

.match-teams {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.match-separator {
  color: var(--muted);
  font-weight: 700;
}

/* Homepage Redesign Components */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stats-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.stats-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.stats-card h4 {
  color: var(--primary-strong);
  font-size: 2.2rem;
  margin: 0;
  font-weight: 800;
  font-family: "Bebas Neue", sans-serif;
}

.stats-card span {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.timeline-block {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.timeline-block.knockout {
  border-left-color: #ed3f5b;
}

.timeline-block h3 {
  color: var(--primary-strong);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
}

.overview-section-title {
  color: var(--primary-strong);
  margin: 0 0 0.75rem;
}

.groups-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.group-overview-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.group-overview-card h4 {
  margin: 0 0 0.85rem;
  color: var(--primary-strong);
  font-size: 1.05rem;
}

.group-overview-list {
  display: grid;
  gap: 0.6rem;
}

.group-overview-team {
  display: flex;
  align-items: center;
  min-height: 28px;
}

.overview-list-tight li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.timeline-note-card {
  margin-top: 1rem;
  background: linear-gradient(160deg, rgba(8, 34, 84, 0.05), rgba(20, 87, 171, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;
}

.timeline-note-card h4 {
  margin: 0 0 0.55rem;
  color: var(--primary-strong);
}

.matches-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.match-summary-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  display: grid;
  gap: 0.3rem;
}

.match-summary-card strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-strong);
}

.match-summary-card span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.official-match-card {
  overflow: hidden;
}

.official-match-card[data-card-href] {
  cursor: pointer;
}

.official-match-card[data-card-href]:focus-visible {
  outline: 3px solid #69c9d0;
  outline-offset: 4px;
}

.official-match-body {
  display: grid;
  gap: 0.85rem;
}

.match-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.match-card-fixture {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem;
  min-height: 30px;
}

.match-card-fixture .team-inline {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
}

.match-card-live-note {
  margin: -0.1rem 0 0;
  color: #4f617d;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.match-card-placeholder {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.match-card-meta {
  display: grid;
  gap: 0.3rem;
  justify-items: center;
  text-align: center;
}

.match-card-meta p,
.match-card-helper {
  margin: 0;
}

.match-location-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.match-location-link:hover,
.match-location-link:focus-visible {
  color: var(--accent);
  border-color: currentColor;
}

.match-card-helper {
  font-size: 0.92rem;
  color: var(--muted);
}

.match-highlights-layout {
  gap: 1.6rem;
}

.match-highlights-hub-layout {
  gap: 1.5rem;
}

.match-highlights-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.25rem;
}

.match-highlights-scoreboard,
.match-highlights-support-card,
.fifa-highlights-player-card,
.match-highlights-pending-card {
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(9, 38, 28, 0.12);
}

.match-highlights-scoreboard,
.match-highlights-support-card,
.match-highlights-pending-card {
  padding: 1.45rem;
}

.match-highlights-scoreboard {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(243, 196, 73, 0.24), transparent 26%),
    radial-gradient(circle at bottom right, rgba(73, 161, 114, 0.24), transparent 30%),
    linear-gradient(145deg, #07251d 0%, #0e3b30 56%, #15392d 100%);
  border: 1px solid rgba(201, 230, 208, 0.16);
}

.match-highlights-scoreboard::before {
  content: "";
  position: absolute;
  inset: auto -10% -38% 34%;
  height: 280px;
  background: linear-gradient(180deg, rgba(242, 199, 92, 0.16), transparent 70%);
  transform: rotate(24deg);
  pointer-events: none;
}

.match-highlights-support-card,
.fifa-highlights-player-card,
.match-highlights-pending-card,
.match-highlights-story-card,
.match-highlights-copy-column {
  border: 1px solid rgba(15, 65, 50, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(247, 251, 246, 0.98) 100%);
}

.match-highlights-scoreboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #dbeedd;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.match-highlights-scoreline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.match-highlights-team {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
}

.match-highlights-team--away {
  justify-items: end;
  text-align: right;
}

.match-highlights-team-flag {
  width: 56px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

.match-highlights-team-kicker {
  color: #b6d7c4;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-highlights-team strong {
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.85rem, 3.3vw, 2.9rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.match-highlights-scoreboard .chip {
  background: rgba(244, 204, 104, 0.12);
  border-color: rgba(244, 204, 104, 0.22);
  color: #f4cc68;
}

.match-highlights-score-core {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-width: min(220px, 100%);
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(6, 18, 15, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.match-highlights-score-total {
  color: #f4cc68;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.45rem, 4vw, 3.9rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.match-highlights-score-status {
  color: #eef8ef;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-highlights-scoreboard p {
  margin: 0;
  max-width: 52ch;
  color: #d9ede0;
}

.match-highlights-support-card p {
  margin: 0;
}

.match-highlights-support-card h2,
.match-highlights-pending-card h2,
.match-highlights-story-card h2 {
  margin: 0 0 1rem;
  color: #0b3427;
}

.match-highlights-layout .match-highlights-support-card h2,
.match-highlights-layout .match-highlights-story-card h2,
.match-highlights-layout .match-highlights-copy-column h2 {
  color: #0b3427 !important;
  text-shadow: none;
}

.match-highlights-facts-table {
  width: 100%;
  border-collapse: collapse;
}

.match-highlights-facts-table th,
.match-highlights-facts-table td {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(15, 65, 50, 0.1);
  text-align: left;
  vertical-align: top;
}

.match-highlights-facts-table th {
  width: 36%;
  color: #436053;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.match-highlights-facts-table td {
  color: #102d24;
  font-weight: 600;
}

.match-highlights-player-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.25rem;
  align-items: start;
}

.fifa-highlights-player-card {
  padding: 1rem;
}

.fifa-highlights-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background: #020a18;
}

.fifa-highlights-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020a18;
}

.fifa-highlights-status {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: min(28rem, calc(100% - 2rem));
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(7, 18, 39, 0.84);
  color: #f7fbff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
}

.fifa-highlights-player.is-ready .fifa-highlights-status {
  background: rgba(22, 94, 46, 0.88);
}

.fifa-highlights-player.is-error .fifa-highlights-status {
  background: rgba(121, 24, 31, 0.92);
}

.fifa-highlights-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.match-highlights-duration {
  color: #bfd8ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.match-highlights-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.match-highlights-story-shell {
  display: grid;
}

.match-highlights-story-card {
  padding: 1.35rem 1.45rem;
}

.match-highlights-story-card p {
  margin: 0;
  color: #355648;
}

.match-highlights-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.match-highlights-story-pill {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11, 52, 39, 0.06), rgba(11, 52, 39, 0.02));
  border: 1px solid rgba(15, 65, 50, 0.09);
}

.match-highlights-story-pill span {
  color: #5f786c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-highlights-story-pill strong {
  color: #0c3327;
  font-size: 1rem;
}

.match-highlights-copy-column {
  padding: 1.35rem 1.45rem;
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(9, 38, 28, 0.08);
}

.match-highlights-copy-column h2:first-child {
  margin-top: 0;
}

.match-highlights-copy-column h2 {
  color: #0d3327;
}

.match-highlights-copy-column p {
  color: #355648;
}

.match-highlights-layout .btn-primary {
  color: #071610;
  background: linear-gradient(135deg, #ffd767, #d9a521);
  border: 1px solid rgba(125, 91, 12, 0.34);
}

.match-highlights-layout .btn-primary:hover {
  color: #071610;
  background: linear-gradient(135deg, #ffe493, #d9a521);
  border-color: rgba(125, 91, 12, 0.44);
}

.match-highlights-layout .btn-outline {
  background: rgba(9, 43, 33, 0.04);
  color: #0d3327;
  border: 2px solid rgba(217, 165, 33, 0.62);
}

.match-highlights-layout .btn-outline:hover {
  background: rgba(217, 165, 33, 0.1);
  color: #0a2c22;
  border-color: #d9a521;
}

.match-highlights-card-link {
  display: inline-flex;
  margin-top: 0.45rem;
  color: var(--primary-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.match-highlights-featured-shell,
.match-highlights-editorial-wrap,
.match-highlights-archive-shell {
  display: grid;
}

.match-highlights-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  padding: clamp(1.35rem, 2.6vw, 1.95rem);
  border: 1px solid rgba(14, 33, 67, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 211, 94, 0.16), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 26px 58px rgba(16, 32, 56, 0.11);
}

.match-highlights-featured-copy,
.match-highlights-featured-scoreboard,
.match-highlights-editorial-card {
  display: grid;
  gap: 0.95rem;
}

.match-highlights-featured-copy h2,
.match-highlights-featured-copy p,
.match-highlights-featured-scoreboard p,
.match-highlights-editorial-card h2,
.match-highlights-editorial-card p {
  margin: 0;
}

.match-highlights-featured-copy h2,
.match-highlights-editorial-card h2 {
  color: #102038;
}

.match-highlights-featured-meta,
.match-highlights-featured-actions,
.match-highlights-hub-card-top,
.match-highlights-hub-teams {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.match-highlights-featured-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: rgba(16, 32, 56, 0.06);
  color: #29415f;
  font-size: 0.84rem;
  font-weight: 700;
}

.match-highlights-featured-scoreboard {
  align-content: center;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 24, 51, 0.98), rgba(10, 30, 61, 0.9));
  color: #f7fbff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.match-highlights-featured-label {
  color: #cde0ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-highlights-featured-fixture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.match-highlights-featured-score {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  min-width: 140px;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.match-highlights-featured-score strong {
  color: #ffd86f;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.3rem, 3vw, 3rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.match-highlights-featured-score span {
  color: #dbe9ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-highlights-featured-fixture .country-flag,
.match-highlights-hub-team .country-flag {
  width: 28px;
  height: 20px;
  border-radius: 6px;
}

.match-highlights-featured-fixture .match-highlights-hub-team strong {
  color: #eef4ff;
  font-size: 1.22rem;
}

.match-highlights-featured-actions .btn-outline {
  background: rgba(9, 43, 33, 0.04);
  color: #0d3327;
  border: 2px solid rgba(217, 165, 33, 0.62);
}

.match-highlights-featured-actions .btn-outline:hover {
  background: rgba(217, 165, 33, 0.1);
  color: #0a2c22;
  border-color: #d9a521;
}

.match-highlights-editorial-card {
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.match-highlights-editorial-card a,
.match-highlights-archive-table a {
  color: #164fbd;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.match-highlights-hub-card a {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
}

.match-highlights-hub-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.match-highlights-hub-match-number {
  color: #b5c7f3;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-highlights-hub-fixture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.match-highlights-hub-team {
  display: grid;
  justify-items: start;
  gap: 0.42rem;
}

.match-highlights-hub-team--away {
  justify-items: end;
  text-align: right;
}

.match-highlights-hub-team strong {
  color: #1b2e4d;
  font-size: 1rem;
  line-height: 1.15;
}

.match-highlights-hub-scorebox {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  min-width: 104px;
  padding: 0.8rem 0.72rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #10294f, #173864);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.match-highlights-hub-score {
  color: #ffd86f;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.match-highlights-hub-scorebox span {
  color: #dce8ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-highlights-hub-body {
  display: grid;
  gap: 0.45rem;
}

.match-highlights-hub-card h2 {
  margin: 0;
  color: #172d4f;
  font-size: 1.28rem;
}

.match-highlights-hub-card p {
  margin: 0;
  color: #5e708d;
}

.match-highlights-hub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.match-highlights-hub-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 41, 79, 0.06);
  color: #385174;
  font-size: 0.78rem;
  font-weight: 700;
}

.match-highlights-archive-table {
  width: 100%;
  border-collapse: collapse;
}

.match-highlights-archive-shell .table-responsive {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.match-highlights-archive-table th,
.match-highlights-archive-table td {
  padding: 0.8rem 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

.match-highlights-archive-table th {
  color: #4b617a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-highlights-pending-card {
  min-height: 100%;
}

.match-highlights-pending-card p {
  margin: 0;
  color: #d6e7ff;
}

.schedule-source-table {
  display: none;
}

.schedule-live-shell {
  margin: 0 0 2rem;
}

@media (max-width: 900px) {
  .match-highlights-overview,
  .match-highlights-player-shell {
    grid-template-columns: 1fr;
  }

  .match-highlights-featured-card {
    grid-template-columns: 1fr;
  }

  .match-highlights-story-grid {
    grid-template-columns: 1fr;
  }

  .match-highlights-featured-fixture,
  .match-highlights-hub-fixture {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .match-highlights-hub-team,
  .match-highlights-hub-team--away {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .match-highlights-archive-table {
    min-width: 540px;
  }

  .match-highlights-archive-table th,
  .match-highlights-archive-table td {
    padding: 0.68rem 0.62rem;
    font-size: 0.82rem;
  }

  .match-highlights-scoreline {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .match-highlights-team,
  .match-highlights-team--away {
    justify-items: center;
    text-align: center;
  }

  .match-highlights-score-core {
    width: 100%;
  }

  .fifa-highlights-status {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    max-width: none;
    border-radius: 0.85rem;
  }
}

.schedule-live-hero {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(2.2rem, 5vw, 4rem) 1.5rem 2.2rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.18), transparent 23%),
    radial-gradient(circle at 96% 8%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #465eaa 0%, #26317d 52%, #516af1 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 28px 58px rgba(42, 55, 133, 0.28);
}

.schedule-live-shell .schedule-live-hero h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #eef4ff;
  font-size: clamp(2.75rem, 6.5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.schedule-live-shell .schedule-live-hero p {
  position: relative;
  z-index: 1;
  margin: 1.05rem 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
}

.schedule-live-hero span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 820px;
  margin-top: 4rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.92rem, 1.5vw, 1.12rem);
  font-weight: 900;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.schedule-live-orb {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  pointer-events: none;
}

.schedule-live-orb-left {
  top: -74px;
  left: -64px;
}

.schedule-live-orb-right {
  top: -55px;
  right: -55px;
}

.homepage-content .schedule-live-shell-home {
  margin: 1rem 0 1.15rem;
}

.homepage-content .schedule-live-shell-home .schedule-live-hero {
  min-height: 245px;
  border: 1px solid rgba(210, 181, 77, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(244, 225, 151, 0.2), transparent 25%),
    radial-gradient(circle at 96% 12%, rgba(49, 121, 86, 0.28), transparent 24%),
    linear-gradient(135deg, #071f16 0%, #123328 52%, #1d2f41 100%);
  box-shadow: 0 24px 48px rgba(7, 31, 22, 0.18);
}

.homepage-content .schedule-live-shell-home .schedule-live-hero h2 {
  color: #fff8d8;
}

.homepage-content .schedule-live-shell-home .schedule-live-hero p {
  color: rgba(240, 249, 242, 0.94);
}

.homepage-content .schedule-live-shell-home .schedule-live-hero span {
  border-color: rgba(244, 225, 151, 0.28);
  background: rgba(244, 225, 151, 0.12);
  color: rgba(255, 250, 224, 0.96);
}

.homepage-content .schedule-live-shell-home .schedule-live-orb {
  border-color: rgba(244, 225, 151, 0.1);
}

.schedule-local-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 2fr) minmax(240px, 1.55fr) auto;
  gap: 0.85rem;
  align-items: center;
  margin: -1.4rem 1.75rem 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(65, 90, 174, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 42px rgba(33, 52, 104, 0.12);
}

.schedule-local-toolbar strong {
  color: #1e2b66;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.schedule-local-toolbar p {
  margin: 0;
  color: #657394;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}

.schedule-time-select,
.schedule-reset-time {
  min-height: 48px;
  border: 1px solid rgba(65, 90, 174, 0.18);
  border-radius: 18px;
  background: #ffffff;
  color: #071027;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(33, 52, 104, 0.08);
}

.schedule-reset-time {
  padding: 0 1.1rem;
  color: #4658b6;
  background: #f7f9ff;
}

.match-time-tool-shell {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 28px;
}

.match-time-tool-copy h2,
.match-time-tool-copy p {
  margin: 0;
}

.match-time-tool-copy h2 {
  color: #102038;
}

.match-time-tool-copy p {
  margin-top: 0.55rem;
  color: #4f6280;
}

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

.match-time-tool-field {
  display: grid;
  gap: 0.45rem;
}

.match-time-tool-field span {
  color: #1e2b66;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-time-tool-field input,
.match-time-tool-field select {
  min-height: 52px;
  padding: 0 1rem;
  border: 1px solid rgba(65, 90, 174, 0.18);
  border-radius: 18px;
  background: #ffffff;
  color: #071027;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(33, 52, 104, 0.08);
}

.match-time-tool-result {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  border: 1px solid rgba(65, 90, 174, 0.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 245, 255, 0.98) 100%);
}

.match-time-tool-market,
.match-time-tool-note,
.match-time-tool-output {
  margin: 0;
}

.match-time-tool-market {
  color: #4658b6;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-time-tool-output {
  color: #102038;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.15;
}

.match-time-tool-note {
  color: #556882;
}

.match-time-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.match-time-hub-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.match-time-hub-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.match-time-hub-zone {
  color: #5e6f90;
  font-size: 0.85rem;
  font-weight: 800;
}

.match-time-hub-card h2,
.match-time-hub-card p {
  margin: 0;
}

.match-time-hub-card h2 {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.match-time-hub-card h2 a {
  color: #102038;
  text-decoration: none;
}

.match-time-hub-card h2 a:hover {
  color: #164fbd;
}

.match-time-hub-card p {
  color: #556882;
}

.match-time-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.match-time-overview-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(70, 88, 182, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
}

.match-time-overview-card p,
.match-time-overview-card strong,
.match-time-overview-card span {
  margin: 0;
}

.match-time-overview-card p {
  color: #516582;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-time-overview-card strong {
  color: #102038;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
}

.match-time-overview-card span {
  color: #5d6f8d;
  font-size: 0.95rem;
  line-height: 1.45;
}

.timezone-browser-shell {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 30px;
}

.timezone-browser-copy h2,
.timezone-browser-copy p {
  margin: 0;
}

.timezone-browser-copy h2 {
  color: #0f1c34;
}

.timezone-browser-copy p {
  margin-top: 0.55rem;
  color: #536781;
}

.timezone-stage-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.85rem;
}

.timezone-stage-step {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  min-height: 90px;
  padding: 0.95rem 0.75rem;
  border: 1px solid rgba(64, 82, 170, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: #243757;
  font: inherit;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(18, 31, 56, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.timezone-stage-step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(76, 92, 190, 0.28);
  border-radius: 999px;
  color: #5165d8;
  font-size: 0.95rem;
  font-weight: 900;
}

.timezone-stage-step strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.timezone-stage-step:hover,
.timezone-stage-step:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(76, 92, 190, 0.34);
}

.timezone-stage-step.is-active {
  border-color: rgba(76, 92, 190, 0.4);
  background: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
  box-shadow: 0 18px 34px rgba(76, 92, 190, 0.16);
}

.timezone-stage-step.is-active span {
  border-color: rgba(76, 92, 190, 0.54);
  background: #5165d8;
  color: #ffffff;
}

.timezone-browser-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 190px) repeat(2, minmax(0, 1fr)) auto auto;
  gap: 1rem;
  align-items: end;
}

.timezone-toolbar-badge {
  display: grid;
  gap: 0.35rem;
  min-height: 84px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(64, 82, 170, 0.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 241, 255, 0.96));
  box-shadow: 0 14px 30px rgba(18, 31, 56, 0.08);
}

.timezone-toolbar-badge p,
.timezone-toolbar-badge strong {
  margin: 0;
}

.timezone-toolbar-badge p {
  color: #5a6f8f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timezone-toolbar-badge strong {
  color: #0f1c34;
  font-size: 2rem;
  line-height: 1;
}

.alt-action {
  justify-content: center;
  border: 1px solid rgba(64, 82, 170, 0.18);
  background: #ffffff;
  color: #3348ba;
}

.timezone-browser-active {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.timezone-browser-active > div {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(14, 23, 43, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
}

.timezone-browser-active p,
.timezone-browser-active strong,
.timezone-browser-active a {
  margin: 0;
}

.timezone-browser-market-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.timezone-browser-market-flag {
  display: inline-flex;
  width: 42px;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f3f6ff;
}

.timezone-browser-market-flag:empty {
  display: none;
}

.timezone-browser-market-copy {
  display: grid;
  gap: 0.3rem;
}

.timezone-browser-active p {
  color: #5a6f8f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timezone-browser-active strong,
.timezone-browser-active a {
  color: #0f1c34;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.timezone-browser-active a:hover,
.timezone-browser-active a:focus-visible {
  color: #2a4aca;
  text-decoration: underline;
}

.timezone-browser-table {
  display: grid;
  gap: 1rem;
}

.timezone-browser-empty {
  padding: 1.2rem;
  border: 1px dashed rgba(64, 82, 170, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.timezone-browser-empty p {
  margin: 0;
  color: #5b6d87;
}

.timezone-browser-day {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  border: 1px solid rgba(21, 33, 54, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.timezone-browser-date {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(239, 243, 255, 0.94), rgba(231, 238, 255, 0.78));
}

.timezone-browser-date strong,
.timezone-browser-date span {
  margin: 0;
}

.timezone-browser-date strong {
  color: #102038;
  font-size: 1.2rem;
  line-height: 1.3;
}

.timezone-browser-date span {
  color: #5d6f8a;
  font-weight: 800;
}

.timezone-browser-date-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: #df8d34;
  color: #ffffff !important;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timezone-browser-match-list {
  display: grid;
}

.timezone-browser-match {
  display: grid;
  grid-template-columns: minmax(170px, 190px) minmax(0, 1fr) minmax(110px, 130px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(21, 33, 54, 0.08);
}

.timezone-browser-match:last-child {
  border-bottom: 0;
}

.timezone-browser-time,
.timezone-browser-team,
.timezone-browser-center {
  display: grid;
  gap: 0.25rem;
}

.timezone-browser-time strong,
.timezone-browser-team strong,
.timezone-browser-center strong,
.timezone-browser-time span,
.timezone-browser-team span,
.timezone-browser-center span {
  margin: 0;
}

.timezone-browser-time strong,
.timezone-browser-team strong {
  color: #102038;
  font-size: 1rem;
  line-height: 1.35;
}

.timezone-browser-time span,
.timezone-browser-team span {
  color: #62728d;
  font-size: 0.9rem;
  line-height: 1.45;
}

.timezone-browser-team-away {
  text-align: right;
}

.timezone-browser-center {
  justify-items: center;
  text-align: center;
}

.timezone-browser-center strong {
  color: #435ad0;
  font-size: 0.95rem;
}

.timezone-browser-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: #edf1ff;
  color: #435ad0 !important;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timezone-browser-status.is-live {
  background: #ffe7e7;
  color: #bf1d1d !important;
}

.timezone-browser-status.is-finished {
  background: #e7f6ec;
  color: #1f7a4d !important;
}

.timezone-browser-note {
  color: #62728d !important;
  font-size: 0.78rem;
  line-height: 1.35;
}

.timezone-region-section {
  display: grid;
  gap: 1rem;
}

.timezone-region-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 24px;
  background: var(--region-accent);
  color: #ffffff;
}

.timezone-region-header p,
.timezone-region-header h2,
.timezone-region-header span {
  margin: 0;
  color: inherit;
}

.timezone-region-header p {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.84;
}

.timezone-region-header h2 {
  margin-top: 0.3rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.timezone-region-header span {
  font-size: 0.94rem;
  font-weight: 900;
  opacity: 0.9;
}

.timezone-region-copy {
  margin: 0;
  color: #556882;
}

.timezone-region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.timezone-region-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
  border: 1px solid rgba(18, 31, 56, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 34px rgba(18, 31, 56, 0.08);
}

.timezone-region-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.timezone-region-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.timezone-region-offset {
  color: #586c8f;
  font-size: 0.84rem;
  font-weight: 900;
}

.timezone-market-flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid rgba(16, 32, 56, 0.12);
  box-shadow: 0 4px 12px rgba(16, 32, 56, 0.14);
  flex-shrink: 0;
}

.timezone-region-card h3,
.timezone-region-card p {
  margin: 0;
}

.timezone-region-card h3 {
  color: #102038;
  font-size: 1.12rem;
  line-height: 1.3;
}

.timezone-region-card h3 a {
  color: inherit;
  text-decoration: none;
}

.timezone-region-card h3 a:hover,
.timezone-region-card h3 a:focus-visible {
  color: #2349c8;
  text-decoration: underline;
}

.timezone-region-card p {
  color: #5b6f89;
}

.timezone-region-meta {
  display: grid;
  gap: 0.38rem;
  color: #556882;
  font-size: 0.92rem;
  line-height: 1.45;
}

.timezone-region-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
}

.timezone-region-table td:last-child,
.timezone-reference-table td:first-child {
  white-space: nowrap;
}

.homepage-content .schedule-live-shell-home .schedule-local-toolbar {
  border-color: rgba(210, 181, 77, 0.2);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(7, 31, 22, 0.14);
}

.homepage-content .schedule-live-shell-home .schedule-local-toolbar strong {
  color: #123328;
}

.homepage-content .schedule-live-shell-home .schedule-local-toolbar p {
  color: #5e6f68;
}

.homepage-content .schedule-live-shell-home .schedule-time-select,
.homepage-content .schedule-live-shell-home .schedule-reset-time {
  border-color: rgba(18, 51, 40, 0.16);
  color: #123328;
}

.homepage-content .schedule-live-shell-home .schedule-reset-time {
  background: #fff8d8;
  color: #4b3d11;
}

.home-schedule-actions {
  margin: 1.15rem 0 1.45rem;
  padding: 0.9rem;
  border: 1px solid rgba(210, 181, 77, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(7, 31, 22, 0.96), rgba(12, 49, 42, 0.94) 58%, rgba(23, 40, 57, 0.92)),
    radial-gradient(circle at 12% 0%, rgba(210, 181, 77, 0.22), transparent 32%);
  box-shadow: 0 18px 36px rgba(7, 31, 22, 0.16);
}

.home-schedule-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.home-schedule-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 1px solid rgba(244, 225, 151, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.homepage-content .home-schedule-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.home-schedule-links a:hover,
.home-schedule-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(244, 225, 151, 0.48);
  background: rgba(255, 255, 255, 0.13);
}

.home-schedule-links a.is-active {
  border-color: rgba(244, 225, 151, 0.58);
  background: linear-gradient(135deg, #d7bc53, #f2d872);
  color: #112a1f;
  box-shadow: 0 12px 22px rgba(210, 181, 77, 0.24);
}

.homepage-content .home-schedule-links a.is-active {
  color: #112a1f;
}

.home-schedule-actions p {
  margin: 0.75rem 0 0;
  color: rgba(235, 244, 237, 0.8);
  font-size: 0.9rem;
  font-weight: 800;
}

.home-schedule-actions p a {
  color: #f2d872;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.schedule-fixture-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.schedule-day-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.schedule-day-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(46, 73, 116, 0.18);
}

.schedule-day-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.36rem 0.75rem;
  border-radius: 999px;
  background: #071027;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.schedule-day-heading h3 {
  margin: 0;
  color: #071027;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.schedule-fixture-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
}

.schedule-match-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  border: 1px solid rgba(65, 90, 174, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, #edf3ff, #e4ebfb);
  color: #4156bd;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(31, 53, 110, 0.08);
}

.schedule-fixture-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 38%);
  gap: 1rem;
  min-height: 116px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(65, 90, 174, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 14px 30px rgba(31, 53, 110, 0.08);
}

a.schedule-fixture-card {
  color: inherit;
  text-decoration: none;
}

a.schedule-fixture-card:hover {
  border-color: rgba(18, 51, 40, 0.28);
  box-shadow: 0 20px 42px rgba(7, 31, 22, 0.12);
  transform: translateY(-1px);
}

a.schedule-fixture-card:focus-visible {
  outline: 3px solid rgba(210, 181, 77, 0.8);
  outline-offset: 4px;
}

.schedule-fixture-main {
  display: grid;
  gap: 0.8rem;
  align-content: center;
}

.schedule-fixture-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.schedule-card-teams {
  display: grid;
  gap: 0.45rem;
}

.schedule-fixture-live-note {
  margin: -0.1rem 0 0;
  color: #54657f;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.schedule-card-team {
  display: flex;
  align-items: center;
  min-width: 0;
  color: #071027;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 900;
  line-height: 1.18;
}

.schedule-card-team .team-inline {
  gap: 0.6rem;
}

.schedule-card-team .country-flag {
  width: 24px;
  height: auto;
}

.schedule-card-placeholder {
  color: #071027;
  font-size: 1.08rem;
  line-height: 1.35;
}

.schedule-fixture-meta {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 0.38rem;
  color: #6b7892;
  text-align: right;
}

.schedule-fixture-meta strong {
  color: #071027;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1;
}

.schedule-fixture-meta span {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.schedule-fixture-venue {
  color: #18223c;
}

.schedule-fixture-status {
  justify-self: end;
  margin-top: 0.2rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: #e7f8e9;
  color: #477359;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.homepage-content [data-schedule-content] .schedule-day-heading::after {
  background: rgba(210, 181, 77, 0.24);
}

.homepage-content [data-schedule-content] .schedule-day-pill {
  background: #123328;
  color: #fff8d8;
}

.homepage-content [data-schedule-content] .schedule-day-heading h3,
.homepage-content [data-schedule-content] .schedule-card-team,
.homepage-content [data-schedule-content] .schedule-card-placeholder,
.homepage-content [data-schedule-content] .schedule-fixture-meta strong {
  color: #123328;
}

.homepage-content [data-schedule-content] .schedule-match-number {
  border-color: rgba(210, 181, 77, 0.32);
  background: linear-gradient(180deg, #fff8d8, #f0e4ae);
  color: #123328;
}

.homepage-content [data-schedule-content] .schedule-fixture-card {
  border-color: rgba(18, 51, 40, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 249, 0.96)),
    radial-gradient(circle at 2% 0%, rgba(210, 181, 77, 0.14), transparent 28%);
  box-shadow: 0 14px 30px rgba(7, 31, 22, 0.08);
}

.homepage-content [data-schedule-content] .schedule-fixture-venue {
  color: #18392d;
}

.homepage-content [data-schedule-content] .schedule-fixture-live-note {
  color: #355646;
}

.homepage-content [data-schedule-content] .schedule-fixture-status {
  background: #e8f5ec;
  color: #2d6f47;
}

.schedule-fixture-list-page {
  gap: clamp(1.25rem, 2vw, 2rem);
  margin: 1.75rem 0 2.35rem;
}

.schedule-fixture-list-page .schedule-day-heading {
  gap: 1rem;
  margin: 0.35rem 0 0.4rem;
}

.schedule-fixture-list-page .schedule-day-heading::after {
  background: rgba(210, 181, 77, 0.28);
}

.schedule-fixture-list-page .schedule-day-pill {
  min-height: 46px;
  padding: 0.45rem 1rem;
  background: #123328;
  color: #fff8d8;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.schedule-fixture-list-page .schedule-day-heading h3 {
  color: #123328;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.schedule-fixture-list-page .schedule-fixture-item {
  grid-template-columns: clamp(72px, 6.5vw, 120px) minmax(0, 1fr);
  gap: clamp(0.9rem, 1.4vw, 1.45rem);
}

.schedule-fixture-list-page .schedule-match-number {
  min-height: clamp(150px, 12vw, 230px);
  border-color: rgba(210, 181, 77, 0.42);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffbe2, #f0e7ad);
  color: #123328;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  box-shadow: 0 18px 34px rgba(7, 31, 22, 0.08);
}

.schedule-fixture-list-page .schedule-fixture-card {
  min-height: clamp(150px, 12vw, 230px);
  padding: clamp(1.2rem, 1.7vw, 1.9rem) clamp(1.25rem, 2vw, 2.1rem);
  border-color: rgba(18, 51, 40, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 253, 251, 0.98)),
    radial-gradient(circle at 0% 0%, rgba(210, 181, 77, 0.12), transparent 28%);
  box-shadow: 0 18px 38px rgba(7, 31, 22, 0.08);
}

.schedule-fixture-list-page .schedule-fixture-main {
  gap: 1rem;
}

.schedule-fixture-list-page .schedule-card-teams {
  gap: 0.55rem;
}

.schedule-fixture-list-page .schedule-card-team,
.schedule-fixture-list-page .schedule-card-placeholder,
.schedule-fixture-list-page .schedule-fixture-meta strong {
  color: #123328;
}

.schedule-fixture-list-page .schedule-card-team {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.schedule-fixture-list-page .schedule-card-team .country-flag {
  width: 30px;
}

.schedule-fixture-list-page .schedule-fixture-meta {
  gap: 0.55rem;
}

.schedule-fixture-list-page .schedule-fixture-live-note {
  color: #355646;
  font-size: 1rem;
}

.schedule-fixture-list-page .schedule-fixture-meta strong {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.schedule-fixture-list-page .schedule-fixture-date {
  color: #707894;
  font-size: clamp(1rem, 1.25vw, 1.3rem);
}

.schedule-fixture-list-page .schedule-fixture-venue {
  color: #18392d;
  font-size: clamp(0.98rem, 1.15vw, 1.2rem);
}

.schedule-fixture-list-page .schedule-fixture-status {
  background: #e8f5ec;
  color: #2d6f47;
}

@media (max-width: 720px) {
  .schedule-live-hero {
    min-height: 250px;
    padding: 2rem 1rem 1.6rem;
    border-radius: 22px;
  }

  .schedule-live-hero h2 {
    font-size: 2.8rem;
  }

  .schedule-live-hero p {
    font-size: 0.98rem;
  }

  .schedule-live-hero span {
    width: 100%;
    margin-top: 2rem;
    padding: 0.75rem 0.85rem;
    border-radius: 18px;
    font-size: 0.82rem;
  }

  .schedule-local-toolbar {
    grid-template-columns: 1fr;
    margin: -1rem 0.7rem 0;
    padding: 0.9rem;
    border-radius: 18px;
  }

  .schedule-local-toolbar strong {
    font-size: 0.78rem;
  }

  .schedule-local-toolbar p {
    font-size: 0.84rem;
  }

  .match-time-tool-grid {
    grid-template-columns: 1fr;
  }

  .match-time-tool-shell,
  .match-time-tool-result,
  .match-time-hub-card {
    border-radius: 18px;
  }

  .match-time-tool-output {
    font-size: 1.3rem;
  }

  .match-time-overview-grid,
  .timezone-browser-active,
  .timezone-region-grid {
    grid-template-columns: 1fr;
  }

  .timezone-stage-track,
  .timezone-browser-toolbar,
  .timezone-browser-day,
  .timezone-browser-match {
    grid-template-columns: 1fr;
  }

  .timezone-stage-step {
    min-height: auto;
    padding: 0.85rem 0.7rem;
  }

  .timezone-browser-shell,
  .match-time-overview-card,
  .timezone-region-card,
  .timezone-browser-date {
    border-radius: 18px;
  }

  .timezone-browser-day {
    border-radius: 22px;
  }

  .timezone-browser-date,
  .timezone-browser-match {
    padding: 1rem;
  }

  .timezone-browser-team-away,
  .timezone-browser-center {
    text-align: left;
    justify-items: start;
  }

  .timezone-region-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .homepage-content .schedule-live-shell-home .schedule-live-hero {
    min-height: 230px;
  }

  .home-schedule-actions {
    margin: 1rem 0 1.25rem;
    padding: 0.75rem;
    border-radius: 16px;
  }

  .home-schedule-links {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .home-schedule-links a {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .home-schedule-actions p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .schedule-fixture-list {
    gap: 0.85rem;
  }

  .schedule-day-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .schedule-day-heading::after {
    display: none;
  }

  .schedule-day-heading h3 {
    font-size: 1.18rem;
  }

  .schedule-day-pill {
    justify-self: start;
    min-height: 32px;
    font-size: 0.76rem;
  }

  .schedule-fixture-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.55rem;
  }

  .schedule-match-number {
    min-height: 150px;
    border-radius: 16px;
    font-size: 1rem;
  }

  .schedule-fixture-card {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    min-height: 150px;
    padding: 0.9rem;
    border-radius: 16px;
  }

  .schedule-card-team {
    font-size: 1.05rem;
  }

  .schedule-card-team .country-flag {
    width: 22px;
  }

  .schedule-fixture-meta {
    justify-items: start;
    text-align: left;
  }

  .schedule-fixture-meta strong {
    font-size: 1.25rem;
  }

  .schedule-fixture-meta span {
    font-size: 0.82rem;
  }

  .schedule-fixture-status {
    justify-self: start;
  }

  .schedule-fixture-list-page .schedule-fixture-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .schedule-fixture-list-page .schedule-match-number,
  .schedule-fixture-list-page .schedule-fixture-card {
    min-height: 158px;
    border-radius: 18px;
  }

  .schedule-fixture-list-page .schedule-fixture-card {
    padding: 1rem;
  }

  .schedule-fixture-list-page .schedule-card-team {
    font-size: 1.08rem;
  }

  .schedule-fixture-list-page .schedule-card-team .country-flag {
    width: 22px;
  }

  .schedule-fixture-list-page .schedule-fixture-meta strong {
    font-size: 1.45rem;
  }
}

.broadcasting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.broadcasting-card {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.broadcasting-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.broadcasting-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.broadcasting-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.broadcasting-card h4 {
  margin: 0;
  color: var(--primary-strong);
  font-size: 1.15rem;
}

/* News page */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.9rem;
}

.news-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}

.news-card-media {
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e6ecf8;
}

.news-card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.news-card h3 {
  margin: 0;
  color: var(--primary-strong);
  font-size: 1.1rem;
  line-height: 1.35;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #1f57d8, #0f43b5);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}

.news-source {
  color: var(--primary-strong);
  font-weight: 700;
}

.news-index-intro {
  text-align: center;
}

.news-overline {
  margin: 0 0 0.45rem;
  color: #8a1538;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-section-title {
  margin: 0;
}

.news-index-lead {
  max-width: 820px;
  margin-inline: auto;
}

.news-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-category-card {
  border: 1px solid rgba(12, 30, 64, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(10, 23, 48, 0.06);
  padding: 1.1rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.8rem;
  scroll-margin-top: 130px;
}

.news-category-card-top {
  display: grid;
  gap: 0.35rem;
}

.news-category-count {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 79, 224, 0.08);
  color: var(--primary-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-category-card h3 {
  margin: 0;
  color: var(--primary-strong);
  font-size: 1.2rem;
  line-height: 1.25;
}

.news-category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.news-category-links {
  display: grid;
  gap: 0.65rem;
}

.news-category-link {
  display: grid;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(12, 30, 64, 0.08);
}

.news-category-link span:last-child {
  color: #12233f;
  font-weight: 700;
  line-height: 1.45;
}

.news-topic-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.news-topic-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(11, 35, 74, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-strong);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(10, 23, 48, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-topic-nav a:hover,
.news-topic-nav a:focus-visible {
  border-color: rgba(11, 35, 74, 0.32);
  box-shadow: 0 16px 34px rgba(10, 23, 48, 0.12);
  transform: translateY(-2px);
}

.news-newsroom,
.news-topic-section {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.news-topic-section {
  padding-top: 1.5rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(12, 30, 64, 0.1);
}

.news-newsroom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 1.25rem;
  align-items: stretch;
}

.news-lead-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(12, 30, 64, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 242, 251, 0.96));
  box-shadow: 0 18px 42px rgba(10, 23, 48, 0.08);
}

.news-lead-link {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-lead-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-lead-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.news-lead-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.news-lead-meta time {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.news-lead-card h2 {
  margin: 1rem 0 0.75rem;
  color: var(--primary-strong);
  font-size: clamp(1.8rem, 3.8vw, 2.3rem);
  line-height: 1.15;
}

.news-lead-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.news-sidebar-list {
  display: grid;
  gap: 1rem;
}

.news-headline-card {
  border: 1px solid rgba(12, 30, 64, 0.1);
  border-radius: 18px;
  background: rgba(247, 250, 255, 0.94);
  box-shadow: 0 14px 30px rgba(10, 23, 48, 0.06);
  overflow: hidden;
}

.news-headline-link {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-headline-link img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.news-headline-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1rem 1rem 1.05rem;
}

.news-headline-body h3 {
  margin: 0;
  color: var(--primary-strong);
  font-size: 1rem;
  line-height: 1.35;
}

.news-headline-body time {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-topic-section {
  scroll-margin-top: 130px;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(12, 30, 64, 0.12);
}

.news-topic-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.news-topic-kicker {
  margin: 0 0 0.35rem;
  color: #7c89b0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-topic-head h2 {
  margin: 0;
  color: var(--primary-strong);
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.3rem);
  letter-spacing: 0.035em;
  line-height: 1.15;
}

.news-topic-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.news-topic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.15rem;
  align-items: start;
}

.news-topic-feature {
  border: 1px solid rgba(169, 182, 217, 0.46);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
  box-shadow: 0 20px 40px rgba(10, 23, 48, 0.07);
  overflow: hidden;
}

.news-topic-feature-link {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  color: inherit;
  text-decoration: none;
}

.news-topic-feature-link img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.news-topic-feature-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.15rem 1.15rem 1.2rem;
}

.news-topic-feature-body h3 {
  margin: 0;
  color: #12233f;
  font-size: 1.28rem;
  line-height: 1.2;
}

.news-topic-feature-body p {
  margin: 0;
  color: #637392;
  font-size: 0.96rem;
  line-height: 1.64;
}

.news-topic-feature-body time {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-topic-list {
  display: grid;
  gap: 0.75rem;
}

.news-topic-list-item {
  border: 1px solid rgba(169, 182, 217, 0.4);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 26px rgba(10, 23, 48, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.news-topic-list-link {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0;
  color: inherit;
  text-decoration: none;
}

.news-topic-list-link img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  background: #dfe7f5;
}

.news-topic-list-item:hover,
.news-topic-list-item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(107, 127, 206, 0.36);
  box-shadow: 0 22px 38px rgba(10, 23, 48, 0.09);
}

.news-topic-list-copy {
  display: flex;
  flex-direction: column;
  gap: 0.46rem;
  padding: 0.95rem 1rem 1rem;
}

.news-topic-list-copy .news-premium-card-badge {
  align-self: flex-start;
}

.news-topic-list-copy h3 {
  margin: 0;
  color: #12233f;
  font-size: 1rem;
  line-height: 1.35;
}

.news-topic-list-copy p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.news-topic-list-copy time {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.news-premium-card {
  overflow: hidden;
  border: 1px solid rgba(175, 189, 223, 0.78);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 42px rgba(24, 39, 75, 0.09);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.news-premium-card-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-premium-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #dde5f4;
}

.news-premium-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #dde5f4;
  transition: transform 240ms ease;
}

.news-premium-card-media-link:hover .news-premium-card-media img,
.news-premium-card-media-link:focus-visible .news-premium-card-media img {
  transform: scale(1.03);
}

.news-premium-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.35rem 1.45rem 1.5rem;
}

.news-premium-card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.news-premium-card-badge {
  background: var(--primary);
  color: #ffffff;
  padding: 0.22rem 0.58rem;
  border-radius: 4px;
  border: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

.news-premium-card :is(h2, h3) {
  margin: 0;
  color: #18243f;
  font-size: 1.24rem;
  line-height: 1.28;
  text-wrap: balance;
}

.news-premium-card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.news-premium-card-title-link:hover,
.news-premium-card-title-link:focus-visible {
  color: var(--primary-strong);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.news-premium-card p {
  margin: 0;
  color: #6b7898;
  font-size: 0.98rem;
  line-height: 1.7;
}

.news-premium-card-meta time {
  color: #8a96b6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-archive-section {
  padding-top: 0.2rem;
}

.news-range-note {
  margin-top: 0.35rem;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.news-archive-grid .news-premium-card {
  height: 100%;
}

.news-archive-grid .news-premium-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-archive-grid .news-premium-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-pagination-wrap {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  margin-top: 1.4rem;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.news-pagination-link {
  min-width: 42px;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 30, 64, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-strong);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(10, 23, 48, 0.06);
}

.news-pagination-link.is-current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.news-pagination-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.featured-page-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Countdown Timer */
.countdown-wrap {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.countdown-trophy {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.5));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.countdown-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  min-width: 100px;
  backdrop-filter: blur(12px);
  text-align: center;
}

.countdown-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.countdown-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffcad2;
  font-weight: 600;
}

@media (max-width: 600px) {
  .home-hero {
    padding: 1.25rem 0 1.1rem !important;
  }

  .home-hero .hero-inner h1 {
    font-size: clamp(1.6rem, 9vw, 2.4rem);
  }

  .home-hero .hero-copy {
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
  }

  .home-hero .countdown-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    width: min(100%, 560px);
    padding: 0.92rem 0.78rem 0.8rem;
    gap: 0.82rem;
    border-radius: 16px;
  }

  .home-hero .countdown-intro {
    text-align: center;
    font-size: 0.96rem;
  }

  .home-hero .countdown-container {
    width: 100%;
    gap: 0.72rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .home-hero .countdown-container[data-home-hero-mode="live"] {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.72rem;
  }

  .home-hero .countdown-item {
    min-width: 64px;
    padding: 0.54rem 0.42rem 0.4rem;
  }

  .home-hero .countdown-item:not(:last-child)::after {
    display: none;
  }

  .home-hero .countdown-value {
    font-size: 1.25rem;
  }

  .home-hero .countdown-brand {
    justify-content: center;
    justify-self: center;
    align-self: center;
    margin-top: 0;
  }

  .home-hero .countdown-brand-official {
    width: 102px;
  }

  .home-hero-live-team,
  .home-hero-live-team-away {
    justify-content: center;
    text-align: center;
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .home-hero-live-score {
    min-width: min(100%, 182px);
    min-height: 88px;
    padding: 0.8rem 0.95rem;
  }

  .home-hero-live-team .country-flag {
    width: 30px;
    height: 22px;
  }

  .home-hero .hero-actions {
    gap: 0.5rem;
  }

  .countdown-container {
    gap: 0.8rem;
  }
  .countdown-item {
    min-width: 75px;
    padding: 0.8rem;
  }
  .countdown-value {
    font-size: 1.8rem;
  }
}

/* Standings Page Styles */
.standings-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  margin-top: 0.6rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
  background: linear-gradient(135deg, #c9a227, #e8c33a);
  border-color: #c9a227;
  color: #0a1628;
  font-weight: 800;
}

.standings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.3rem;
}

.group-panel {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--border);
}

.group-header {
  background: linear-gradient(120deg, #1f57d8, #0f43b5);
  color: #fff;
  padding: 0.78rem 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.92rem;
}

.standings-table col.col-team {
  width: 56%;
}

.standings-table col.col-num {
  width: 8.8%;
}

.standings-table th {
  background: var(--surface-soft);
  color: var(--muted);
  padding: 0.66rem 0.65rem;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.standings-table th.team-col,
.standings-table td.team-col {
  text-align: left;
  padding-left: 0.85rem;
}

.standings-table th.num-col,
.standings-table td.num-col {
  text-align: center;
}

.standings-table td {
  padding: 0.76rem 0.65rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.standings-table tr:last-child td {
  border-bottom: none;
}

.standings-table tr:nth-child(even) {
  background: var(--bg-alt);
}

.standings-table tr:hover td {
  background: #eef4ff;
}

.standings-table .team-cell {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  min-width: 0;
}

.standings-table .team-cell strong {
  min-width: 1.25rem;
  color: var(--primary-strong);
}

.standings-table .team-cell span,
.standings-table .team-cell a {
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.standings-team-link {
  color: var(--primary-strong);
  text-decoration: none;
}

.standings-team-link:hover,
.standings-team-link:focus-visible {
  text-decoration: underline;
}

.standings-table .pts-col {
  font-weight: 800;
  color: var(--primary-strong);
}

@media (max-width: 760px) {
  .standings-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .group-header {
    font-size: 0.95rem;
  }

  .standings-table {
    font-size: 0.85rem;
  }

  .standings-table th,
  .standings-table td {
    padding: 0.58rem 0.46rem;
  }

  .standings-table col.col-team {
    width: 52%;
  }

  .standings-table col.col-num {
    width: 9.6%;
  }
}

@media (max-width: 400px) {
  .standings-table td, .standings-table th {
    padding: 0.5rem 0.4rem;
    font-size: 0.79rem;
  }
}

/* Teams index: show local flag instead of photo */
.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card .card-body {
  padding-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.team-meta {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.team-flag-wrap {
  display: block;
  padding: 0;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border-bottom: 1px solid var(--border);
}

.team-flag-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

/* View Team button on team cards */
.team-card-btn-wrap {
  margin-top: auto;
  padding-top: 0.75rem;
  display: grid;
  gap: 0.55rem;
}

.btn-view-team {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: "Barlow", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 14px rgba(15, 79, 224, 0.28);
  width: 100%;
  justify-content: center;
}

.btn-view-team::after {
  content: "→";
  font-size: 0.9rem;
  transition: transform 0.18s ease;
}

.btn-view-team:hover {
  background: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 79, 224, 0.38);
}

.btn-view-team:hover::after {
  transform: translateX(3px);
}

.btn-view-team-kit {
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(12, 194, 160, 0.26);
}

.btn-view-team-kit:hover {
  background: #07977d;
  box-shadow: 0 8px 20px rgba(12, 194, 160, 0.34);
}

.section-heading-with-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.section-heading-with-action h2 {
  margin: 0;
}

.section-heading-kit-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(15, 79, 224, 0.22);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.section-heading-kit-link:hover {
  background: var(--primary-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 79, 224, 0.3);
}

@media (max-width: 640px) {
  .section-heading-with-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading-kit-link {
    width: 100%;
  }
}


.players-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.player-directory-card {
  overflow: hidden;
}

.players-grid .card-image {
  height: 240px;
  object-fit: cover;
  object-position: top center;
}

.players-grid .card-body {
  flex: 1;
}

.player-directory-body {
  display: grid;
  gap: 0.75rem;
}

.player-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.player-country {
  display: flex;
  align-items: center;
  min-height: 24px;
}

.player-country .team-inline {
  font-size: 0.95rem;
  font-weight: 700;
}

.player-quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

@media (max-width: 760px) {
  .team-flag-wrap {
    height: 150px;
  }

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

  .players-grid .card-image {
    height: 210px;
  }

  .player-card-meta {
    align-items: flex-start;
  }
}

/* --- Premium Player Cards --- */
.squad-section {
  padding: 0;
  background: transparent;
  border-radius: 0;
  margin-block: 0;
}

.team-feature-figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(180, 196, 224, 0.85);
  box-shadow: 0 20px 42px rgba(12, 31, 68, 0.12);
  background: #061018;
}

.team-feature-image {
  display: block;
  width: 100%;
  height: auto;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.player-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(10, 26, 54, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(176, 193, 224, 0.7);
}

.player-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(10, 26, 54, 0.18);
}

.player-image-wrap {
  position: relative;
  aspect-ratio: 4 / 4.35;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.3), transparent 48%),
    linear-gradient(180deg, #eff4fb 0%, #d7e3f2 100%);
}

.player-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.player-card:hover .player-image-wrap img {
  transform: scale(1.05);
}

.player-info {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.4rem;
  min-height: 12.75rem;
  padding: 1.35rem 1.5rem 1.45rem;
  background: linear-gradient(180deg, #162744 0%, #0f1c33 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.player-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 0.8;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 4px 18px rgba(7, 12, 22, 0.32);
}

.player-pos {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.player-card .player-name {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 2vw, 2rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: #f7fbff;
}

.player-card .player-club {
  margin: 0.15rem 0 0;
  font-size: 1rem;
  line-height: 1.35;
  color: rgba(231, 238, 248, 0.88);
  font-weight: 500;
}

.player-profile-link {
  align-items: center;
  align-self: stretch;
  border: 3px solid #d3b24f;
  border-radius: 999px;
  box-sizing: border-box;
  color: #d3b24f;
  display: inline-flex;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  justify-content: center;
  line-height: 1.1;
  margin-top: auto;
  min-height: 3.75rem;
  padding: 0.95rem 1.2rem;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  width: 100%;
}

.player-profile-link:hover {
  background: rgba(211, 178, 79, 0.12);
  border-color: #f0d36d;
  color: #f0d36d;
  transform: translateY(-1px);
}

.player-card .player-profile-link,
.player-card .player-profile-link:visited {
  color: #d3b24f;
}

.player-card .player-profile-link:hover,
.player-card .player-profile-link:focus-visible {
  color: #f0d36d;
}

.squad-list-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.squad-list-table th {
  text-align: left;
  padding: 1rem;
  background: var(--primary-strong);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.squad-list-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.squad-list-table tr:last-child td {
  border-bottom: none;
}

.squad-list-table tr:hover {
  background: var(--bg-alt);
}

/* Final mobile grid guard: keep cards comfortable on phones. */
@media (max-width: 760px) {
  .card-grid,
  .cities-card-grid,
  .stadiums-card-grid,
  .related-articles-grid,
  .groups-overview-grid,
  .matches-summary-grid,
  .players-grid,
  .standings-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile footer: show guide and legal columns side by side. */
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
    width: 100%;
  }

  .footer-column-social {
    grid-column: 1 / -1;
  }

  .footer-list {
    gap: 0.55rem;
  }
}

/* Mobile header menu should match the desktop white navigation shell. */
@media (max-width: 760px) {
  .nav-wrap,
  .site-header-home .nav-wrap {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 253, 0.96));
    border: 1px solid rgba(140, 167, 214, 0.28);
    box-shadow:
      0 18px 36px rgba(4, 9, 17, 0.14),
      0 8px 18px rgba(93, 130, 197, 0.1);
  }

  .site-nav {
    top: calc(var(--header-height) + 0.9rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 253, 0.96));
    border: 1px solid rgba(140, 167, 214, 0.28);
    box-shadow:
      0 20px 42px rgba(4, 9, 17, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px) saturate(150%);
  }

  .site-nav a {
    color: #131a22;
    font-weight: 700;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: #0f1115;
    color: #fff;
    box-shadow: 0 10px 22px rgba(15, 17, 21, 0.18);
  }

  .site-nav {
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    align-items: stretch;
    gap: 0.35rem;
    max-height: min(80vh, 620px);
  }

  .site-nav a {
    width: auto;
    padding: 0.72rem 0.78rem;
  }

  .site-nav.is-open {
    display: grid;
  }
}

@media (max-width: 380px) {
  .site-nav {
    grid-template-columns: 1fr;
  }
}

/* Mobile footer brand alignment. */
@media (max-width: 760px) {
  .footer-main {
    align-items: center;
  }

  .footer-brand-column {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .footer-brand-link {
    justify-content: center;
    width: 100%;
  }

  .footer-logo-mark {
    margin-inline: auto;
  }

  .footer-description {
    margin-inline: auto;
    text-align: center;
  }
}

/* Center social footer block on mobile. */
@media (max-width: 760px) {
  .footer-column-social {
    text-align: center;
  }

  .footer-column-social .footer-socials {
    justify-content: center;
  }
}

/* Gradient hero tone under the menu across inner pages. */
.hero {
  color: #f7fbff;
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.48), rgba(5, 8, 11, 0.78)),
    radial-gradient(circle at 50% 0%, rgba(255, 223, 130, 0.16), transparent 28%),
    linear-gradient(135deg, #073927 0%, #082e32 52%, #081923 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 -54px 84px rgba(5, 8, 11, 0.38);
}

.hero::before {
  opacity: 0.16;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 2px,
      transparent 2px,
      transparent 18px
    );
}

.hero::after {
  opacity: 0.55;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 215, 120, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(5, 8, 11, 0.06), rgba(5, 8, 11, 0.36));
}

.hero-inner h1 {
  color: #ffffff;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  color: rgba(246, 250, 255, 0.9);
}

.hero-publish-meta {
  margin: 0.8rem auto 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(246, 250, 255, 0.92);
}

.hero-publish-meta time {
  color: #ffffff;
}

.hero-update-meta {
  margin: 0.45rem auto 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(246, 250, 255, 0.84);
}

.hero-update-meta time {
  color: #ffffff;
}

.hero-author-meta {
  margin: 0.75rem auto 0;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-author-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.hero-author-avatar {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: #ffffff;
}

.hero-author-meta a {
  color: #ffffff;
  text-decoration: none;
}

.hero-author-link span {
  font-size: 0.96rem;
  line-height: 1.2;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0;
  text-shadow: none;
}

@media (max-width: 760px) {
  .hero-author-avatar {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hero-author-link span {
    font-size: 0.96rem;
  }
}

.author-premium-shell {
  max-width: 1120px;
  margin-inline: auto;
}

.author-premium-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1.6rem;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 213, 114, 0.18), transparent 35%),
    linear-gradient(145deg, #0a172a 0%, #11294a 55%, #163765 100%);
  box-shadow: 0 20px 44px rgba(7, 14, 26, 0.24);
  color: #f5f9ff;
}

.author-premium-media {
  position: relative;
}

.author-premium-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #fff;
}

.author-premium-copy h2 {
  margin: 0.3rem 0 0.95rem;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.5vw, 2.05rem);
}

.author-premium-role {
  margin: 0;
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-transform: uppercase;
}

.author-premium-copy p {
  color: rgba(235, 243, 255, 0.92);
  margin: 0 0 0.9rem;
  line-height: 1.7;
}

.author-premium-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.author-premium-chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #f6f9ff;
  font-size: 0.82rem;
  font-weight: 600;
}

.author-premium-grid {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.author-premium-panel {
  border-radius: 18px;
  border: 1px solid rgba(22, 52, 96, 0.18);
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  box-shadow: 0 14px 30px rgba(15, 36, 66, 0.08);
  padding: 1.1rem 1.1rem 0.45rem;
}

.author-premium-panel h2 {
  margin-top: 0;
}

.author-premium-contact {
  max-width: 1120px;
  margin-inline: auto;
  border-radius: 18px;
  border: 1px solid rgba(22, 52, 96, 0.14);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 36, 66, 0.07);
  padding: 1.05rem 1.2rem 0.35rem;
}

.authors-hub-intro {
  max-width: 1120px;
  margin-inline: auto;
}

.authors-hub-intro-card {
  border-radius: 20px;
  border: 1px solid rgba(20, 48, 90, 0.14);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 214, 122, 0.18), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #eef4ff 62%, #e7f0ff 100%);
  box-shadow: 0 14px 30px rgba(15, 36, 66, 0.1);
  padding: 1.2rem 1.25rem;
}

.authors-hub-overline {
  margin: 0;
  display: inline-block;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: rgba(15, 53, 107, 0.08);
  border: 1px solid rgba(15, 53, 107, 0.18);
  color: #153e74;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}

.authors-hub-intro-card h2 {
  margin: 0.8rem 0 0.65rem;
}

.authors-hub-intro-card p {
  margin: 0;
  color: #2b4b73;
}

.authors-hub-chips {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.authors-hub-chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.68rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(18, 51, 97, 0.16);
  color: #173f73;
  font-size: 0.82rem;
  font-weight: 600;
}

.authors-hub-grid {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1rem;
}

.authors-hub-feature {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(6, 11, 18, 0.22), rgba(6, 11, 18, 0.65)),
    linear-gradient(140deg, #0a172a 0%, #13305a 60%, #1a4580 100%);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(7, 14, 26, 0.26);
}

.authors-hub-feature-link {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  text-decoration: none;
  color: inherit;
}

.authors-hub-image-wrap {
  height: 100%;
}

.authors-hub-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.authors-hub-feature-body {
  padding: 1.15rem 1.1rem 1.1rem;
}

.authors-hub-role {
  margin: 0;
  display: inline-block;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f4f8ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.authors-hub-feature-body h2 {
  margin: 0.72rem 0 0.55rem;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
}

.authors-hub-feature-body p {
  margin: 0 0 0.78rem;
  color: rgba(235, 244, 255, 0.92);
  line-height: 1.64;
}

.authors-hub-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.83rem;
  font-weight: 700;
}

.authors-hub-panel {
  border-radius: 20px;
  border: 1px solid rgba(18, 49, 94, 0.14);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 36, 66, 0.09);
  padding: 1.15rem 1.05rem 0.55rem;
}

.authors-hub-panel h2 {
  margin-top: 0;
}

.authors-hub-panel p {
  color: #284a73;
}

.player-profile-hero {
  background:
    linear-gradient(120deg, rgba(10, 16, 32, 0.95), rgba(18, 32, 54, 0.88)),
    radial-gradient(circle at 76% 18%, rgba(246, 182, 200, 0.28), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(105, 201, 208, 0.24), transparent 30%);
  color: #fff;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}

.player-profile-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.player-profile-kicker {
  color: #85d5dc;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.player-profile-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.92;
  margin: 0 0 1rem;
  max-width: 760px;
}

.player-profile-figure {
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  justify-self: center;
  margin: 0;
  overflow: hidden;
  width: min(100%, 360px);
}

.player-profile-figure img {
  display: block;
  aspect-ratio: 4 / 4.35;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.player-profile-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.player-profile-layout > * {
  min-width: 0;
}

.player-profile-sidebar {
  display: grid;
  gap: 0.8rem;
  position: sticky;
  top: 120px;
}

.player-profile-portrait-card {
  background: #162033;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
  margin: 0 0 0.45rem;
  overflow: hidden;
}

.player-profile-portrait-card img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.player-profile-portrait-card:has(img[src^="/assets/teams/"]) {
  display: none;
}

.player-profile-stat-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  padding: 1rem;
}

.player-profile-stat-card span {
  color: #64748b;
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.player-profile-stat-card strong {
  color: #0f172a;
  display: block;
  font-size: 1.12rem;
}

.player-profile-article {
  max-width: 920px;
}

.player-profile-quick-answer {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 4px solid #69c9d0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  margin: 1.35rem 0 1.7rem;
  padding: 1.1rem 1.2rem 0.15rem;
}

.player-profile-quick-label {
  color: #102038 !important;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 1.65rem !important;
  line-height: 1.05 !important;
  margin: 0 0 0.65rem !important;
}

.player-profile-article h2 {
  border-left: 4px solid #69c9d0;
  padding-left: 0.85rem;
}

.player-profile-article h3 {
  color: #172554;
  font-size: 1.1rem;
}

.player-profile-layout .comments-section {
  grid-column: 1 / -1;
  margin-inline: auto;
  max-width: var(--container);
  width: 100%;
}

.comments-section {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.fwc-interaction-section {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.fwc-interaction-section .social-share {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
  padding-bottom: clamp(1.2rem, 2.4vw, 1.65rem);
}

.fwc-interaction-section .social-share-title {
  text-transform: uppercase;
  color: #102038;
}

.fwc-interaction-section .social-share-grid {
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.fwc-interaction-section .social-share-item {
  min-height: 46px;
  background: #f8fbff;
  border-color: rgba(15, 23, 42, 0.1);
}

.fwc-interaction-section > h2 {
  color: #27348b;
  text-transform: uppercase;
}

#cusdis_thread iframe {
  border-radius: 8px;
}

.match-article-layout {
  gap: clamp(1.2rem, 3vw, 2rem);
}

.match-article-card-section {
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.match-article-card {
  overflow: hidden;
  border: 1px solid rgba(15, 79, 224, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.match-article-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 1.6rem);
  color: #e8f0ff;
  background: linear-gradient(135deg, #12346f 0%, #164fbd 100%);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.match-article-card-body {
  display: grid;
  gap: clamp(1rem, 3vw, 1.6rem);
  padding: clamp(1.1rem, 3vw, 1.8rem);
}

.match-article-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.match-article-chips a.chip {
  text-decoration: none;
}

.match-article-chips a.chip:hover,
.match-article-chips a.chip:focus-visible {
  border-color: rgba(18, 52, 111, 0.28);
  color: #12346f;
}

.match-article-fixture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.7rem, 3vw, 1.4rem);
}

.match-article-live-note {
  margin: -0.4rem 0 0;
  color: #37516f;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.match-article-team {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: #071027;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
}

.match-article-team-away {
  justify-content: flex-end;
  text-align: right;
}

.match-article-team img {
  flex: 0 0 auto;
  width: 34px;
  height: 24px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

.match-article-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 56px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #f8fbff;
  color: #5c6b7d;
  font-weight: 900;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.match-article-score.is-countdown {
  flex-direction: column;
  min-width: 126px;
  min-height: 72px;
  gap: 0.18rem;
  padding: 0.6rem 0.85rem;
}

.match-article-score.is-state {
  flex-direction: column;
  min-width: 108px;
  min-height: 72px;
  gap: 0.18rem;
  padding: 0.6rem 0.85rem;
}

.match-article-score-label {
  color: #6c7b90;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.match-article-score-value {
  color: #12346f;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.match-article-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.match-article-meta-grid p {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  margin: 0;
  padding: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #f8fbff;
}

.match-article-meta-grid span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-article-meta-grid strong {
  color: #102038;
  font-size: 0.98rem;
  line-height: 1.35;
}

.match-feature-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.match-feature-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.match-feature-figure figcaption {
  padding: 0.8rem 1rem;
  color: #5c6b7d;
  font-size: 0.88rem;
}

.match-article-body .story-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.match-article-body h2 {
  border-left: 4px solid #69c9d0;
  padding-left: 0.85rem;
}

.match-check-also {
  padding: 1rem;
  border: 1px solid rgba(15, 79, 224, 0.14);
  border-radius: 8px;
  background: #f8fbff;
  color: #102038;
  font-weight: 700;
}

.match-check-also a {
  color: #164fbd;
}

.match-teams-link {
  color: inherit;
  text-decoration: none;
}

.match-teams-link:hover {
  color: #164fbd;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.schedule-fixture-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  background: #102038;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.schedule-fixture-link:hover {
  background: #164fbd;
  color: #ffffff;
}

.match-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.match-category-layout--match-preview {
  gap: 1.5rem;
}

.match-category-summary,
.match-category-featured-wrap {
  display: grid;
  gap: 1.15rem;
}

.match-category-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.match-category-layout--match-preview .match-category-stat-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.match-category-stat-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.match-category-stat-card span {
  color: #5f7085;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-category-stat-card strong {
  color: #102038;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.match-category-featured {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.match-category-featured-link {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  color: inherit;
  text-decoration: none;
}

.match-category-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.match-category-featured-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.match-category-featured-copy h2,
.match-category-featured-copy p {
  margin: 0;
}

.match-category-featured-copy h2 {
  color: #102038;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.08;
}

.match-category-featured-copy p {
  color: #5c6b7d;
  font-size: 1rem;
  line-height: 1.6;
}

.match-category-card {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.match-category-card a {
  display: grid;
  gap: 0.85rem;
  height: 100%;
  padding-bottom: 1rem;
  color: inherit;
  text-decoration: none;
}

.match-category-card img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.match-category-card-media-fallback {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  min-height: 180px;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(244, 225, 151, 0.12), transparent 28%),
    linear-gradient(180deg, #1f2746 0%, #121a34 100%);
  color: #f8fbff;
}

.match-category-card-media-fallback strong,
.match-category-card-media-fallback small,
.match-category-card-media-fallback span {
  margin: 0;
}

.match-category-card-media-stage {
  color: rgba(236, 243, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.match-category-card-media-fallback strong {
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.12;
}

.match-category-card-media-fallback small {
  color: rgba(236, 243, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
}

.match-category-card .chip,
.match-category-card h2,
.match-category-card p {
  margin-inline: 1rem;
}

.match-category-card h2 {
  margin-block: 0;
  color: #102038;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.match-category-card p {
  margin-block: 0;
  color: #5c6b7d;
}

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

.match-category-layout--compact-cards .match-category-card {
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 250, 255, 1) 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.match-category-layout--compact-cards .match-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 79, 189, 0.26);
  box-shadow: 0 24px 48px rgba(16, 32, 56, 0.14);
}

.match-category-layout--compact-cards .match-category-card a {
  gap: 0.72rem;
  padding-bottom: 0.95rem;
}

.match-category-layout--compact-cards .match-category-card img {
  display: block;
  height: clamp(108px, 9vw, 132px);
  min-height: 0;
  object-position: center top;
}

.match-category-layout--compact-cards .match-category-card-media-fallback {
  min-height: clamp(108px, 9vw, 132px);
  padding: 0.85rem;
}

.match-category-layout--compact-cards .match-category-card-media-fallback strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.match-category-layout--compact-cards .match-category-card h2 {
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.16;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.match-category-layout--compact-cards .match-category-card p {
  font-size: 0.96rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.match-category-layout--compact-cards .match-category-card .chip,
.match-category-layout--compact-cards .match-category-card h2,
.match-category-layout--compact-cards .match-category-card p {
  margin-inline: 0.85rem;
}

.match-category-answer-wrap,
.match-category-insight-wrap {
  display: grid;
  gap: 1rem;
}

.match-category-answer-card,
.match-category-insight-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  border: 1px solid rgba(18, 51, 40, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(210, 181, 77, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.match-category-answer-card h2,
.match-category-insight-card h2,
.match-category-answer-item h3 {
  margin: 0;
  color: #102038;
}

.match-category-answer-card p,
.match-category-insight-card p,
.match-category-answer-item p {
  margin: 0;
  color: #4f5f73;
  line-height: 1.72;
}

.match-category-answer-card {
  display: grid;
  gap: 0.95rem;
}

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

.match-category-answer-item {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.match-category-insight-card a {
  color: #164fbd;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

@media (max-width: 980px) {
  .match-category-grid--fourup {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .match-category-layout--match-preview .match-category-stat-row,
  .match-category-answer-grid,
  .match-category-grid--fourup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .match-category-stat-row {
    grid-template-columns: 1fr;
  }

  .match-category-layout--match-preview .match-category-stat-row,
  .match-category-answer-grid,
  .match-category-grid--fourup {
    grid-template-columns: 1fr;
  }

  .match-category-featured-link {
    grid-template-columns: 1fr;
  }

  .match-article-card-top {
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .match-article-card-top span:last-child {
    margin-left: auto;
  }

  .home-live-scorecard-panel {
    padding: 1rem !important;
  }

  .home-live-scorecard-panel .home-section-head {
    margin-bottom: 1rem;
  }

  .homepage-content .home-live-scorecard-panel .home-section-head h2 {
    font-size: clamp(1.55rem, 7vw, 1.85rem);
    line-height: 1.08;
  }

  .match-article-card-body {
    gap: 0.85rem;
    padding: 0.9rem;
  }

  .match-article-chips {
    justify-content: center;
    gap: 0.45rem;
  }

  .match-article-fixture,
  .match-article-meta-grid {
    grid-template-columns: 1fr;
  }

  .match-article-fixture {
    justify-items: center;
    text-align: center;
  }

  .match-article-score {
    justify-self: center;
    width: min(100%, 184px);
    min-height: 60px;
  }

  .match-article-team,
  .match-article-team-away {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: clamp(1.1rem, 6vw, 1.5rem);
  }

  .match-article-team-away {
    flex-direction: row;
  }

  .match-article-team img {
    width: 30px;
    height: 22px;
  }

  .match-article-score.is-countdown,
  .match-article-score.is-state {
    min-width: 0;
    min-height: 64px;
    padding: 0.55rem 0.75rem;
  }

  .match-article-score-value {
    font-size: 1.05rem;
  }

  .match-article-meta-grid {
    gap: 0.65rem;
  }

  .match-article-meta-grid p {
    padding: 0.75rem;
  }

  .match-article-meta-grid strong {
    font-size: 0.92rem;
  }

  .match-article-live-note {
    text-align: center;
  }
}

@media (max-width: 920px) {
  .author-premium-card {
    grid-template-columns: 1fr;
  }

  .author-detail-card,
  .author-detail-grid {
    grid-template-columns: 1fr;
  }

  .author-detail-media {
    min-height: 250px;
  }

  .author-detail-photo {
    width: 205px;
    height: 205px;
  }

  .author-premium-photo {
    max-height: 420px;
  }

  .author-premium-grid {
    grid-template-columns: 1fr;
  }

  .authors-hub-grid {
    grid-template-columns: 1fr;
  }

  .authors-hub-feature-link {
    grid-template-columns: 1fr;
  }

  .authors-hub-image-wrap img {
    max-height: 420px;
  }

  .player-profile-hero-grid,
  .player-profile-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .player-profile-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }

  .player-profile-portrait-card {
    grid-column: 1 / -1;
    margin-inline: auto;
    max-width: 420px;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .player-profile-sidebar {
    grid-template-columns: 1fr;
  }
}

.hero .breadcrumb-list {
  background: rgba(8, 12, 18, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.86);
}

.hero .breadcrumb-list a,
.hero .breadcrumb-list li[aria-current="page"] {
  color: #ffffff;
}

.hero .breadcrumb-list li:not(:last-child)::after,
.hero .breadcrumb-list li:first-child a::before {
  color: rgba(255, 255, 255, 0.7);
}

/* Keep the hero tone visible behind the floating menu on every page. */
.site-header {
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.36), rgba(5, 8, 11, 0.68)),
    linear-gradient(135deg, #073927 0%, #082e32 52%, #081923 100%);
}

.site-header .header-topbar {
  background: rgba(5, 7, 12, 0.92);
}

@media (max-width: 760px) {
  .site-header {
    background:
      linear-gradient(180deg, rgba(5, 8, 11, 0.34), rgba(5, 8, 11, 0.62)),
      linear-gradient(135deg, #073927 0%, #082e32 52%, #081923 100%);
    padding-bottom: 0.7rem;
  }
}

/* Center the two-column footer link block on phones. */
@media (max-width: 760px) {
  .footer-grid {
    max-width: 360px;
    margin-inline: auto;
    justify-content: center;
  }

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

/* Prevent long mobile breadcrumbs from overlapping hero titles. */
@media (max-width: 760px) {
  .hero-inner nav[aria-label="Breadcrumb"] {
    position: static;
    display: flex;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .hero .breadcrumb-list {
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.3rem;
  }

  .hero-inner h1 {
    margin-top: 0;
  }
}

/* Shared premium content rhythm across article and guide pages. */
.section-block {
  width: 100%;
}

.content-text-col,
.article-content {
  max-width: 980px;
  margin-inline: auto;
}

.content-text-col p,
.article-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
  margin: 0 0 1.05rem;
}

.content-text-col a,
.article-content a {
  color: var(--primary-strong);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.section-block > h2,
.content-text-col h2,
.article-content h2,
.panel h2 {
  color: var(--primary-strong);
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.3rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 2rem 0 0.7rem;
}

.content-text-col h3,
.article-content h3 {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 1.35rem 0 0.55rem;
}

.section-block > h2:first-child,
.content-text-col h2:first-child,
.article-content h2:first-child,
.article-section:first-of-type h2,
.article-section:first-of-type h3 {
  margin-top: 0;
}

.premium-article {
  padding-bottom: 0.5rem;
}

.article-trust-panel {
  margin-top: 2rem;
  border: 1px solid rgba(44, 66, 114, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.98), rgba(240, 245, 255, 0.98));
  box-shadow: 0 14px 30px rgba(12, 28, 58, 0.08);
  padding: 1.35rem 1.4rem;
}

.article-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.article-trust-kicker {
  margin: 0 0 0.45rem;
  color: var(--primary-strong);
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.article-trust-copy p:last-child {
  margin-bottom: 0;
}

.article-trust-meta {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.article-trust-meta div {
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(44, 66, 114, 0.1);
}

.article-trust-meta dt {
  margin: 0 0 0.2rem;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-trust-meta dd {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.article-section {
  margin-top: 1.45rem;
}

.article-section:first-of-type {
  margin-top: 1.15rem;
}

.article-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.15rem;
}

.article-media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(44, 66, 114, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.98));
  box-shadow: 0 14px 30px rgba(12, 28, 58, 0.08);
}

.article-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f3f6fb;
}

@media (max-width: 860px) {
  .article-trust-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.article-media-card figcaption {
  display: grid;
  gap: 0.32rem;
  padding: 0.9rem 1rem 1rem;
}

.article-media-card-title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.article-media-card-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.team-kit-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 36rem));
  justify-content: center;
  gap: 1.25rem;
  margin: 1.15rem 0 1.45rem;
}

.team-kit-inline-wrap {
  margin: 0.85rem 0 1.2rem;
}

.kits-overview-intro {
  position: relative;
}

.kits-overview-summary {
  background:
    radial-gradient(circle at 8% 10%, rgba(247, 215, 116, 0.22), transparent 30%),
    radial-gradient(circle at 92% 0%, rgba(15, 79, 224, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.94));
  border: 1px solid rgba(18, 42, 62, 0.1);
  box-shadow: 0 20px 48px rgba(9, 23, 36, 0.1);
  overflow: hidden;
  position: relative;
}

.kits-overview-summary::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  content: "";
  height: 0.32rem;
  inset: 0 0 auto;
  position: absolute;
}

.kits-overview-summary h2 {
  color: var(--primary-strong);
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}

.kits-overview-summary p {
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

.kits-overview-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.15rem 0;
}

.kits-overview-stats span {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 251, 0.96));
  border: 1px solid rgba(15, 79, 224, 0.12);
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(9, 23, 36, 0.08);
  color: var(--text);
  display: flex;
  font-weight: 800;
  gap: 0.55rem;
  justify-content: center;
  padding: 0.9rem 0.8rem;
}

.kits-overview-stats span::before {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 999px;
  content: "";
  height: 0.62rem;
  width: 0.62rem;
}

.kits-overview-group > p {
  color: var(--muted);
  margin-top: -0.35rem;
}

.kits-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.35rem;
}

.kits-overview-card {
  border: 1px solid rgba(18, 42, 62, 0.12);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.94)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(9, 23, 36, 0.1);
  padding: 1rem;
}

.kits-overview-card h3 {
  margin: 0 0 0.5rem;
}

.kits-overview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.kits-overview-meta span {
  border-radius: 999px;
  background: rgba(15, 64, 88, 0.09);
  color: var(--primary-strong);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
}

.kits-overview-card-copy {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.65;
  margin: 0 0 0.95rem;
}

.kits-overview-images {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.kits-overview-thumb,
.kits-overview-placeholder {
  align-items: center;
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(160deg, #f4f7f9, #dfe8ee);
  border-radius: 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  text-align: center;
}

.kits-overview-thumb {
  position: relative;
}

.kits-overview-thumb img {
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
  width: 100%;
}

.kits-overview-thumb figcaption,
.kits-overview-placeholder span {
  background: rgba(7, 17, 25, 0.75);
  border-radius: 999px;
  bottom: 0.35rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  position: absolute;
  text-transform: capitalize;
}

.kits-overview-placeholder {
  color: var(--muted);
  min-height: 8rem;
  position: relative;
}

.kits-overview-placeholder small {
  color: var(--muted);
  font-size: 0.75rem;
  padding: 2.4rem 0.55rem 0;
}

.kits-overview-details {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kits-overview-details li {
  border-left: 3px solid var(--accent);
  background: rgba(15, 64, 88, 0.06);
  border-radius: 0.65rem;
  color: var(--text);
  font-weight: 600;
  padding: 0.55rem 0.7rem;
}

.kits-overview-card-link {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  margin-top: 0.95rem;
  padding: 0.72rem 1rem;
  text-decoration: none;
}

.kits-overview-card-link:hover {
  transform: translateY(-1px);
}

.team-kit-premium-card--inline {
  max-width: 38rem;
  margin: 0 auto;
}

.team-kit-premium-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15, 79, 224, 0.16);
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  box-shadow: 0 18px 38px rgba(12, 28, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.team-kit-premium-card::before {
  display: none;
}

.team-kit-premium-card::after {
  display: none;
}

.team-kit-premium-card:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 194, 160, 0.34);
  box-shadow: 0 24px 46px rgba(12, 28, 58, 0.11);
}

.team-kit-premium-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 21rem;
  margin: 0;
  padding: 0.9rem 0.9rem 0.35rem;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(12, 194, 160, 0.12), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #f9fbff, #edf4ff);
}

.team-kit-premium-media::before {
  display: none;
}

.team-kit-premium-media::after {
  display: none;
}

.team-kit-premium-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 20.75rem;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 12px 18px rgba(14, 32, 68, 0.06));
  position: relative;
  z-index: 1;
}

.team-kit-premium-media--placeholder {
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 10%, rgba(109, 136, 216, 0.08), rgba(255, 255, 255, 0) 42%),
    #ffffff;
}

.team-kit-premium-placeholder {
  width: min(74%, 17rem);
  aspect-ratio: 0.82;
  display: grid;
  place-items: center;
  clip-path: polygon(22% 8%, 34% 0, 66% 0, 78% 8%, 100% 18%, 92% 37%, 86% 100%, 14% 100%, 8% 37%, 0 18%);
  border: 1px solid rgba(170, 185, 230, 0.5);
  box-shadow:
    0 14px 28px rgba(12, 28, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.team-kit-premium-placeholder--home {
  background:
    linear-gradient(180deg, rgba(241, 245, 255, 0.98), rgba(217, 226, 252, 0.98));
}

.team-kit-premium-placeholder--away {
  background:
    linear-gradient(180deg, rgba(233, 238, 251, 0.98), rgba(201, 213, 246, 0.98));
}

.team-kit-premium-placeholder span {
  padding: 0 1rem;
  color: #4b5dc3;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.team-kit-premium-body {
  display: grid;
  gap: 0.6rem;
  width: 100%;
  margin: 0;
  padding: 1.15rem 1.25rem 1.3rem;
  border-top: 1px solid rgba(15, 79, 224, 0.12);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  justify-items: stretch;
}

.team-kit-premium-kicker {
  margin: 0;
  color: var(--primary-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-kit-premium-title {
  margin: 0;
  color: #162038;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.3;
  width: 100%;
  letter-spacing: 0;
  text-transform: none;
}

.team-kit-premium-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
  width: 100%;
}

.featured-page-image {
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(12, 31, 68, 0.12);
  margin-bottom: 1.7rem;
}

.article-content .detail-list,
.content-text-col .detail-list {
  margin: 0.8rem 0 1.35rem;
  padding: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(12, 28, 58, 0.06);
}

.article-content .detail-list li,
.content-text-col .detail-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.article-content .detail-list li::before,
.content-text-col .detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--primary-strong);
}

.faq-list,
.faq-accordion {
  display: grid;
  gap: 0.75rem;
  margin: 0.85rem 0 1.55rem;
}

@media (max-width: 760px) {
  .page-stack {
    padding: 1.45rem 0 2.3rem;
  }

  .content-text-col p,
  .article-content p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .featured-page-image {
    border-radius: 18px;
    margin-bottom: 1.25rem;
  }

  .article-media-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .team-kit-premium-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .kits-overview-grid,
  .kits-overview-stats {
    grid-template-columns: 1fr;
  }

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

  .team-kit-premium-media {
    min-height: 20rem;
    margin: 0;
    padding: 0.75rem 0.75rem 0.2rem;
  }

  .team-kit-premium-body {
    padding: 1rem 1.05rem 1.15rem;
  }

  .team-kit-premium-media img {
    max-height: 19.5rem;
  }

  .article-content .detail-list,
  .content-text-col .detail-list {
    border-radius: 16px;
    padding: 0.85rem;
  }
}

/* Homepage now follows the same premium content system as guide pages. */
.homepage-content {
  padding-top: 2.2rem;
}

.homepage-content > .section-block,
.homepage-content > .detail-grid {
  margin-bottom: 2rem;
}

.home-intro-block {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.home-intro-inner {
  max-width: 820px;
  margin-inline: auto;
}

.home-intro-block h2,
.homepage-content .home-panel h2 {
  color: var(--primary-strong);
  font-family: "Bebas Neue", "Barlow", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.home-intro-block h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.3rem) !important;
}

.home-intro-block p,
.homepage-content .home-panel p {
  color: var(--muted) !important;
  line-height: 1.75 !important;
}

.home-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
}

.home-panel-accent {
  border-top: 4px solid var(--primary);
}

.home-panel-soft {
  background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 100%);
  border-left: 4px solid var(--primary-strong);
}

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.home-section-head h2 {
  margin: 0 !important;
  color: var(--primary-strong);
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.3rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.home-detail-grid {
  gap: 1.2rem;
}

.home-detail-grid > .panel,
.home-mini-card,
.streaming-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(12, 28, 58, 0.07);
  padding: 1.25rem;
}

.home-mini-card {
  background: var(--surface-soft);
}

.home-mini-card-accent {
  border-left: 4px solid var(--primary);
}

.homepage-content h3 {
  color: var(--primary-strong) !important;
}

.homepage-content .detail-list {
  margin-top: 0.75rem;
}

.homepage-content .detail-list[style*="columns"] {
  columns: 2;
  column-gap: 2rem;
}

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

.streaming-feature-card strong {
  color: var(--primary-strong) !important;
  display: block;
  margin-bottom: 0.45rem;
}

.streaming-feature-card p {
  font-size: 0.92rem !important;
  margin: 0 !important;
}

.homepage-content .btn-secondary {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .streaming-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .homepage-content {
    padding-top: 1.4rem;
  }

  .home-panel {
    border-radius: 18px;
    padding: 1rem;
  }

  .home-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-section-head .btn {
    width: 100%;
    justify-content: center;
  }

  .home-detail-grid {
    grid-template-columns: 1fr;
  }

  .homepage-content .detail-list[style*="columns"] {
    columns: 1;
  }

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

/* Align guide/content sections with card grids on index-style pages. */
.content-text-col {
  width: 100%;
  max-width: var(--container);
}

.article-content {
  max-width: 980px;
}

.travel-guides-section {
  display: grid;
  gap: 1.6rem;
  justify-items: center;
}

.travel-guides-head {
  justify-content: center;
  text-align: center;
}

.travel-guides-head .section-note {
  max-width: 720px;
  margin: 0 auto;
}

.travel-hub-card-grid {
  width: min(100%, 1140px);
  margin-inline: auto;
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.travel-hub-card-grid .card {
  width: 100%;
  min-height: 100%;
}

.travel-hub-card-grid .travel-card-image {
  height: 178px;
  background: var(--surface-soft);
}

.experience-guides-section {
  display: grid;
  justify-items: center;
}

.experience-hub-card-grid {
  width: min(100%, 1140px);
  margin-inline: auto;
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-hub-card-grid .card {
  width: 100%;
  min-height: 100%;
}

.experience-hub-card-grid .card-media img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  display: block;
}

.ticket-guides-section {
  display: grid;
  gap: 1.6rem;
  justify-items: center;
}

.ticket-guides-head {
  justify-content: center;
  text-align: center;
}

.ticket-guides-head .section-note {
  max-width: 720px;
  margin: 0 auto;
}

.ticket-hub-card-grid {
  width: min(100%, 1140px);
  margin-inline: auto;
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ticket-hub-card-grid .card {
  width: 100%;
  min-height: 100%;
}

.ticket-hub-card-grid .ticket-card-image {
  height: 178px;
  background: var(--surface-soft);
}

.visa-guides-section {
  display: grid;
  justify-items: center;
}

.visa-hub-card-grid {
  width: min(100%, 1140px);
  margin-inline: auto;
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visa-hub-card-grid .card {
  width: 100%;
  min-height: 100%;
}

.visa-hub-card-grid .card-image {
  height: 178px;
  background: var(--surface-soft);
}

@media (max-width: 700px) {
  .travel-hub-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .travel-hub-card-grid .travel-card-image {
    height: 210px;
  }

  .experience-hub-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-hub-card-grid .card-media img {
    height: 210px;
  }

  .ticket-hub-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ticket-hub-card-grid .ticket-card-image {
    height: 210px;
  }

  .visa-hub-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .visa-hub-card-grid .card-image {
    height: 210px;
  }
}

.home-intro-block,
.home-intro-inner {
  max-width: var(--container);
}

/* Homepage premium polish layer. */
.homepage-content {
  position: relative;
  padding-top: 2.6rem;
  padding-bottom: 3.2rem;
}

.homepage-content::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(1040px, 92vw);
  height: 420px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 20%, rgba(15, 79, 224, 0.08), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(12, 194, 160, 0.08), transparent 32%);
  pointer-events: none;
  z-index: -1;
}

.home-intro-block {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.96)),
    radial-gradient(circle at 18% 0%, rgba(15, 79, 224, 0.12), transparent 34%);
  border: 1px solid rgba(173, 190, 220, 0.72);
  border-radius: 30px;
  box-shadow: 0 24px 54px rgba(12, 31, 68, 0.12);
}

.home-intro-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #0a2e8a, #0f4fe0, #0cc2a0);
}

.home-intro-block::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 79, 224, 0.09), transparent 62%);
  pointer-events: none;
}

.home-intro-inner {
  position: relative;
  z-index: 1;
}

.home-intro-block h2 {
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  color: #132f74;
}

.home-intro-block p {
  max-width: 92ch;
  margin-left: auto;
  margin-right: auto;
}

.home-intro-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.homepage-content .stats-grid {
  margin-top: 1.7rem;
  gap: 1.15rem;
}

.homepage-content .stats-card {
  min-width: 180px;
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  border: 1px solid rgba(173, 190, 220, 0.78);
  box-shadow: 0 16px 34px rgba(12, 31, 68, 0.1);
}

.home-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 28px;
  border-color: rgba(173, 190, 220, 0.76);
  box-shadow: 0 18px 44px rgba(12, 31, 68, 0.1);
}

.home-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 79, 224, 0.38), transparent);
}

.home-panel-accent {
  border-top: 0;
}

.home-panel-accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0a2e8a, #0f4fe0, #0cc2a0);
}

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

.homepage-content .home-panel > h2,
.homepage-content .home-panel .home-section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  color: #132f74;
}

.homepage-live-detail-block {
  margin-top: 1.15rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(173, 190, 220, 0.76);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
  box-shadow: 0 14px 32px rgba(12, 31, 68, 0.08);
}

.homepage-live-detail-block h3 {
  margin: 0 0 0.9rem;
  color: #132f74;
  font-size: 1.05rem;
}

.homepage-live-timeline {
  display: grid;
  gap: 0.75rem;
}

.homepage-live-timeline-event {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(173, 190, 220, 0.56);
  background: rgba(255, 255, 255, 0.88);
}

.homepage-live-timeline-minute,
.homepage-live-timeline-score {
  color: #132f74;
  font-size: 0.95rem;
}

.homepage-live-timeline-body {
  min-width: 0;
}

.homepage-live-timeline-type {
  display: inline-block;
  margin-bottom: 0.22rem;
  color: var(--primary-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homepage-live-timeline-body p {
  margin: 0;
  color: var(--muted);
}

.homepage-live-stats {
  display: grid;
  gap: 0.72rem;
}

.homepage-live-lineups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.homepage-live-lineup-team {
  padding: 0.95rem 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(173, 190, 220, 0.56);
  background: rgba(255, 255, 255, 0.9);
}

.homepage-live-lineup-team-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.homepage-live-lineup-team-name {
  margin: 0;
  font-size: 1rem;
  color: #132f74;
}

.homepage-live-lineup-formation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 47, 116, 0.12);
  background: rgba(19, 47, 116, 0.06);
  color: #132f74;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.homepage-live-lineup-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.56rem;
}

.homepage-live-lineup-player {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}

.homepage-live-lineup-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #132f74;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.homepage-live-lineup-name {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.homepage-live-stat-row {
  display: grid;
  grid-template-columns: minmax(56px, 84px) minmax(0, 1fr) minmax(56px, 84px);
  align-items: center;
  gap: 0.8rem;
  padding: 0.78rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(173, 190, 220, 0.56);
  background: rgba(255, 255, 255, 0.9);
}

.homepage-live-stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  color: #132f74;
}

.homepage-live-stat-value-away {
  text-align: right;
}

.homepage-live-stat-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.homepage-live-stats-meta {
  margin: 0.9rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.homepage-content .home-panel > p {
  max-width: 92ch;
}

.homepage-content .table-responsive {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(12, 31, 68, 0.08);
}

.home-detail-grid > .panel,
.home-mini-card,
.streaming-feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-detail-grid > .panel:hover,
.home-mini-card:hover,
.streaming-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 79, 224, 0.28);
  box-shadow: 0 18px 38px rgba(12, 31, 68, 0.12);
}

.homepage-content .card {
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(12, 31, 68, 0.09);
}

.homepage-content .card-image {
  height: 210px;
}

.homepage-content .data-table th {
  background: #eef4ff;
  color: #314a70;
  letter-spacing: 0.04em;
}

.homepage-content .table-group-row td {
  background: #e7effc !important;
  color: #0a2e8a !important;
}

.streaming-feature-grid {
  margin-top: 1.15rem;
}

.streaming-feature-card {
  background:
    linear-gradient(180deg, #ffffff, #f7faff);
}

.home-live-stream-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.3rem, 2.6vw, 2rem) !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(12, 194, 160, 0.16), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(224, 199, 95, 0.08), transparent 22%),
    linear-gradient(180deg, #090d18 0%, #0e1324 52%, #101528 100%);
  border: 1px solid rgba(57, 139, 124, 0.34);
  border-radius: 32px;
  box-shadow:
    0 24px 60px rgba(3, 7, 20, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.home-live-stream-panel,
.home-live-scorecard-panel,
[data-homepage-live-streams],
[data-homepage-live-scorecard] {
  overflow-anchor: none;
}

.home-live-stream-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 120px),
    radial-gradient(circle at 82% 0%, rgba(12, 194, 160, 0.12), transparent 28%);
  pointer-events: none;
}

.home-live-stream-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(129, 160, 238, 0.08);
  pointer-events: none;
}

.live-stream-showcase,
.live-stream-showcase > * {
  position: relative;
  z-index: 1;
}

.live-stream-showcase {
  display: grid;
  gap: 1.15rem;
}

.live-stream-header {
  display: block;
  width: min(100%, 1074px);
  margin-inline: auto;
}

.live-stream-header-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.live-stream-header-text {
  display: grid;
  gap: 0.42rem;
  width: min(100%, 920px);
  margin-top: 0.7rem;
}

.live-stream-header-copy h2,
.live-stream-channel-dock h3,
.live-stream-hero-copy h3 {
  color: #f7f8fc !important;
}

.live-stream-header-copy h2 {
  margin: 0;
  flex: 1 1 520px;
  min-width: 0;
  font-size: clamp(1.9rem, 4.2vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.live-stream-header-copy p,
.live-stream-header-text p,
.live-stream-header-line,
.live-stream-channel-dock p,
.live-stream-hero-copy p,
.live-stream-sidebar-note {
  color: rgba(213, 219, 233, 0.72) !important;
}

.live-stream-header-text p,
.live-stream-header-line {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
  max-width: 78ch;
}

.live-stream-channel-dock,
.live-stream-chat-panel,
.live-stream-broadcaster-item {
  border: 1px solid rgba(57, 139, 124, 0.28);
  background: rgba(24, 31, 49, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.live-stream-layout {
  display: grid;
  grid-template-columns: minmax(0, 960px) minmax(248px, 292px);
  width: min(100%, 1310px);
  margin-inline: auto;
  gap: 1rem;
  align-items: start;
}

.live-stream-hero {
  position: relative;
  overflow: hidden;
  width: min(100%, 960px);
  max-width: 960px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin-inline: auto;
  border-radius: 24px;
  background: linear-gradient(180deg, #020406 0%, #030507 100%);
  border: 1px solid rgba(57, 139, 124, 0.22);
  box-shadow:
    0 18px 44px rgba(1, 4, 14, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.live-stream-chat-panel {
  --live-stream-chat-height: min(var(--live-stream-player-height, 540px), 540px);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(204, 0, 0, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(14, 22, 32, 0.96), rgba(11, 15, 24, 0.98));
}

.live-stream-chat-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.72rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 242, 255, 0.9);
}

.live-stream-chat-heading span {
  color: #ffdf7d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-stream-chat-heading strong {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.live-stream-chat-box {
  flex: 1 1 auto;
  display: flex;
  min-height: 320px;
  overflow: hidden;
  background: rgba(2, 4, 8, 0.4);
}

.live-stream-chat-panel.is-mobile-safe .live-stream-chat-box {
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  padding: 0.75rem;
}

.live-stream-chat-panel.is-mobile-safe .fwc-chatroom-embed {
  padding: 0.25rem;
}

.live-stream-chat-mobile-note {
  width: min(100%, 280px);
  padding: 1rem;
  border: 1px solid rgba(255, 223, 125, 0.26);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 223, 125, 0.12), rgba(12, 20, 31, 0.58));
  color: rgba(236, 242, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.live-stream-chat-box iframe,
.live-stream-chat-box object,
.live-stream-chat-box embed {
  width: 100% !important;
  height: 100% !important;
}

.fwc-chatroom {
  z-index: 9990;
  color: #f8fafc;
  font-family: inherit;
}

.fwc-chatroom:not(.is-embedded) {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
}

.fwc-chatroom.is-embedded {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  pointer-events: auto;
}

.fwc-chatroom-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 96px;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 223, 125, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(204, 0, 0, 0.95), rgba(18, 23, 31, 0.98) 58%),
    #111827;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(3, 7, 18, 0.34);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
}

.fwc-chatroom-launcher-dot {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 999px;
  background: #3ddc97;
  box-shadow: 0 0 0 5px rgba(61, 220, 151, 0.16);
}

.fwc-chatroom-shell {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  width: min(390px, calc(100vw - 2rem));
  height: min(620px, calc(100vh - 6.5rem));
  max-height: min(620px, calc(100vh - 6.5rem));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(5, 8, 14, 0.98)),
    #0b1018;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.fwc-chatroom.is-embedded .fwc-chatroom-shell {
  position: relative;
  inset: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #101119;
  transform: none;
}

.fwc-chatroom-shell.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fwc-chatroom-head {
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.36rem 0.62rem;
  border-bottom: 1px solid rgba(117, 121, 157, 0.22);
  background: #101119;
}

.fwc-chatroom.is-embedded .fwc-chatroom-head {
  padding: 0.36rem 0.62rem;
}

.fwc-chatroom-kicker,
.fwc-chatroom-embed-kicker {
  display: block;
  margin-bottom: 0.14rem;
  color: #ffdf7d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fwc-chatroom-title {
  margin: 0 !important;
  color: #ffffff !important;
  font-family: "Barlow", "Segoe UI", sans-serif !important;
  font-size: clamp(0.78rem, 1.2vw, 0.9rem) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.fwc-chatroom-title::after {
  content: none !important;
  display: none !important;
}

.fwc-chatroom-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.fwc-chatroom-support,
.content-text-col .fwc-chatroom-support,
.article-content .fwc-chatroom-support {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0.18rem 0.48rem;
  border: 1px solid rgba(255, 223, 125, 0.34);
  border-radius: 999px;
  background: rgba(255, 223, 125, 0.08);
  color: #ffdf7d !important;
  font-size: 0.62rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.fwc-chatroom-support:hover,
.fwc-chatroom-support:focus-visible,
.content-text-col .fwc-chatroom-support:hover,
.content-text-col .fwc-chatroom-support:focus-visible,
.article-content .fwc-chatroom-support:hover,
.article-content .fwc-chatroom-support:focus-visible {
  border-color: rgba(255, 223, 125, 0.62);
  background: rgba(255, 223, 125, 0.15);
  color: #ffffff !important;
  outline: none;
}

.fwc-chatroom-online {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  white-space: nowrap;
  color: rgba(189, 192, 211, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.fwc-chatroom-online-dot {
  display: inline-block;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: #00d46a;
  box-shadow: 0 0 0 3px rgba(0, 212, 106, 0.1);
}

.fwc-chatroom-close {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.fwc-chatroom.is-embedded .fwc-chatroom-close {
  display: none;
}

.fwc-chatroom-session {
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.26rem 0.56rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(61, 220, 151, 0.08);
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.58rem;
  font-weight: 800;
}

.fwc-chatroom-session-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.fwc-chatroom-session[hidden],
.fwc-chatroom-session:empty {
  display: none !important;
  padding: 0 !important;
  border: 0 !important;
}

.fwc-chatroom-session strong {
  padding: 0.12rem 0.44rem;
  border-radius: 999px;
  background: rgba(61, 220, 151, 0.18);
  color: #9ff4cb;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fwc-chatroom-session-logout {
  min-height: 22px;
  padding: 0.18rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.9);
  cursor: pointer;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fwc-chatroom-session-logout:hover,
.fwc-chatroom-session-logout:focus-visible {
  border-color: rgba(255, 223, 125, 0.38);
  background: rgba(255, 223, 125, 0.12);
  color: #ffffff;
  outline: none;
}

.fwc-chatroom-auth {
  grid-row: 5;
  padding: 0.58rem 0.6rem 0.64rem;
  border-top: 1px solid rgba(117, 121, 157, 0.22);
  background: #101119;
}

.fwc-chatroom-auth-toggle {
  grid-row: 4;
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: calc(100% - 1rem);
  height: 42px;
  min-height: 0;
  margin: 0.38rem auto;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(248, 250, 252, 0.96);
  cursor: pointer;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.fwc-chatroom-auth-toggle::before {
  content: "";
  position: absolute;
  top: -0.42rem;
  right: -0.5rem;
  left: -0.5rem;
  height: 1px;
  background: rgba(117, 121, 157, 0.22);
  pointer-events: none;
}

.fwc-chatroom-auth-toggle:hover,
.fwc-chatroom-auth-toggle:focus-visible {
  border-color: rgba(255, 223, 125, 0.38);
  background: rgba(255, 223, 125, 0.08);
  outline: none;
}

.fwc-chatroom-auth-toggle[hidden] {
  display: none !important;
}

.fwc-chatroom-auth[hidden],
.fwc-chatroom-composer[hidden],
.fwc-chatroom:not(.is-authenticated) .fwc-chatroom-composer {
  display: none !important;
}

.fwc-chatroom-auth-title {
  margin: 0 0 0.5rem;
  color: rgba(226, 232, 240, 0.84);
  font-size: clamp(0.74rem, 1.45vw, 0.88rem);
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
}

.fwc-chatroom-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.32rem;
  margin-bottom: 0.44rem;
}

.fwc-chatroom-tabs button,
.fwc-chatroom-form button,
.fwc-chatroom-composer button,
.fwc-chatroom-embed-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
}

.fwc-chatroom-tabs button {
  min-height: 30px;
  padding: 0.34rem 0.42rem;
  border-color: rgba(0, 214, 106, 0.26);
  background: rgba(255, 255, 255, 0.03);
  color: #00df7a;
  font-size: 0.72rem;
}

.fwc-chatroom-tabs button.is-active {
  border-color: rgba(0, 214, 106, 0.64);
  background: rgba(0, 214, 106, 0.11);
  color: #ffffff;
}

.fwc-chatroom-form {
  display: none;
  gap: 0.38rem;
}

.fwc-chatroom-form.is-active {
  display: grid;
}

.fwc-chatroom-form label {
  display: grid;
  gap: 0.2rem;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.64rem;
  font-weight: 800;
}

.fwc-chatroom-form input,
.fwc-chatroom-composer textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(2, 6, 15, 0.7);
  color: #ffffff;
  font: inherit;
  letter-spacing: 0;
  outline: none;
}

.fwc-chatroom-form input {
  min-height: 32px;
  padding: 0.42rem 0.58rem;
  font-size: 0.76rem;
}

.fwc-chatroom-form input:focus,
.fwc-chatroom-composer textarea:focus {
  border-color: rgba(255, 223, 125, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 223, 125, 0.12);
}

.fwc-chatroom-form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.fwc-chatroom-form button,
.fwc-chatroom-composer button,
.fwc-chatroom-embed-button {
  min-height: 30px;
  padding: 0.38rem 0.58rem;
  background: #cc0000;
  color: #ffffff;
  font-size: 0.72rem;
}

.fwc-chatroom-error {
  margin: 0.5rem 0 0;
  padding: 0.44rem 0.54rem;
  border: 1px solid rgba(255, 105, 97, 0.36);
  border-radius: 8px;
  background: rgba(204, 0, 0, 0.12);
  color: #ffd0cc;
  font-size: 0.72rem;
  line-height: 1.4;
}

.fwc-chatroom-messages {
  grid-row: 3;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.46rem 0.56rem;
  background: #101119;
  scrollbar-color: rgba(0, 214, 106, 0.44) rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
}

.fwc-chatroom-messages::-webkit-scrollbar {
  width: 8px;
}

.fwc-chatroom-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.fwc-chatroom-messages::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 214, 106, 0.66), rgba(255, 223, 125, 0.5));
}

.fwc-chatroom-empty {
  display: grid;
  min-height: 160px;
  place-items: center;
  color: rgba(226, 232, 240, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.fwc-chatroom-pinned-message {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.42rem;
  margin: 0 0 0.42rem;
  padding: 0.36rem 0.46rem;
  border: 1px solid rgba(255, 223, 125, 0.3);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 223, 125, 0.12), rgba(17, 17, 25, 0.96) 55%),
    #13141d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.fwc-chatroom-pinned-label {
  display: inline-grid;
  min-height: 20px;
  padding: 0.14rem 0.34rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 223, 125, 0.16);
  color: #ffdf7d;
  font-size: 0.54rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fwc-chatroom-pinned-copy {
  min-width: 0;
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.68rem;
  line-height: 1.28;
}

.fwc-chatroom-pinned-copy span {
  margin-right: 0.24rem;
  color: #00df7a;
  font-weight: 950;
}

.fwc-chatroom-pinned-copy time {
  margin-right: 0.24rem;
  color: rgba(146, 149, 181, 0.78);
  font-size: 0.86em;
  white-space: nowrap;
}

.fwc-chatroom-pinned-copy p {
  display: inline;
  margin: 0;
  overflow-wrap: anywhere;
}

.fwc-chatroom-pinned-message button {
  min-height: 22px;
  padding: 0.16rem 0.38rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 250, 252, 0.9);
  cursor: pointer;
  font-size: 0.56rem;
  font-weight: 900;
}

.fwc-chatroom-message {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.3rem;
  margin-bottom: 0.18rem;
  padding: 0.12rem 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.fwc-chatroom-message-badge {
  display: inline-grid;
  min-width: 24px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(0, 214, 106, 0.28);
  border-radius: 6px;
  background: rgba(0, 214, 106, 0.08);
  color: #00df7a;
  font-size: 0.54rem;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.fwc-chatroom-message.is-admin .fwc-chatroom-message-badge {
  border-color: rgba(255, 70, 88, 0.34);
  background: rgba(255, 70, 88, 0.1);
  color: #ff4b5c;
  font-size: 0.72rem;
}

.fwc-chatroom-message-line {
  color: rgba(219, 221, 234, 0.9);
  font-size: clamp(0.72rem, 1.25vw, 0.82rem);
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.fwc-chatroom-message-name {
  margin-right: 0.25rem;
  color: #00df7a;
  font-weight: 950;
}

.fwc-chatroom-message.is-admin .fwc-chatroom-message-name {
  color: #ff4b5c;
}

.fwc-chatroom-message-line time {
  margin-right: 0.24rem;
  color: rgba(146, 149, 181, 0.72);
  font-size: 0.72em;
  white-space: nowrap;
}

.fwc-chatroom-message-body {
  color: rgba(219, 221, 234, 0.92);
}

.fwc-chatroom-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.36rem;
}

.fwc-chatroom-message-actions button {
  min-height: 24px;
  padding: 0.18rem 0.42rem;
  border: 1px solid rgba(255, 223, 125, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(248, 250, 252, 0.88);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 900;
}

.fwc-chatroom-message-actions button.is-danger {
  border-color: rgba(255, 75, 92, 0.42);
  background: rgba(255, 75, 92, 0.12);
  color: #ff9ba5;
}

.fwc-chatroom-composer {
  grid-row: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.28rem;
  padding: 0.22rem 0.28rem;
  border-top: 1px solid rgba(117, 121, 157, 0.22);
  background: #101119;
}

.fwc-chatroom-composer textarea {
  height: 26px;
  min-height: 26px;
  max-height: 56px;
  resize: none;
  padding: 0.24rem 0.4rem;
  font-size: 0.68rem;
  line-height: 1.25;
}

.fwc-chatroom-composer button {
  min-height: 26px;
  padding: 0.24rem 0.5rem;
  font-size: 0.66rem;
}

.fwc-chatroom-embed {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0.5rem;
  color: #ffffff;
  overflow: hidden;
}

@media (max-width: 767px) {
  .live-stream-chat-panel {
    height: min(56vh, 420px);
    min-height: 320px;
    max-height: 420px;
  }

  .fwc-chatroom.is-embedded:not(.is-authenticated) .fwc-chatroom-shell {
    grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  }

  .fwc-chatroom.is-embedded.is-auth-expanded .fwc-chatroom-shell {
    grid-template-rows: auto auto minmax(0, 136px) auto auto;
  }

  .live-stream-chat-box,
  .live-stream-chat-panel.is-mobile-safe .live-stream-chat-box {
    min-height: 0;
  }

  .live-stream-chat-panel.is-mobile-safe .live-stream-chat-box {
    padding: 0.5rem;
  }

  .fwc-chatroom.is-embedded .fwc-chatroom-shell {
    border-radius: 18px;
  }

  .fwc-chatroom-head,
  .fwc-chatroom.is-embedded .fwc-chatroom-head {
    min-height: 38px;
    padding: 0.32rem 0.54rem;
  }

  .fwc-chatroom-title {
    font-size: 0.74rem !important;
  }

  .fwc-chatroom-online {
    font-size: 0.68rem;
  }

  .fwc-chatroom-support {
    min-height: 22px;
    padding: 0.16rem 0.38rem;
    font-size: 0.56rem;
  }

  .fwc-chatroom-auth {
    padding: 0.48rem 0.52rem 0.56rem;
    max-height: 168px;
    overflow-y: auto;
  }

  .fwc-chatroom-auth-toggle {
    width: calc(100% - 0.9rem);
    height: 38px;
    margin: 0.34rem auto;
    min-height: 0;
    padding: 0.42rem 0.7rem;
    font-size: 0.74rem;
  }

  .fwc-chatroom-auth-toggle::before {
    top: -0.38rem;
    right: -0.45rem;
    left: -0.45rem;
  }

  .fwc-chatroom-session {
    gap: 0.42rem;
    padding: 0.24rem 0.48rem;
    font-size: 0.54rem;
  }

  .fwc-chatroom-session-actions {
    gap: 0.28rem;
  }

  .fwc-chatroom-session strong,
  .fwc-chatroom-session-logout {
    font-size: 0.54rem;
  }

  .fwc-chatroom-session-logout {
    min-height: 20px;
    padding: 0.16rem 0.34rem;
  }

  .fwc-chatroom-auth-title {
    font-size: 0.72rem;
    margin-bottom: 0.42rem;
  }

  .fwc-chatroom-tabs {
    gap: 0.28rem;
    margin-bottom: 0.38rem;
  }

  .fwc-chatroom-tabs button,
  .fwc-chatroom-form button {
    min-height: 28px;
    font-size: 0.68rem;
  }

  .fwc-chatroom-form input {
    min-height: 30px;
    font-size: 0.72rem;
  }

  .fwc-chatroom-message-line {
    font-size: 0.7rem;
  }

  .fwc-chatroom-message-badge {
    min-width: 22px;
    height: 20px;
    font-size: 0.5rem;
  }

  .fwc-chatroom-message.is-admin .fwc-chatroom-message-badge {
    font-size: 0.68rem;
  }

  .fwc-chatroom-pinned-message {
    gap: 0.3rem;
    margin-bottom: 0.32rem;
    padding: 0.3rem 0.38rem;
    border-radius: 8px;
  }

  .fwc-chatroom-pinned-label,
  .fwc-chatroom-pinned-message button {
    font-size: 0.5rem;
  }

  .fwc-chatroom-pinned-copy {
    font-size: 0.64rem;
  }

  .fwc-chatroom-composer textarea {
    height: 24px;
    min-height: 24px;
    font-size: 0.66rem;
  }

  .fwc-chatroom-composer button {
    min-height: 24px;
    font-size: 0.64rem;
  }
}

.fwc-chatroom-embed-title {
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: 0;
}

.fwc-chatroom-embed p {
  margin: 0;
  color: rgba(226, 232, 240, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

.fwc-chatroom-embed-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.fwc-chatroom-embed-pills span {
  padding: 0.32rem 0.48rem;
  border: 1px solid rgba(255, 223, 125, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 900;
}

.fwc-chatroom-embed-button {
  width: 100%;
}

.live-stream-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 3, 6, 0.06) 0%, rgba(2, 3, 6, 0.42) 100%);
  pointer-events: none;
}

.live-stream-hero video,
.live-stream-iframe-viewport,
.live-stream-player-surface {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.live-stream-hero video {
  object-fit: cover;
  background: #030507;
}

.live-stream-player-frame {
  display: block;
  border: 0;
  background: #030507;
}

.live-stream-iframe-viewport {
  position: relative;
  overflow: hidden;
  background: #030507;
}

.live-stream-iframe-viewport .live-stream-player-frame {
  position: absolute;
  inset: 0 auto auto 0;
  width: 640px;
  height: 360px;
  max-width: none;
  min-height: 0;
  transform: scale(var(--live-stream-iframe-scale, 1));
  transform-origin: 0 0;
}

.live-stream-player-surface {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #040608 0%, #020305 100%);
}

.live-stream-player-surface::before,
.live-stream-player-surface::after {
  display: none;
}

.live-stream-player-lights {
  display: none;
}

.live-stream-player-pitch {
  display: none;
}

.live-stream-player-center-circle {
  display: none;
}

.live-stream-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.9rem;
  pointer-events: none;
}

.live-stream-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.live-stream-player-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
  width: 100%;
  pointer-events: none;
}

.live-stream-player-copy {
  display: grid;
  gap: 0.24rem;
  width: auto;
  margin-left: auto;
  text-align: right;
}

.live-stream-player-copy strong {
  color: #f7f8fc;
  font-size: 1.08rem;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.32);
}

.live-stream-player-support {
  width: fit-content;
  pointer-events: auto;
}

.live-stream-player-footer {
  position: absolute;
  right: 0.9rem;
  bottom: 5.9rem;
  display: grid;
  gap: 0.38rem;
  justify-items: end;
  width: auto;
  pointer-events: auto;
  z-index: 2;
}

.live-stream-player-support-note {
  color: rgba(245, 248, 255, 0.82);
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.live-stream-player-heading-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.live-stream-player-copy p {
  margin: 0;
  color: rgba(213, 219, 233, 0.7) !important;
  font-size: 0.78rem;
  line-height: 1.35;
}

.live-stream-badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.live-stream-badge,
.live-stream-region-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-stream-badge {
  color: #edf4ff;
  background: rgba(16, 22, 38, 0.52);
  border: 1px solid rgba(129, 160, 238, 0.34);
  backdrop-filter: blur(7px);
}

.live-stream-badge-gold {
  color: #ebd36a;
  border-color: rgba(235, 211, 106, 0.28);
}

.live-stream-badge.is-soon {
  color: #e9f1ff;
  background: rgba(40, 62, 122, 0.78);
  border-color: rgba(113, 151, 245, 0.68);
  box-shadow: 0 0 0 1px rgba(113, 151, 245, 0.16);
}

.live-stream-badge.is-live {
  color: #06111e;
  background: linear-gradient(135deg, #4cf0b8, #8ef7db);
  border-color: rgba(142, 247, 219, 0.72);
  box-shadow: 0 0 18px rgba(76, 240, 184, 0.28);
}

.live-stream-badge.is-ended {
  color: #ffe3ad;
  background: rgba(116, 79, 23, 0.62);
  border-color: rgba(243, 186, 86, 0.38);
}

.live-stream-badge.is-waiting {
  color: #d7dceb;
  background: rgba(44, 52, 78, 0.74);
  border-color: rgba(117, 131, 170, 0.42);
}

.live-stream-play-wrap {
  display: grid;
  place-items: center;
  flex: 1;
  gap: 0;
  pointer-events: auto;
}

.live-stream-play-button {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  background: rgba(112, 152, 255, 0.92);
  box-shadow: 0 18px 48px rgba(63, 109, 231, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.live-stream-play-button:hover,
.live-stream-play-button:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 24px 54px rgba(63, 109, 231, 0.42);
  outline: none;
}

.live-stream-play-button.is-pending {
  cursor: default;
}

.live-stream-play-button.is-pending:hover,
.live-stream-play-button.is-pending:focus-visible {
  transform: none;
  box-shadow: 0 18px 48px rgba(63, 109, 231, 0.34);
}

.live-stream-play-button svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  transform: translateX(3px);
}

.live-stream-ad-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 2vw, 1.4rem);
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 42%, rgba(12, 194, 160, 0.16), transparent 42%),
    rgba(3, 6, 13, 0.9);
  backdrop-filter: blur(14px);
}

.live-stream-ad-overlay.is-active {
  display: flex;
}

.live-stream-ad-card {
  position: relative;
  width: min(85%, 320px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.42);
  animation: liveStreamAdRise 0.28s ease-out;
}

@keyframes liveStreamAdRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.live-stream-ad-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(2, 6, 12, 0.78);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.live-stream-ad-close:hover,
.live-stream-ad-close:focus-visible {
  transform: scale(1.05);
  background: #d71f3f;
  outline: none;
}

.live-stream-ad-image {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-bottom: 3px solid #e8d35c;
}

.live-stream-ad-content {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 1rem 1.05rem;
  text-align: center;
}

.live-stream-ad-badge {
  justify-self: center;
  padding: 0.28rem 0.78rem;
  border-radius: 999px;
  background: linear-gradient(115deg, #ff7a18, #ff4d29);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.live-stream-ad-title {
  color: #102b3c;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.live-stream-ad-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.live-stream-ad-pills span {
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #0b2b3b;
  font-size: 0.62rem;
  font-weight: 800;
}

.live-stream-ad-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  background: linear-gradient(98deg, #00c6a7, #029c8a);
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 158, 115, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.live-stream-ad-cta:hover,
.live-stream-ad-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
  outline: none;
}

.live-stream-player-hint {
  display: none;
}

.live-stream-hero-footer {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.live-stream-hero-note {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(47, 124, 112, 0.28);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(9, 13, 21, 0.88), rgba(12, 17, 27, 0.94));
  backdrop-filter: blur(10px);
  color: #a8ece0;
  font-size: clamp(0.86rem, 1.08vw, 0.96rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  box-shadow: 0 12px 24px rgba(4, 8, 18, 0.24);
}

.live-stream-header-note {
  flex: 1 1 320px;
  max-width: min(100%, 560px);
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.live-stream-hero-copy h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.3rem, 1.8vw, 1.62rem);
}

.live-stream-hero-copy p {
  margin: 0;
  max-width: 56ch;
}

.live-stream-channel-dock {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0.95rem;
  border-radius: 24px;
  grid-column: 1 / -1;
  background:
    linear-gradient(180deg, rgba(18, 28, 38, 0.94), rgba(16, 24, 36, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.015), transparent 42%);
}

.live-stream-channel-dock-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 0.7rem;
}

.live-stream-channel-dock h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  font-size: clamp(1.18rem, 1.5vw, 1.42rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.live-stream-channel-dock h3::before {
  content: "";
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8d35c, #0cc2a0);
  box-shadow: 0 0 18px rgba(12, 194, 160, 0.24);
}

.live-stream-broadcaster-list {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0.45rem;
  align-items: center;
  padding-top: 0.35rem;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(63, 166, 145, 0.42) transparent;
}

.live-stream-broadcaster-list::-webkit-scrollbar {
  height: 6px;
}

.live-stream-broadcaster-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(63, 166, 145, 0.42);
}

.live-stream-broadcaster-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 0.92rem;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  color: rgba(236, 242, 255, 0.92);
  font: inherit;
  font-size: 0.92rem;
  line-height: 1;
  background: linear-gradient(180deg, rgba(17, 26, 34, 0.92), rgba(20, 30, 41, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.live-stream-broadcaster-item:hover,
.live-stream-broadcaster-item:focus-visible,
.live-stream-broadcaster-item.is-active {
  transform: translateY(-2px);
  border-color: rgba(38, 167, 141, 0.58);
  background: linear-gradient(180deg, rgba(18, 78, 69, 0.92), rgba(20, 62, 59, 0.98));
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 15, 34, 0.24);
  outline: none;
}

.live-stream-sidebar-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.95rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(76, 102, 170, 0.26);
  font-style: italic;
  font-size: 0.82rem;
}

.live-stream-sidebar-note svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: #c2cad8;
}

@media (min-width: 1121px) {
  .live-stream-chat-panel {
    height: var(--live-stream-chat-height);
    min-height: min(390px, var(--live-stream-chat-height));
    max-height: var(--live-stream-chat-height);
  }

  .live-stream-chat-box {
    min-height: 0;
  }
}

@media (max-width: 1120px) {
  .live-stream-header {
    width: min(100%, 1074px);
  }

  .live-stream-layout {
    grid-template-columns: minmax(0, 1074px);
    width: min(100%, 1074px);
  }

  .live-stream-hero {
    width: min(100%, 960px);
    max-width: 960px;
    min-height: 0;
  }

  .live-stream-hero video,
  .live-stream-player-surface {
    min-height: 0;
  }

  .live-stream-player-toolbar {
    flex-direction: column;
    align-items: flex-end;
  }

  .live-stream-player-heading-row {
    flex-direction: column;
    align-items: flex-end;
  }

  .live-stream-player-support {
    justify-self: end;
  }

  .live-stream-player-footer {
    right: 0.8rem;
    bottom: 5.2rem;
  }

  .live-stream-player-support-note {
    font-size: 0.5rem;
  }

  .live-stream-chat-panel {
    max-width: 960px;
    margin-inline: auto;
  }

}

@media (max-width: 760px) {
  .home-live-stream-panel {
    border-radius: 24px;
    padding: 1rem !important;
  }

  .homepage-live-detail-block {
    padding: 1rem;
  }

  .homepage-live-timeline-event {
    grid-template-columns: minmax(0, 1fr);
  }

  .homepage-live-lineups {
    grid-template-columns: minmax(0, 1fr);
  }

  .homepage-live-lineup-team-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .homepage-live-timeline-score,
  .homepage-live-timeline-minute {
    display: inline-flex;
  }

  .homepage-live-stat-row {
    grid-template-columns: minmax(48px, 68px) minmax(0, 1fr) minmax(48px, 68px);
    gap: 0.6rem;
  }

  .homepage-live-stat-value {
    font-size: 1.35rem;
  }

  .live-stream-header-copy h2 {
    flex: 0 0 auto;
    width: 100%;
    white-space: normal;
    font-size: clamp(1.72rem, 8.8vw, 2.45rem);
    line-height: 0.98;
  }

  .live-stream-header-copy {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .live-stream-header-text {
    margin-top: 0.1rem;
  }

  .live-stream-header-note {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .live-stream-hero {
    width: 100%;
    min-height: 0;
    border-radius: 22px;
  }

  .live-stream-hero video,
  .live-stream-player-surface {
    min-height: 0;
  }

  .live-stream-play-button {
    width: 76px;
    height: 76px;
  }

  .live-stream-play-button svg {
    width: 24px;
    height: 24px;
  }

  .live-stream-ad-card {
    width: min(88%, 190px);
    border-radius: 1.15rem;
  }

  .live-stream-ad-close {
    top: 0.38rem;
    right: 0.38rem;
    width: 24px;
    height: 24px;
    font-size: 0.92rem;
  }

  .live-stream-ad-image {
    height: 68px;
  }

  .live-stream-ad-content {
    gap: 0.28rem;
    padding: 0.4rem 0.58rem 0.52rem;
  }

  .live-stream-ad-badge {
    padding: 0.16rem 0.42rem;
    font-size: 0.48rem;
  }

  .live-stream-ad-title {
    font-size: 0.86rem;
  }

  .live-stream-ad-pills {
    display: none;
  }

  .live-stream-ad-cta {
    min-height: 28px;
    font-size: 0.64rem;
  }

  .live-stream-hero-note {
    width: 100%;
    padding: 0.72rem 1rem;
    font-size: 0.96rem;
  }

  .live-stream-channel-dock {
    border-radius: 22px;
  }

}

@media (max-width: 760px) {
  .homepage-content {
    padding-top: 1.4rem;
    padding-bottom: 2.4rem;
  }

  .home-intro-block,
  .home-panel {
    border-radius: 20px;
  }

  .home-intro-block {
    padding: 1.25rem;
  }

  .home-intro-block p {
    text-align: left;
  }

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

  .homepage-content .stats-card {
    min-width: 0;
  }

  .homepage-content .home-panel > h2,
  .homepage-content .home-panel .home-section-head h2 {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .homepage-content .home-live-scorecard-panel .home-section-head h2 {
    font-size: clamp(1.55rem, 7vw, 1.85rem);
    line-height: 1.08;
  }

  .homepage-content .card-image {
    height: 190px;
  }
}

/* News index title cleanup. */
.news-section-title {
  text-align: center;
  margin-inline: auto;
}

/* Keep footer social icons centered in one clean row on phones. */
@media (max-width: 760px) {
  .footer-column-social {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    text-align: center;
  }

  .footer-column-social .footer-socials {
    grid-template-columns: repeat(4, 48px);
    justify-content: center;
  }
}

.seat-plan-figure {
  margin: 1.25rem 0 1.55rem;
}

.seat-plan-image {
  display: block;
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  background: #ffffff;
}

@media (max-width: 760px) {
  .seat-plan-figure {
    margin: 1rem 0 1.25rem;
  }
}

@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .news-newsroom-grid {
    grid-template-columns: 1fr;
  }

  .news-lead-link {
    grid-template-columns: 1fr;
  }

  .news-topic-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .news-topic-head {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    text-align: center;
  }

  .news-topic-feature-link {
    grid-template-columns: 1fr;
  }

  .news-headline-link {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .news-topic-list-link {
    flex-direction: column;
    gap: 0.7rem;
  }

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

  .news-category-grid,
  .news-archive-grid {
    grid-template-columns: 1fr;
  }

  .news-topic-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .news-topic-nav a {
    min-height: 44px;
    justify-content: center;
    padding: 0.7rem 0.8rem;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
  }

  .news-index-card-body {
    min-height: 0;
  }

  .news-pagination-actions {
    width: 100%;
  }

  .news-pagination-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .news-topic-nav {
    grid-template-columns: 1fr;
  }
}


.seat-plan-image {
  cursor: zoom-in;
}

.seat-plan-image:focus-visible {
  outline: 3px solid rgba(15, 23, 42, 0.28);
  outline-offset: 6px;
}

body.seat-plan-lightbox-open {
  overflow: hidden;
}

.seat-plan-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.seat-plan-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.seat-plan-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 22, 0.86);
  backdrop-filter: blur(8px);
}

.seat-plan-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100vh - 3rem);
  border-radius: 28px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.seat-plan-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: 20px;
}

.seat-plan-lightbox__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 999px;
  padding: 0.78rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
}

@media (max-width: 760px) {
  .seat-plan-lightbox {
    padding: 0.9rem;
  }

  .seat-plan-lightbox__dialog {
    width: 100%;
    border-radius: 20px;
    padding: 0.8rem;
  }

  .seat-plan-lightbox__image {
    max-height: calc(100vh - 5.5rem);
    border-radius: 14px;
  }

  .seat-plan-lightbox__close {
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.68rem 0.9rem;
    font-size: 0.92rem;
  }
}

/* Inline Utility Classes */

.u-inline-008a31c6f7 { margin-bottom: 2rem; }
.u-inline-00b0d6ab05 { background: linear-gradient(135deg, #ffdd00 0%, #034ea2 50%, #ed1c24 100%); display: flex; align-items: center; justify-content: center; }
.u-inline-0338384b1b { color:rgba(255,255,255,0.2);font-size:3rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-03789f4fc1 { background:linear-gradient(135deg, #FCDD09 0%, #0033A0 50%, #CE1126 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-03ac19e160 { background:linear-gradient(135deg, #ce1126 0%, #ffffff 50%, #000000 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-0438a5fe5c { background:linear-gradient(135deg,#e03030 0%,#fff 25%,#e03030 50%,#fff 75%,#003da5 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-053ee33342 { background:linear-gradient(135deg,#F77F00 0%,#fff 40%,#009A44 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-09221cdcb1 { background:linear-gradient(135deg,#c60b1e 0%,#ffde00 50%,#c60b1e 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-0c2119229d { margin-bottom: 1.5rem; }
.u-inline-0c906d151a { margin-bottom: 0.4rem; }
.u-inline-0de9b3ffec { background:linear-gradient(135deg, #005293 0%, #ffffff 50%, #D21034 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-0ec5f35164 { font-size: 1.1rem; line-height: 1.6; }
.u-inline-0f432f9c01 { background:linear-gradient(135deg,#009c3b 0%,#ffdf00 50%,#009c3b 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-122c8d5113 { background:linear-gradient(135deg,#d52b1e 0%,#fff 50%,#d52b1e 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-127c94c1e8 { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
.u-inline-146bdc971c { background:linear-gradient(135deg, #FF0000 0%, #ffffff 50%, #0000FF 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-163b95b84f { background:linear-gradient(135deg,#007fff 0%,#f7d618 50%,#ce1126 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-1bb00f1d2d { background:linear-gradient(135deg, #00853f 0%, #fdef42 50%, #e31b23 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-1c359946c0 { background:linear-gradient(135deg, #ffce00 0%, #000000 50%, #ce1126 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-2027ac5412 { background:linear-gradient(135deg, #E30613 0%, #FFD900 50%, #000000 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-2059a7144f { color: var(--primary-strong); margin-bottom: 1rem; }
.u-inline-213c7882cb { max-width:320px; }
.u-inline-23e835fcc5 { flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; }
.u-inline-25f250335b { margin-bottom: 1rem; border-radius: 14px; }
.u-inline-26d27b5d4d { flex-direction:column;align-items:center;text-align:center;gap:1.2rem; }
.u-inline-27895aa49c { font-size: 0.9rem; }
.u-inline-2a961c376e { background:linear-gradient(135deg, #006C35 0%, #ffffff 50%, #006C35 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-2b6bb8d8bd { background:linear-gradient(135deg, #000000 0%, #dd0000 50%, #ffce00 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-2dff689f65 { background:linear-gradient(135deg, #BA0C2F 0%, #ffffff 50%, #00205B 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-2e403867f7 { background:linear-gradient(135deg,#ff6600 0%,#fff 50%,#003087 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-2e86a63b3e { background:linear-gradient(135deg,#fcd116 0%,#003087 50%,#ce1126 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-341b0cb875 { background:linear-gradient(135deg,#002868 0%,#fff 50%,#BF0A30 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-36fbdbe502 { font-size: 0.9rem; color: var(--muted); margin-top: 1rem; }
.u-inline-3b2ea3de41 { color: var(--muted); }
.u-inline-3cbb079440 { color: var(--muted); margin-bottom: 1.5rem; }
.u-inline-3dd0c17996 { background:linear-gradient(135deg, #BF0A30 0%, #ffffff 50%, #002868 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-3ffae14d6d { color: rgba(255,255,255,0.55); font-size: 3.2rem; font-family: 'Bebas Neue'; text-align: center; }
.u-inline-4162e662da { font-family:'Bebas Neue',sans-serif;font-size:2.2rem;border-bottom:2px solid var(--accent);display:inline-block;margin-bottom:1.5rem;margin-top:2.5rem; }
.u-inline-4464eddbb5 { background:linear-gradient(135deg,#00853f 0%,#fdef42 50%,#e31b23 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-47f3e9a8da { background:linear-gradient(135deg, #c1272d 0%, #006233 50%, #c1272d 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-485eb2071a { background:linear-gradient(135deg, #8D1B3D 0%, #ffffff 50%, #8D1B3D 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-495660a2ad { margin-block:2.5rem; }
.u-inline-4b22aed288 { background:linear-gradient(135deg, #006233 0%, #ffffff 50%, #d21034 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-4b8e7c531c { background:linear-gradient(135deg, #D52B1E 0%, #ffffff 50%, #D52B1E 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-4c382b0bc2 { align-self:center; }
.u-inline-4c572434cb { background:linear-gradient(135deg, #aa151b 0%, #f1bf00 50%, #aa151b 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-4c5afb808b { color:rgba(0,0,0,0.2);font-size:3rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-4ca25c41e9 { color:rgba(255,255,255,0.2);font-size:3rem;font-family:'Bebas Neue'; }
.u-inline-4f2cad5178 { background:linear-gradient(135deg,#006AA7 0%,#FECC02 50%,#006AA7 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-500ce63c1d { color:rgba(255,255,255,0.3);font-size:2.8rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-503d5c9bc8 { background:linear-gradient(135deg, #ED2939 0%, #ffffff 50%, #ED2939 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-5beb95ff4c { justify-content: center; }
.u-inline-5cab430a42 { background:linear-gradient(135deg,#007749 0%,#ffb81c 52%,#111111 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-5cb33b9e1a { background:linear-gradient(135deg,#007a3d 0%,#fff 50%,#ce1126 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-5e95d1266a { background: linear-gradient(135deg, #f7d774, #c9a227); color: #1a1a1a; border: 0; }
.u-inline-5ec7d25d02 { background:linear-gradient(135deg, #003893 0%, #ffffff 50%, #CF2027 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-63b06b00e8 { background:linear-gradient(135deg, #006847 0%, #ffffff 50%, #ce1126 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-6420044eb4 { background:linear-gradient(135deg,#bc002d 0%,#fff 50%,#bc002d 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-679534a6a4 { background:linear-gradient(135deg,#000 0%,#dd0000 50%,#ffce00 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-68037d66e2 { color:rgba(255,255,255,0.25);font-size:3rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-6ac295c4b1 { color:rgba(255,255,255,0.3);font-size:2.5rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-71f21dbaec { color: rgba(255,255,255,0.7); font-size: 3.2rem; font-family: 'Bebas Neue'; text-align: center; }
.u-inline-72a68ac344 { text-align: center; }
.u-inline-735f569f43 { background:linear-gradient(135deg,#000 0%,#FFD700 50%,#c1272d 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-740eb04a23 { color: var(--muted); margin-bottom: 0.5rem; }
.u-inline-7511492643 { max-width: 320px; }
.u-inline-76d5fec112 { background:linear-gradient(135deg, #FFDF00 0%, #009B3A 50%, #002776 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-79b4973a85 { height: 70px; width: auto; filter: brightness(0) invert(1); }
.u-inline-7a5f2580ff { background:linear-gradient(135deg, #0081C9 0%, #ffffff 50%, #ffffff 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-7a61dda532 { background:linear-gradient(135deg,#75aadb 0%,#fff 50%,#75aadb 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-7b09d8d984 { background:linear-gradient(135deg,#000 0%,#fff 50%,#007a3d 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-811021435e { color:rgba(0,0,0,0.2);font-size:3.5rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-81934dac08 { color:rgba(255,255,255,0.3);font-size:3.2rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-835ecc07fa { background:linear-gradient(135deg,#1EB53A 0%,#fff 50%,#0099B5 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-839c6ea726 { color: var(--muted); margin-top: 1.5rem; font-size: 0.95rem; }
.u-inline-842252d1fb { justify-content:center; }
.u-inline-867fe8dd42 { background:linear-gradient(135deg,#CE1126 0%,#fff 50%,#000 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-878b1e87e7 { background:linear-gradient(135deg,#006C35 0%,#fff 50%,#006C35 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-89d7244134 { background:linear-gradient(135deg, #D52B1E 0%, #ffffff 50%, #0038A8 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-8d05e808af { background:linear-gradient(135deg,#003893 0%,#ffffff 50%,#CF2027 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-8d4d014c61 { background:linear-gradient(135deg,#002B7F 0%,#ffffff 50%,#F9E814 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-8ffac67c60 { color:rgba(0,0,0,0.15);font-size:3.2rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-93e940c251 { background:linear-gradient(135deg, #00209F 0%, #ffffff 50%, #D21034 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-947032b630 { background:linear-gradient(135deg, #C8102E 0%, #ffffff 50%, #C8102E 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-9534efa653 { background:linear-gradient(135deg, #002395 0%, #FECB00 50%, #002395 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-989eac004e { background:linear-gradient(135deg, #003087 0%, #ffffff 50%, #003087 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-99d96897b7 { background:linear-gradient(135deg, #000000 0%, #ffffff 50%, #007a3d 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-9ad6a8cfcc { background:linear-gradient(135deg,#006B3F 0%,#FCD116 50%,#CE1126 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-9b42320f97 { background:linear-gradient(135deg, #007a3d 0%, #ffffff 50%, #ce1126 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-a37434e0b4 { background:linear-gradient(135deg, #00008b 0%, #ffffff 50%, #ff0000 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-a42bcb917a { color: var(--muted); margin-bottom: 1rem; }
.u-inline-a534bda68a { background:linear-gradient(135deg, #ff0000 0%, #ffffff 50%, #046a38 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-a5a09257a8 { background:linear-gradient(135deg,#00209f 0%,#fff 50%,#ef4135 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-a6446f7161 { color: var(--primary); display: block; margin-bottom: 0.5rem; }
.u-inline-a8512a65d0 { color:rgba(0,0,0,0.1);font-size:3.2rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-a925e7ff26 { background:linear-gradient(135deg,#ED2939 0%,#fff 50%,#ED2939 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-aba54d3d0e { color:rgba(255,255,255,0.2);font-size:3.2rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-ac215f8270 { background:linear-gradient(135deg, #002395 0%, #ffffff 50%, #ED2939 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-ad9f3873fc { background:linear-gradient(135deg, #e20e17 0%, #ffffff 50%, #e20e17 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-ae8acec677 { color:rgba(255,255,255,0.2);font-size:5rem;font-family:'Bebas Neue'; }
.u-inline-aec96d4d25 { background:linear-gradient(135deg,#002395 0%,#fecb00 50%,#002395 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-b0390ae5f1 { background:linear-gradient(135deg, #11457e 0%, #ffffff 50%, #d7141a 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-b1c571b023 { background:linear-gradient(135deg, #F36C21 0%, #ffffff 50%, #ffffff 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-b319ff490b { color: var(--primary-strong); margin-bottom: 0.8rem; }
.u-inline-b7cc0432c4 { background:linear-gradient(135deg, #FFDD00 0%, #0033A0 50%, #ED1C24 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-b8202c3a20 { background:linear-gradient(135deg,#EF2B2D 0%,#fff 50%,#002868 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-bb0a5e9cd2 { background:linear-gradient(135deg, #FF0000 0%, #ffffff 50%, #FF0000 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-bb4d219c3f { display:flex; flex-wrap:wrap; gap:0.75rem; margin-top:1rem; }
.u-inline-bbfb38b0b9 { margin-top: 0; color: var(--muted); }
.u-inline-bd5935721a { color: var(--muted); margin-bottom: 1.5rem; max-width: 800px; }
.u-inline-bd9c0348ed { background:linear-gradient(135deg, #007fff 0%, #f7d618 50%, #ce1126 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-bdfe3661e9 { margin:0;opacity:0.7; }
.u-inline-c0eb51e18f { columns: 2; column-gap: 2rem; }
.u-inline-c2079eb7aa { margin: 0; opacity: 0.7; }
.u-inline-c826691216 { background:linear-gradient(135deg,#239f40 0%,#fff 50%,#c8102e 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-d0369a72e4 { background:linear-gradient(135deg, #239f40 0%, #ffffff 50%, #da0000 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-d0b063eb78 { background:linear-gradient(135deg,#006233 0%,#fff 50%,#c8102e 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-d2ca7c1288 { background:linear-gradient(135deg,#D52B1E 0%,#fff 50%,#0038A8 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-d2d4fa3341 { background:linear-gradient(135deg, #006AA7 0%, #FECC00 50%, #006AA7 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-d3793348e5 { margin-block: 2.5rem; }
.u-inline-d37c5d44d9 { background:linear-gradient(135deg,#74acdf 0%,#fff 50%,#74acdf 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-d5c30a3a5e { background:linear-gradient(135deg, #002B7F 0%, #ffffff 50%, #F9E814 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-d66943cf9f { background:linear-gradient(135deg, #FF8200 0%, #ffffff 50%, #009E60 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-dd9074fa8f { font-size: 0.95rem; color: var(--muted); margin-bottom: 1rem; }
.u-inline-def0370f8b { font-size: 0.85rem; color: var(--muted); margin: 0; }
.u-inline-e09db4779a { margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.u-inline-e49df5b444 { background:linear-gradient(135deg, #75AADB 0%, #ffffff 50%, #FCBF49 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-e528bf7476 { background:linear-gradient(135deg,#c1272d 0%,#006233 50%,#000 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-e54113af3c { background:linear-gradient(135deg,#ffffff 0%,#000 50%,#000 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-e5a499ddc2 { font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; }
.u-inline-e69d475fcb { background: linear-gradient(135deg, #e30a17 0%, #8f0010 100%); display: flex; align-items: center; justify-content: center; }
.u-inline-e716e94b24 { background:linear-gradient(135deg,#8D1B3D 0%,#fff 50%,#8D1B3D 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-e7e7712233 { background: var(--surface-soft); font-weight: 800; color: var(--primary-strong); }
.u-inline-ecb7fe2fa0 { background:linear-gradient(135deg, #ffffff 0%, #000040 50%, #ce1126 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-ed7d5ac731 { background:linear-gradient(135deg,#005EB8 0%,#fff 50%,#005EB8 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-ede708a1df { color:rgba(255,255,255,0.3);font-size:3rem;font-family:'Bebas Neue';text-align:center; }
.u-inline-ee9800482c { height: 85px; width: auto; vertical-align: middle; }
.u-inline-efac87b4ab { background:linear-gradient(135deg, #0099b5 0%, #ffffff 50%, #007a3d 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-f0b24eea08 { margin-bottom: 1.5rem; }
.u-inline-f0cb05c065 { color:rgba(255,255,255,0.22);font-size:5rem;font-family:'Bebas Neue'; }
.u-inline-f267e3ca68 { margin-bottom: 1rem; }
.u-inline-f80d34dc7c { background:linear-gradient(135deg, #007749 0%, #ffb81c 52%, #111111 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-f9f51a1647 { background:linear-gradient(135deg,#e20e17 0%,#ffffff 50%,#e20e17 100%);display:flex;align-items:center;justify-content:center; }
.u-inline-fb47c7c9d4 { color: var(--primary-strong); margin-bottom: 0.5rem; }
.u-inline-fb644ea745 { margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.u-inline-ff227d0632 { margin: 0; }
.u-inline-ff776d51c0 { background:linear-gradient(135deg, #ffffff 0%, #000000 50%, #000000 100%);display:flex;align-items:center;justify-content:center; }

/* End Inline Utility Classes */


.author-link-panel {
  display: grid;
  gap: 1rem;
}

.author-detail-stack {
  --author-detail-border: rgba(15, 79, 224, 0.12);
}

.author-detail-card {
  grid-template-columns: minmax(220px, 300px) 1fr;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(15, 79, 224, 0.18);
  background:
    linear-gradient(150deg, var(--primary-strong) 0%, #0e3cae 58%, var(--primary) 100%);
}

.author-detail-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.author-detail-photo {
  width: min(100%, 245px);
  height: 245px;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 5px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 38px rgba(4, 13, 35, 0.32),
    0 0 0 10px rgba(12, 194, 160, 0.13);
}

.author-detail-copy {
  display: grid;
  gap: 0.85rem;
}

.author-detail-copy h2,
.author-detail-copy p {
  margin: 0;
}

.author-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.author-detail-primary {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--primary-strong);
}

.author-detail-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.author-detail-grid {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.author-detail-panel {
  border-radius: 8px;
  padding: clamp(1.05rem, 2vw, 1.45rem);
}

.author-detail-panel h2,
.author-detail-panel p {
  margin-top: 0;
}

.author-detail-facts {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.author-detail-facts div {
  display: grid;
  grid-template-columns: minmax(115px, 0.34fr) minmax(0, 0.66fr);
  gap: 0.75rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--author-detail-border);
  border-radius: 8px;
  background: rgba(15, 79, 224, 0.045);
}

.author-detail-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.author-detail-facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.author-detail-contact {
  border-radius: 8px;
}

.author-link-buttons,
.author-social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.author-link-btn,
.author-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

.author-link-btn:hover,
.author-social-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.authors-hub-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: stretch;
  gap: 1rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 250, 0.98)),
    linear-gradient(90deg, rgba(15, 79, 224, 0.08), rgba(12, 194, 160, 0.08));
}

.authors-hub-intro-card h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.authors-hub-intro-card p {
  max-width: 780px;
  font-size: 1.02rem;
  line-height: 1.72;
}

.authors-hub-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.authors-hub-stats div {
  display: grid;
  gap: 0.1rem;
  min-height: 4.6rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(20, 48, 90, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 36, 66, 0.06);
}

.authors-hub-stats strong {
  color: var(--primary-strong);
  font-size: 1.65rem;
  line-height: 1;
}

.authors-hub-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.authors-hub-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.authors-hub-principles span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(15, 79, 224, 0.16);
  background: var(--surface);
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 0.88rem;
}

.authors-hub-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.authors-hub-feature {
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(15, 79, 224, 0.12);
  box-shadow: var(--shadow-soft);
}

.authors-hub-lead {
  grid-column: 1 / -1;
}

.authors-hub-feature {
  display: grid;
}

.authors-hub-feature-link {
  display: contents;
}

.authors-hub-feature:not(.authors-hub-lead) {
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 0.62fr);
}

.authors-hub-lead {
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  background:
    linear-gradient(150deg, var(--primary-strong) 0%, #0e3cae 52%, var(--primary) 100%);
  border-color: rgba(15, 79, 224, 0.22);
}

.authors-hub-image-wrap {
  min-height: 100%;
}

.authors-hub-image-wrap img {
  min-height: 100%;
  aspect-ratio: 4 / 5;
}

.authors-hub-feature-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.45rem);
}

.authors-hub-feature-body h2,
.authors-hub-feature-body p {
  margin: 0;
}

.authors-hub-facts {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.authors-hub-facts div {
  display: grid;
  grid-template-columns: minmax(105px, 0.35fr) minmax(0, 0.65fr);
  gap: 0.65rem;
  padding: 0.62rem 0.7rem;
  border-radius: 6px;
  background: rgba(15, 79, 224, 0.06);
  border: 1px solid rgba(15, 79, 224, 0.12);
}

.authors-hub-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.authors-hub-facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.authors-hub-lead .authors-hub-facts div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.authors-hub-lead .authors-hub-facts dt {
  color: rgba(235, 244, 255, 0.72);
}

.authors-hub-lead .authors-hub-facts dd {
  color: #ffffff;
}

.authors-hub-lead .author-link-btn,
.authors-hub-lead .author-social-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.authors-hub-lead .author-link-btn:hover,
.authors-hub-lead .author-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.authors-hub-action-label {
  margin: 0.1rem 0 -0.25rem;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.authors-hub-lead .authors-hub-action-label {
  color: rgba(235, 244, 255, 0.78);
}

.authors-hub-cta {
  width: fit-content;
  text-decoration: none;
}

.authors-hub-standards {
  grid-column: 1 / -1;
  border-radius: 8px;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
}

.authors-hub-standards .authors-hub-overline {
  margin-bottom: 0.7rem;
}

@media (max-width: 920px) {
  .authors-hub-intro-card,
  .authors-hub-lead,
  .authors-hub-feature:not(.authors-hub-lead) {
    grid-template-columns: 1fr;
  }

  .authors-hub-grid {
    grid-template-columns: 1fr;
  }

  .authors-hub-image-wrap img {
    max-height: 420px;
  }
}

@media (max-width: 560px) {
  .author-detail-facts div {
    grid-template-columns: 1fr;
  }

  .author-detail-actions .authors-hub-cta {
    width: 100%;
    justify-content: center;
  }

  .authors-hub-facts div {
    grid-template-columns: 1fr;
  }

  .author-link-btn,
  .author-social-btn {
    flex: 1 1 auto;
  }
}

.authors-hub-feature:not(.authors-hub-lead) {
  position: relative;
  grid-template-columns: 1fr;
  align-content: start;
  border: 1px solid rgba(15, 79, 224, 0.13);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.authors-hub-feature:not(.authors-hub-lead)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), #68e4cf);
  opacity: 0.92;
}

.authors-hub-feature:not(.authors-hub-lead):hover {
  transform: translateY(-3px);
  border-color: rgba(15, 79, 224, 0.28);
  box-shadow: 0 18px 38px rgba(12, 28, 58, 0.12);
}

.authors-hub-feature:not(.authors-hub-lead) .authors-hub-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 245px;
  padding: 1.35rem 1rem 0.95rem;
  border-bottom: 1px solid rgba(15, 79, 224, 0.1);
  background:
    radial-gradient(circle at center, rgba(12, 194, 160, 0.14), rgba(15, 79, 224, 0.05) 58%, transparent 72%),
    linear-gradient(180deg, #f4f8ff, #ffffff);
}

.authors-hub-feature:not(.authors-hub-lead) .authors-hub-image-wrap img {
  width: 178px;
  height: 178px;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 999px;
  border: 4px solid #ffffff;
  box-shadow:
    0 16px 30px rgba(12, 28, 58, 0.14),
    0 0 0 8px rgba(12, 194, 160, 0.12);
  background: #ffffff;
}

.author-detail-card--portrait .author-detail-photo {
  width: 100%;
  height: 100%;
  min-height: 330px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-position: center 14%;
  box-shadow: 0 18px 38px rgba(4, 13, 35, 0.28);
}

.authors-hub-feature:not(.authors-hub-lead) .authors-hub-feature-body {
  min-height: 430px;
}

.authors-hub-feature:not(.authors-hub-lead) .authors-hub-role {
  width: fit-content;
  background: rgba(15, 79, 224, 0.08);
  border-color: rgba(15, 79, 224, 0.18);
  color: var(--primary-strong);
}

.authors-hub-feature:not(.authors-hub-lead) .authors-hub-feature-body h2 {
  color: var(--text);
}

.authors-hub-feature:not(.authors-hub-lead) .authors-hub-feature-body p {
  color: var(--muted);
}

.authors-hub-feature:not(.authors-hub-lead) .authors-hub-facts {
  margin-top: 0.1rem;
}

.authors-hub-feature:not(.authors-hub-lead) .author-link-buttons,
.authors-hub-feature:not(.authors-hub-lead) .author-social-buttons {
  gap: 0.5rem;
}

.authors-hub-feature:not(.authors-hub-lead) .author-link-btn {
  background: rgba(15, 79, 224, 0.08);
  border-color: rgba(15, 79, 224, 0.16);
  color: var(--primary-strong);
}

.authors-hub-feature:not(.authors-hub-lead) .author-social-btn {
  background: rgba(12, 194, 160, 0.1);
  border-color: rgba(12, 194, 160, 0.22);
  color: #075b4c;
}

.authors-hub-feature:not(.authors-hub-lead) .authors-hub-cta {
  margin-top: auto;
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.authors-hub-feature:not(.authors-hub-lead) .authors-hub-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #05251f;
}

@media (max-width: 920px) {
  .authors-hub-feature:not(.authors-hub-lead) .authors-hub-feature-body {
    min-height: 0;
  }

  .authors-hub-feature:not(.authors-hub-lead) .authors-hub-image-wrap {
    height: 225px;
  }

  .authors-hub-feature:not(.authors-hub-lead) .authors-hub-image-wrap img {
    width: 165px;
    height: 165px;
  }

  .author-detail-card,
  .author-detail-grid {
    grid-template-columns: 1fr;
  }

  .author-detail-media {
    min-height: 250px;
  }

  .author-detail-photo {
    width: 205px;
    height: 205px;
  }

  .author-detail-card--portrait .author-detail-photo {
    width: min(100%, 260px);
    height: 320px;
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .author-detail-facts div {
    grid-template-columns: 1fr;
  }

  .author-detail-actions .authors-hub-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Sport broadcast redesign layer */
:root {
  --bg: #eef5f1;
  --bg-alt: #e4eee9;
  --surface: #ffffff;
  --surface-soft: #eef7f4;
  --text: #0b1720;
  --muted: #526676;
  --primary: #075c45;
  --primary-strong: #063927;
  --accent: #d9a521;
  --accent-blue: #1066d6;
  --match-red: #d8334a;
  --border: #c9d8d2;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 14px 32px rgba(4, 39, 29, 0.09);
  --shadow-strong: 0 24px 54px rgba(3, 24, 20, 0.18);
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(16, 102, 214, 0.08), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(217, 165, 33, 0.12), transparent 30%),
    linear-gradient(115deg, transparent 0 48%, rgba(7, 92, 69, 0.035) 48% 52%, transparent 52% 100%),
    linear-gradient(180deg, #f8fbf9 0%, var(--bg) 42%, #f7faf8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 92, 69, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 92, 69, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

.header-topbar {
  background:
    linear-gradient(90deg, rgba(217, 165, 33, 0.2), transparent 20% 80%, rgba(16, 102, 214, 0.18)),
    rgba(3, 15, 14, 0.96);
  border-bottom-color: rgba(217, 165, 33, 0.22);
}

.nav-wrap {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(6, 57, 39, 0.98), rgba(5, 28, 29, 0.96) 58%, rgba(9, 42, 69, 0.95)),
    #062a24;
  border: 1px solid rgba(228, 241, 237, 0.16);
  box-shadow:
    0 20px 46px rgba(2, 20, 17, 0.28),
    inset 0 -1px 0 rgba(217, 165, 33, 0.24);
}

.nav-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 48%, transparent 54% 100%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 16px);
  opacity: 0.42;
  transform: translateX(-58%);
  animation: stadium-sweep 8s ease-in-out infinite;
  pointer-events: none;
}

.nav-wrap > * {
  position: relative;
  z-index: 1;
}

.site-header-home .nav-wrap {
  background:
    linear-gradient(110deg, rgba(6, 57, 39, 0.98), rgba(5, 28, 29, 0.96) 58%, rgba(9, 42, 69, 0.95));
  border-color: rgba(255, 255, 255, 0.18);
}

.brand img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.site-nav a {
  color: rgba(248, 252, 250, 0.9);
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: linear-gradient(135deg, #f3c747, var(--accent));
  color: #071610;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 26px rgba(217, 165, 33, 0.24);
}

.header-search-btn,
.nav-toggle {
  background: rgba(255, 255, 255, 0.11);
  color: #f8fcfa;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero {
  overflow: hidden;
  color: #f8fcfa;
  background:
    linear-gradient(180deg, rgba(3, 19, 17, 0.2), rgba(3, 19, 17, 0.72)),
    radial-gradient(circle at 16% 10%, rgba(217, 165, 33, 0.2), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(16, 102, 214, 0.22), transparent 36%),
    linear-gradient(135deg, #073927 0%, #082e32 52%, #081923 100%);
  border-bottom: 1px solid rgba(217, 165, 33, 0.28);
  box-shadow: inset 0 -44px 70px rgba(2, 12, 11, 0.26);
}

.hero::before {
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.16) 49.5% 50.5%, transparent 50.5%),
    radial-gradient(ellipse at center, transparent 0 28%, rgba(255, 255, 255, 0.13) 28.4% 29.2%, transparent 29.5%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 82px);
  opacity: 0.2;
}

.hero::after {
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(255, 255, 255, 0.16) 48%, transparent 56% 100%),
    radial-gradient(circle at 50% -10%, rgba(217, 165, 33, 0.32), transparent 34%);
  opacity: 0.42;
  animation: hero-floodlight 7s ease-in-out infinite;
}

.hero-inner h1,
.home-hero .hero-inner h1 {
  color: #ffffff;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.hero-copy,
.home-hero .hero-copy {
  color: rgba(242, 249, 247, 0.9);
}

.hero .breadcrumb-list,
.home-hero .breadcrumb-list {
  background: rgba(3, 24, 20, 0.68);
  border-color: rgba(217, 165, 33, 0.32);
  border-left-color: var(--accent);
  color: rgba(248, 252, 250, 0.88);
  backdrop-filter: blur(14px);
}

.hero .breadcrumb-list a,
.hero .breadcrumb-list li[aria-current="page"],
.home-hero .breadcrumb-list a,
.home-hero .breadcrumb-list li[aria-current="page"] {
  color: #ffffff;
}

.home-hero {
  background:
    linear-gradient(180deg, rgba(3, 13, 12, 0.28), rgba(3, 13, 12, 0.82)),
    radial-gradient(circle at 50% 0%, rgba(217, 165, 33, 0.24), transparent 30%),
    url("/assets/footer-stadium.webp?v=20260616a") center 52% / cover no-repeat;
}

.home-hero .countdown-wrap {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 244, 0.94)),
    #ffffff;
  border-color: rgba(217, 165, 33, 0.42);
  box-shadow: 0 18px 42px rgba(3, 24, 20, 0.26);
}

.home-hero .countdown-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49%, rgba(7, 92, 69, 0.08) 49% 51%, transparent 51%),
    repeating-linear-gradient(90deg, rgba(7, 92, 69, 0.08) 0 1px, transparent 1px 58px);
  opacity: 0.42;
  pointer-events: none;
}

.home-hero .countdown-wrap > * {
  position: relative;
  z-index: 1;
}

.home-hero .countdown-intro {
  color: var(--primary-strong);
}

.home-hero .countdown-item {
  background: linear-gradient(180deg, #0b6b4f, #063927);
  border-color: rgba(6, 57, 39, 0.7);
  box-shadow: 0 10px 22px rgba(6, 57, 39, 0.22);
}

.home-hero .countdown-item:not(:last-child)::after {
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(217, 165, 33, 0.22);
}

.btn,
.header-cta,
.section-heading-kit-link,
.news-pagination-link {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn::after,
.header-cta::after,
.section-heading-kit-link::after,
.news-pagination-link::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn:hover::after,
.header-cta:hover::after,
.section-heading-kit-link:hover::after,
.news-pagination-link:hover::after {
  left: 112%;
}

.btn-primary,
.header-cta-primary,
.btn-view-team {
  color: #071610;
  background: linear-gradient(135deg, #ffd767, var(--accent));
  border: 1px solid rgba(125, 91, 12, 0.34);
  box-shadow: 0 14px 28px rgba(217, 165, 33, 0.26);
}

.btn-primary:hover,
.header-cta-primary:hover,
.btn-view-team:hover {
  background: linear-gradient(135deg, #ffe493, #d9a521);
  box-shadow: 0 18px 34px rgba(217, 165, 33, 0.32);
}

.btn-secondary,
.header-cta-secondary {
  color: var(--primary-strong);
  background: #ffffff;
  border: 1px solid rgba(7, 92, 69, 0.18);
}

.btn-outline {
  border-color: rgba(217, 165, 33, 0.62);
  color: #fff;
}

.section-head h2,
.home-section-head h2,
.content-text-col h2,
.article-content h2,
.comments-section > h2,
.news-section-title,
.news-topic-head h2 {
  color: var(--primary-strong);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.section-head h2::after,
.home-section-head h2::after,
.content-text-col h2::after,
.article-content h2::after,
.news-section-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 0.34rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
}

.card,
.panel,
.home-panel,
.home-mini-card,
.news-card,
.news-premium-card,
.news-category-card,
.news-lead-card,
.news-headline-card,
.news-topic-feature,
.news-topic-list-item,
.related-article-link,
.faq-item,
.article-media-card,
.article-trust-panel,
.premium-content-block {
  position: relative;
  border-color: rgba(7, 92, 69, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.card::before,
.panel::before,
.home-panel::before,
.home-mini-card::before,
.news-premium-card::before,
.news-category-card::before,
.related-article-link::before,
.faq-item::before,
.premium-content-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-blue));
  opacity: 0.92;
  pointer-events: none;
}

.card:hover,
.panel:hover,
.home-mini-card:hover,
.news-card:hover,
.news-premium-card:hover,
.news-category-card:hover,
.related-article-link:hover,
.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 92, 69, 0.28);
  box-shadow: var(--shadow-strong);
}

.card-image,
.news-card-media img,
.news-premium-card-media img,
.news-lead-media img,
.news-topic-feature-link img,
.related-article-media img {
  transition: transform 0.42s ease, filter 0.42s ease;
}

.card:hover .card-image,
.news-card:hover .news-card-media img,
.news-premium-card:hover .news-premium-card-media img,
.news-lead-card:hover .news-lead-media img,
.news-topic-feature:hover .news-topic-feature-link img,
.related-article-link:hover .related-article-media img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.chip,
.news-badge,
.news-premium-card-badge,
.status {
  border-radius: 8px;
  background: rgba(7, 92, 69, 0.08);
  border-color: rgba(7, 92, 69, 0.18);
  color: var(--primary-strong);
}

.hero .news-badge {
  background: linear-gradient(135deg, #ffd767, var(--accent));
  border-color: rgba(255, 255, 255, 0.22);
  color: #071610;
}

.status.live,
.live-dot {
  background: var(--match-red);
}

.data-table th,
.standings-table th,
.squad-list-table th {
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--primary-strong), #0b6b4f);
  border-bottom-color: rgba(217, 165, 33, 0.38);
}

.data-table tr:hover td,
.standings-table tr:hover td,
.squad-list-table tr:hover {
  background: rgba(7, 92, 69, 0.055);
}

.table-responsive {
  border-color: rgba(7, 92, 69, 0.14);
  box-shadow: 0 14px 34px rgba(4, 39, 29, 0.08);
}

@media (max-width: 720px) {
  .table-responsive {
    overflow: hidden;
    border: 1px solid rgba(7, 92, 69, 0.16);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(4, 39, 29, 0.08);
  }

  .table-responsive::after {
    content: none;
    display: none;
  }

  .data-table {
    display: table;
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    background: #ffffff;
    font-size: 0.74rem;
  }

  .data-table thead {
    position: static;
    display: table-header-group;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
  }

  .data-table tbody {
    display: table-row-group;
  }

  .data-table tbody tr {
    display: table-row;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .data-table th,
  .data-table td {
    display: table-cell;
    width: auto;
    min-width: 0;
    padding: 0.56rem 0.34rem;
    border-bottom: 1px solid rgba(7, 92, 69, 0.12);
    color: var(--text);
    font-size: 0.72rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    vertical-align: middle;
  }

  .data-table th {
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: normal;
  }

  .data-table td:last-child,
  .data-table th:last-child {
    padding-right: 0.45rem;
  }

  .data-table td::before,
  .data-table th::before {
    content: none;
  }

  .data-table td[data-label=""],
  .data-table th[data-label=""] {
    display: table-cell;
  }

  .data-table tr:hover td,
  .standings-table tr:hover td,
  .squad-list-table tr:hover {
    background: transparent;
  }

  .data-table tr:nth-child(even) td {
    background: rgba(7, 92, 69, 0.055);
  }

  .data-table tr:last-child td {
    border-bottom: 0;
  }

  .data-table:has(thead th:nth-child(2):last-child) th:nth-child(1),
  .data-table:has(thead th:nth-child(2):last-child) td:nth-child(1) {
    width: 38%;
  }

  .data-table:has(thead th:nth-child(2):last-child) th:nth-child(2),
  .data-table:has(thead th:nth-child(2):last-child) td:nth-child(2) {
    width: 62%;
  }

  .data-table:has(thead th:nth-child(3):last-child) th:nth-child(1),
  .data-table:has(thead th:nth-child(3):last-child) td:nth-child(1) {
    width: 28%;
  }

  .data-table:has(thead th:nth-child(3):last-child) th:nth-child(2),
  .data-table:has(thead th:nth-child(3):last-child) td:nth-child(2) {
    width: 38%;
  }

  .data-table:has(thead th:nth-child(3):last-child) th:nth-child(3),
  .data-table:has(thead th:nth-child(3):last-child) td:nth-child(3) {
    width: 34%;
  }

  .data-table:has(thead th:nth-child(4):last-child) th,
  .data-table:has(thead th:nth-child(4):last-child) td {
    width: 25%;
  }

  .data-table:has(thead th:nth-child(5):last-child) th:nth-child(1),
  .data-table:has(thead th:nth-child(5):last-child) td:nth-child(1) {
    width: 18%;
  }

  .data-table:has(thead th:nth-child(5):last-child) th:nth-child(2),
  .data-table:has(thead th:nth-child(5):last-child) td:nth-child(2) {
    width: 18%;
  }

  .data-table:has(thead th:nth-child(5):last-child) th:nth-child(3),
  .data-table:has(thead th:nth-child(5):last-child) td:nth-child(3) {
    width: 26%;
  }

  .data-table:has(thead th:nth-child(5):last-child) th:nth-child(4),
  .data-table:has(thead th:nth-child(5):last-child) td:nth-child(4) {
    width: 24%;
  }

  .data-table:has(thead th:nth-child(5):last-child) th:nth-child(5),
  .data-table:has(thead th:nth-child(5):last-child) td:nth-child(5) {
    width: 14%;
  }

  .data-table:has(thead th:nth-child(6):last-child) th:nth-child(1),
  .data-table:has(thead th:nth-child(6):last-child) td:nth-child(1) {
    width: 18%;
  }

  .data-table:has(thead th:nth-child(6):last-child) th:nth-child(2),
  .data-table:has(thead th:nth-child(6):last-child) td:nth-child(2) {
    width: 42%;
  }

  .data-table:has(thead th:nth-child(6):last-child) th:nth-child(n+3),
  .data-table:has(thead th:nth-child(6):last-child) td:nth-child(n+3) {
    width: 10%;
    text-align: center;
  }

  .data-table .team-inline {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .standings-grid {
    gap: 0.95rem;
  }

  .group-panel {
    overflow: hidden;
    border-radius: 14px;
  }

  .standings-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: 0.76rem;
  }

  .standings-table col.col-team {
    width: 44%;
  }

  .standings-table col.col-num {
    width: 11.2%;
  }

  .standings-table th,
  .standings-table td {
    padding: 0.54rem 0.22rem;
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .standings-table th.team-col,
  .standings-table td.team-col {
    padding-left: 0.5rem;
    padding-right: 0.15rem;
  }

  .standings-table .team-cell {
    gap: 0.25rem;
  }

  .standings-table .team-cell strong {
    min-width: 1rem;
    font-size: 0.68rem;
  }

  .standings-table .country-flag {
    width: 17px;
    height: auto;
    flex: 0 0 auto;
  }

  .standings-table .team-cell span,
  .standings-table .team-cell a {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

.site-footer {
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 165, 33, 0.16), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(16, 102, 214, 0.18), transparent 34%),
    linear-gradient(180deg, #031714 0%, #04110f 54%, #020807 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(7, 92, 69, 0.18), transparent 32%),
    radial-gradient(circle at 86% 8%, rgba(16, 102, 214, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(217, 165, 33, 0.04), transparent 44%);
  opacity: 0.42;
  pointer-events: none;
}

.footer-social-pill,
.header-social-link {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-pill:hover,
.header-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 165, 33, 0.5);
  box-shadow: 0 10px 22px rgba(217, 165, 33, 0.14);
}

.sport-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--sport-reveal-delay, 0ms);
}

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

[data-schedule-content].sport-reveal {
  opacity: 1;
  transform: none;
}

@keyframes stadium-sweep {
  0%, 48% {
    transform: translateX(-58%);
  }

  68%, 100% {
    transform: translateX(58%);
  }
}

@keyframes hero-floodlight {
  0%, 100% {
    transform: translateX(-3%);
    opacity: 0.34;
  }

  50% {
    transform: translateX(3%);
    opacity: 0.5;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    background:
      linear-gradient(110deg, rgba(6, 57, 39, 0.98), rgba(5, 28, 29, 0.96) 58%, rgba(9, 42, 69, 0.95));
  }

  .site-nav {
    background:
      linear-gradient(180deg, rgba(4, 28, 25, 0.98), rgba(4, 17, 15, 0.98));
    border-color: rgba(217, 165, 33, 0.2);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: #071610;
    background: linear-gradient(135deg, #ffd767, var(--accent));
  }

  .hero {
    padding-top: 1.95rem;
  }

  .home-hero {
    padding-top: 1.5rem;
  }

  .card:hover,
  .panel:hover,
  .home-mini-card:hover,
  .news-card:hover,
  .news-premium-card:hover,
  .news-category-card:hover,
  .related-article-link:hover,
  .faq-item:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .sport-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Clean sporty header and hero polish layer */
.site-header {
  background:
    linear-gradient(180deg, rgba(3, 11, 12, 0.82) 0%, rgba(5, 24, 23, 0.48) 58%, rgba(5, 24, 23, 0) 100%),
    linear-gradient(110deg, rgba(6, 57, 39, 0.5), rgba(8, 30, 45, 0.44));
}

.header-topbar,
.site-header .header-topbar {
  background: rgba(4, 8, 12, 0.9);
  border-bottom: 1px solid rgba(217, 165, 33, 0.16);
}

.nav-wrap,
.site-header-home .nav-wrap {
  min-height: 74px;
  padding: 0.58rem 0.85rem;
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(112deg, rgba(7, 63, 46, 0.92), rgba(8, 32, 36, 0.92) 54%, rgba(12, 36, 62, 0.9)),
    rgba(6, 23, 25, 0.92);
  border: 1px solid rgba(237, 223, 164, 0.18);
  box-shadow:
    0 14px 30px rgba(2, 13, 14, 0.2),
    inset 0 -1px 0 rgba(217, 165, 33, 0.16);
  backdrop-filter: blur(16px) saturate(140%);
}

.nav-wrap::before {
  opacity: 0.24;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.12) 49%, transparent 55% 100%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
}

.brand img {
  height: 56px !important;
}

.site-nav {
  gap: 0.18rem;
}

.site-nav a {
  padding: 0.58rem 0.82rem;
  color: rgba(248, 252, 250, 0.84);
  border-radius: 12px;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #f0c64c, #d7a51f);
  color: #081711;
  box-shadow: 0 10px 20px rgba(217, 165, 33, 0.22);
}

.header-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.17);
}

.hero {
  padding-top: calc(var(--header-height) + var(--header-topbar-height) + 1.55rem);
  background:
    linear-gradient(180deg, rgba(3, 16, 16, 0.06), rgba(3, 16, 16, 0.5)),
    radial-gradient(circle at 22% 16%, rgba(217, 165, 33, 0.16), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(16, 102, 214, 0.16), transparent 36%),
    linear-gradient(118deg, #082f25 0%, #082a2e 50%, #07161f 100%);
  box-shadow: inset 0 -34px 58px rgba(2, 12, 12, 0.2);
}

.hero::before {
  opacity: 0.18;
  background:
    radial-gradient(circle at 25% 32%, rgba(7, 92, 69, 0.24), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(16, 102, 214, 0.16), transparent 32%),
    linear-gradient(115deg, rgba(217, 165, 33, 0.06), transparent 42%);
}

.hero::after {
  opacity: 0.2;
  background:
    radial-gradient(circle at 48% -8%, rgba(255, 224, 143, 0.18), transparent 30%),
    radial-gradient(circle at 50% 108%, rgba(5, 73, 59, 0.24), transparent 44%);
}

.hero-inner {
  padding: 2.72rem 1rem 3rem;
}

.hero-inner h1 {
  margin-top: 0.85rem;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.hero-copy {
  max-width: 68ch;
  color: rgba(243, 248, 246, 0.88);
}

.hero .breadcrumb-list,
.home-hero .breadcrumb-list {
  background: rgba(5, 22, 21, 0.66);
  border-color: rgba(217, 165, 33, 0.28);
  box-shadow:
    0 12px 24px rgba(1, 11, 12, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-hero {
  background:
    linear-gradient(180deg, rgba(3, 13, 12, 0.28), rgba(3, 13, 12, 0.82)),
    radial-gradient(circle at 50% 0%, rgba(217, 165, 33, 0.24), transparent 30%),
    url("/assets/footer-stadium.webp?v=20260616a") center 52% / cover no-repeat;
}

@media (max-width: 980px) {
  .site-nav a {
    padding-inline: 0.66rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    background:
      linear-gradient(180deg, rgba(3, 11, 12, 0.88), rgba(5, 24, 23, 0.54) 68%, rgba(5, 24, 23, 0));
    padding-top: 0.58rem;
    padding-bottom: 0.48rem;
  }

  .nav-wrap,
  .site-header-home .nav-wrap {
    min-height: 64px;
    padding: 0.42rem 0.56rem;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(2, 13, 14, 0.22);
  }

  .brand img {
    height: 46px !important;
  }

  .nav-toggle {
    min-height: 40px;
    padding: 0.42rem 0.72rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #f8fcfa;
    border-color: rgba(255, 255, 255, 0.18);
  }

  .site-nav {
    top: calc(var(--header-height) + 0.55rem);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(5, 31, 27, 0.98), rgba(4, 15, 16, 0.98));
    box-shadow: 0 18px 36px rgba(2, 13, 14, 0.34);
  }

  .hero {
    padding-top: 1.55rem;
  }

  .hero-inner {
    padding: 2.35rem 0.75rem 2.55rem;
  }

  .hero-inner h1 {
    margin-top: 0.72rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero .breadcrumb-list {
    font-size: 0.82rem;
    padding: 0.52rem 0.68rem;
  }
}

/* Keep semantic image captions in markup without showing them under visuals. */
figure > figcaption {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Team squad player cards */
.squad-section .player-grid {
  gap: 1.35rem;
}

.squad-section .player-grid .player-card {
  border-radius: 16px;
  border: 1px solid rgba(7, 92, 69, 0.16);
  background: linear-gradient(180deg, #ffffff, #f5faf7);
  box-shadow: 0 14px 30px rgba(4, 39, 29, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.squad-section .player-grid .player-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 165, 33, 0.46);
  box-shadow: 0 22px 42px rgba(4, 39, 29, 0.16);
}

.squad-section .player-grid .player-image-wrap {
  aspect-ratio: 4 / 4.1;
  background:
    radial-gradient(circle at 50% 12%, rgba(217, 165, 33, 0.16), transparent 34%),
    linear-gradient(180deg, #edf6f2, #dcebe6);
}

.squad-section .player-grid .player-info {
  min-height: 11.8rem;
  gap: 0.45rem;
  padding: 1.05rem 1.05rem 1.1rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 165, 33, 0.13), transparent 34%),
    linear-gradient(155deg, #073927 0%, #08282c 58%, #071923 100%);
}

.squad-section .player-grid .player-number {
  top: 0.75rem;
  right: 0.85rem;
  font-size: 2.35rem;
  color: rgba(255, 255, 255, 0.16);
}

.squad-section .player-grid .player-pos {
  width: fit-content;
  margin-bottom: 0.15rem;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  background: rgba(217, 165, 33, 0.14);
  color: #f3c747;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.squad-section .player-grid .player-name {
  font-size: clamp(1.45rem, 1.7vw, 1.8rem);
}

.squad-section .player-grid .player-club {
  font-size: 0.92rem;
  color: rgba(235, 244, 241, 0.76);
}

.squad-section .player-grid .player-profile-link {
  position: relative;
  min-height: 46px;
  margin-top: auto;
  padding: 0.74rem 1rem;
  border: 1px solid rgba(217, 165, 33, 0.42);
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd767, #d9a521);
  color: #071610;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(217, 165, 33, 0.18);
}

.squad-section .player-grid .player-profile-link::after {
  content: "→";
  margin-left: 0.45rem;
  font-size: 0.95rem;
  transition: transform 0.18s ease;
}

.squad-section .player-grid .player-profile-link:hover,
.squad-section .player-grid .player-profile-link:focus-visible,
.squad-section .player-grid .player-profile-link:visited:hover,
.squad-section .player-grid .player-profile-link:visited:focus-visible {
  background: linear-gradient(135deg, #ffe493, #d9a521);
  border-color: rgba(255, 228, 147, 0.72);
  color: #071610;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(217, 165, 33, 0.26);
}

.squad-section .player-grid .player-profile-link:hover::after,
.squad-section .player-grid .player-profile-link:focus-visible::after {
  transform: translateX(3px);
}

.squad-section .player-grid .player-profile-link:visited {
  color: #071610;
}

@media (max-width: 760px) {
  .squad-section .player-grid {
    gap: 1rem;
  }

  .squad-section .player-grid .player-info {
    min-height: 10.8rem;
    padding: 1rem;
  }
}

/* Stadium directory cards */
.stadiums-card-grid {
  gap: 1.25rem;
}

.stadiums-card-grid .card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(7, 92, 69, 0.16);
  background: linear-gradient(180deg, #ffffff, #f5faf7);
  box-shadow: 0 14px 30px rgba(4, 39, 29, 0.1);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.stadiums-card-grid .card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(4, 24, 22, 0.12) 64%, rgba(4, 24, 22, 0.48) 100%);
  opacity: 0.55;
}

.stadiums-card-grid .card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 165, 33, 0.44);
  box-shadow: 0 22px 42px rgba(4, 39, 29, 0.16);
}

.stadiums-card-grid .card-image {
  height: 212px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.stadiums-card-grid .card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 16.6rem;
  padding: 1.05rem 1.08rem 1.12rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 165, 33, 0.12), transparent 34%),
    linear-gradient(155deg, #073927 0%, #08282c 58%, #071923 100%);
  color: #ffffff;
}

.stadiums-card-grid .chip {
  width: fit-content;
  padding: 0.2rem 0.54rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 165, 33, 0.22);
  background: rgba(217, 165, 33, 0.13);
  color: #f3c747;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stadiums-card-grid .card h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.55rem, 1.8vw, 1.95rem);
  letter-spacing: 0.01em;
  line-height: 1;
}

.stadiums-card-grid .card p:not(.chip) {
  margin: 0;
  color: rgba(235, 244, 241, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
}

.stadiums-card-grid .card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 0.74rem 1rem;
  border: 1px solid rgba(217, 165, 33, 0.42);
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd767, #d9a521);
  color: #071610;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(217, 165, 33, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.stadiums-card-grid .card-link::after {
  content: "→";
  margin-left: 0.45rem;
  font-size: 0.95rem;
  transition: transform 0.18s ease;
}

.stadiums-card-grid .card-link:hover,
.stadiums-card-grid .card-link:focus-visible {
  background: linear-gradient(135deg, #ffe493, #d9a521);
  border-color: rgba(255, 228, 147, 0.72);
  color: #071610;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(217, 165, 33, 0.26);
}

.stadiums-card-grid .card-link:hover::after,
.stadiums-card-grid .card-link:focus-visible::after {
  transform: translateX(3px);
}

@media (max-width: 760px) {
  .stadiums-card-grid {
    gap: 1rem;
  }

  .stadiums-card-grid .card-image {
    height: 220px;
  }

  .stadiums-card-grid .card-body {
    min-height: 14.8rem;
  }
}

/* Mobile menu stability layer */
@media (max-width: 760px) {
  .site-header {
    z-index: 1000;
  }

  .nav-wrap,
  .site-header-home .nav-wrap {
    overflow: visible;
  }

  .nav-wrap > .site-nav,
  .site-header-home .nav-wrap > .site-nav {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    width: auto;
    max-height: calc(100dvh - 96px);
    margin: 0;
    padding: 0.72rem;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.42rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(217, 165, 33, 0.2);
    border-radius: 16px;
    background:
      radial-gradient(circle at 8% 0%, rgba(217, 165, 33, 0.12), transparent 34%),
      linear-gradient(155deg, #073927 0%, #051817 58%, #071723 100%);
    box-shadow:
      0 22px 42px rgba(2, 13, 14, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px) saturate(145%);
  }

  .nav-wrap > .site-nav.is-open,
  .site-header-home .nav-wrap > .site-nav.is-open {
    display: grid;
    animation: mobile-nav-in 0.18s ease-out;
  }

  .nav-wrap > .site-nav a,
  .site-header-home .nav-wrap > .site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    padding: 0.72rem 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(248, 252, 250, 0.92);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    box-shadow: none;
    transform: none;
  }

  .nav-wrap > .site-nav a:hover,
  .nav-wrap > .site-nav a[aria-current="page"],
  .site-header-home .nav-wrap > .site-nav a:hover,
  .site-header-home .nav-wrap > .site-nav a[aria-current="page"] {
    border-color: rgba(255, 229, 150, 0.58);
    background: linear-gradient(135deg, #ffd767, #d9a521);
    color: #071610;
    box-shadow: 0 10px 20px rgba(217, 165, 33, 0.2);
  }
}

@media (max-width: 380px) {
  .nav-wrap > .site-nav,
  .site-header-home .nav-wrap > .site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-wrap > .site-nav a,
  .site-header-home .nav-wrap > .site-nav a {
    font-size: 0.84rem;
    padding-inline: 0.45rem;
  }
}

/* Homepage latest article cards */
.homepage-content #homepage-latest-articles.news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.homepage-content #homepage-latest-articles .news-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(7, 92, 69, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 165, 33, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff, #eef7f4);
  box-shadow: 0 16px 34px rgba(4, 39, 29, 0.1);
  gap: 0;
}

.homepage-content #homepage-latest-articles .news-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-blue));
  pointer-events: none;
}

.homepage-content #homepage-latest-articles .news-card-media {
  order: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #061711;
}

.homepage-content #homepage-latest-articles .news-card-media img {
  width: 100%;
  height: 182px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.homepage-content #homepage-latest-articles .news-badge {
  position: absolute;
  z-index: 4;
  top: 0.82rem;
  left: 0.82rem;
  padding: 0.28rem 0.62rem;
  border: 1px solid rgba(255, 229, 150, 0.48);
  background: rgba(5, 24, 20, 0.78);
  color: #ffd767;
  box-shadow: 0 8px 18px rgba(2, 13, 14, 0.22);
  backdrop-filter: blur(10px);
}

.homepage-content #homepage-latest-articles .news-card h3,
.homepage-content #homepage-latest-articles .news-card p,
.homepage-content #homepage-latest-articles .news-card .news-meta,
.homepage-content #homepage-latest-articles .news-card .card-link {
  margin-inline: 1.05rem;
}

.homepage-content #homepage-latest-articles .news-card h3 {
  margin-top: 1rem;
  color: #0f2b1e;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.26;
}

.homepage-content #homepage-latest-articles .news-card p {
  margin-top: 0.75rem;
  color: #607089;
  font-size: 0.95rem;
  line-height: 1.55;
}

.homepage-content #homepage-latest-articles .news-meta {
  margin-top: auto;
  padding-top: 0.95rem;
  color: #6b7888;
  font-size: 0.86rem;
}

.homepage-content #homepage-latest-articles .news-source {
  color: #0f2b1e;
  font-weight: 800;
}

.homepage-content #homepage-latest-articles .card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 1rem;
  margin-bottom: 1.05rem;
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(217, 165, 33, 0.42);
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd767, #d9a521);
  color: #071610;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(217, 165, 33, 0.18);
}

.homepage-content #homepage-latest-articles .card-link::after {
  content: "→";
  margin-left: 0.45rem;
}

.homepage-content #homepage-latest-articles .card-link:hover,
.homepage-content #homepage-latest-articles .card-link:focus-visible {
  background: linear-gradient(135deg, #ffe493, #d9a521);
  border-color: rgba(255, 228, 147, 0.72);
}

@media (max-width: 1100px) {
  .homepage-content #homepage-latest-articles.news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .homepage-content #homepage-latest-articles.news-grid {
    grid-template-columns: 1fr;
  }

  .homepage-content #homepage-latest-articles .news-card-media img {
    height: 210px;
  }
}

@media (max-width: 720px) {
  .homepage-content #standings .table-responsive {
    overflow: hidden;
    border: 1px solid rgba(7, 92, 69, 0.16);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(4, 39, 29, 0.08);
  }

  .homepage-content #standings .table-responsive::after {
    content: none;
    display: none;
  }

  .homepage-content #standings .data-table {
    display: table;
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    table-layout: fixed;
    background: #ffffff;
    font-size: 0.75rem;
  }

  .homepage-content #standings .data-table thead {
    position: static;
    display: table-header-group;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
  }

  .homepage-content #standings .data-table tbody {
    display: table-row-group;
  }

  .homepage-content #standings .data-table tr {
    display: table-row;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .homepage-content #standings .data-table th,
  .homepage-content #standings .data-table td {
    display: table-cell;
    width: auto;
    min-width: 0;
    padding: 0.58rem 0.36rem;
    border-bottom: 1px solid rgba(7, 92, 69, 0.12);
    color: var(--text);
    font-size: 0.74rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    vertical-align: middle;
  }

  .homepage-content #standings .data-table th {
    background: linear-gradient(135deg, var(--primary-strong), #0b6b4f);
    color: #ffffff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .homepage-content #standings .data-table th::before,
  .homepage-content #standings .data-table td::before {
    content: none;
  }

  .homepage-content #standings .data-table th:nth-child(1),
  .homepage-content #standings .data-table td:nth-child(1) {
    width: 28%;
    padding-left: 0.5rem;
  }

  .homepage-content #standings .data-table th:nth-child(2),
  .homepage-content #standings .data-table td:nth-child(2) {
    width: 38%;
  }

  .homepage-content #standings .data-table th:nth-child(3),
  .homepage-content #standings .data-table td:nth-child(3) {
    width: 34%;
    padding-right: 0.5rem;
  }

  .homepage-content #standings .data-table tr:nth-child(even) td {
    background: rgba(7, 92, 69, 0.055);
  }

  .homepage-content #standings .data-table tr:last-child td {
    border-bottom: 0;
  }
}

.homepage-content .home-panel .schedule-live-shell-home .schedule-live-hero p {
  color: rgba(240, 249, 242, 0.94) !important;
}

.homepage-content .home-panel .schedule-live-shell-home .schedule-live-hero span {
  color: rgba(255, 250, 224, 0.96) !important;
}

.homepage-content .home-panel .home-schedule-actions p {
  color: rgba(235, 244, 237, 0.84) !important;
}

.homepage-content .home-panel .home-schedule-actions p a {
  color: #f2d872 !important;
}

.home-venues-showcase {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.4rem;
  max-width: 100%;
}

.home-venues-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0.9rem;
  border: 1px solid rgba(210, 181, 77, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(210, 181, 77, 0.16), transparent 32%),
    linear-gradient(135deg, #071f16 0%, #123328 55%, #1d2f41 100%);
  box-shadow: 0 20px 42px rgba(7, 31, 22, 0.14);
}

.home-venues-summary div {
  min-height: 92px;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(244, 225, 151, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.home-venues-summary span,
.home-venues-cta span {
  display: block;
  color: #f2d872;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-venues-summary strong {
  display: block;
  margin-top: 0.45rem;
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.2;
}

.home-venue-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 100%;
}

.home-venue-card {
  position: relative;
  min-height: 340px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 51, 40, 0.14);
  border-radius: 24px;
  background: #071f16;
  box-shadow: 0 18px 38px rgba(7, 31, 22, 0.14);
  isolation: isolate;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-venue-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 181, 77, 0.54);
  box-shadow: 0 26px 52px rgba(7, 31, 22, 0.2);
}

.home-venue-card-featured {
  grid-column: span 2;
}

.home-venue-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.01);
  transition: transform 0.3s ease;
}

.home-venue-card:hover img {
  transform: scale(1.05);
}

.home-venue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 31, 22, 0.05) 0%, rgba(7, 31, 22, 0.46) 42%, rgba(7, 31, 22, 0.92) 100%),
    radial-gradient(circle at 100% 0%, rgba(210, 181, 77, 0.2), transparent 30%);
}

.home-venue-card-body {
  display: flex;
  min-height: 340px;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.05rem;
}

.home-venue-card-body p {
  margin: 0 0 0.42rem !important;
  color: rgba(235, 244, 237, 0.82) !important;
  font-size: 0.84rem !important;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35 !important;
}

.homepage-content .home-venue-card-body p {
  color: rgba(235, 244, 237, 0.82) !important;
}

.home-venue-card-body h3 {
  margin: 0;
  color: #fff8d8;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  letter-spacing: 0.01em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.homepage-content .home-venue-card-body h3 {
  color: #fff8d8 !important;
}

.home-venue-card-body strong {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin-top: 0.8rem;
  padding: 0.3rem 0.72rem;
  border: 1px solid rgba(244, 225, 151, 0.26);
  border-radius: 999px;
  background: rgba(244, 225, 151, 0.13);
  color: #f2d872;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-venue-card-body a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(244, 225, 151, 0.52);
  border-radius: 999px;
  background: linear-gradient(135deg, #d7bc53, #f2d872);
  color: #112a1f !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(210, 181, 77, 0.22);
  text-align: center;
}

.home-venue-card-body a::after,
.home-venues-cta a::after {
  content: "→";
  margin-left: 0.45rem;
  transition: transform 0.18s ease;
}

.home-venue-card-body a:hover::after,
.home-venue-card-body a:focus-visible::after,
.home-venues-cta a:hover::after,
.home-venues-cta a:focus-visible::after {
  transform: translateX(3px);
}

.home-venues-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(210, 181, 77, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(7, 31, 22, 0.96), rgba(18, 51, 40, 0.92)),
    radial-gradient(circle at 90% 0%, rgba(210, 181, 77, 0.18), transparent 32%);
}

.home-venues-cta h3 {
  margin: 0.28rem 0 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.home-venues-cta a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #123328 !important;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .home-venue-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-venues-summary {
    grid-template-columns: 1fr;
    border-radius: 18px;
    padding: 0.75rem;
  }

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

  .home-venue-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .home-venue-card-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .home-venue-card,
  .home-venue-card-body {
    min-height: 284px;
  }

  .home-venue-card-featured {
    grid-column: auto;
  }

  .home-venue-card {
    border-radius: 18px;
  }

  .home-venue-card-body {
    padding: 0.9rem;
  }

  .home-venue-card-body h3 {
    font-size: clamp(1.42rem, 8vw, 1.85rem);
  }

  .home-venue-card-body a {
    width: 100%;
    min-height: 42px;
  }

  .home-venues-cta {
    align-items: stretch;
    flex-direction: column;
    border-radius: 18px;
  }

  .home-venues-cta a {
    width: 100%;
  }
}
