:root {
  color-scheme: dark;
  --black: #050507;
  --panel: #0d1118;
  --panel-strong: #141a24;
  --white: #f7f8fb;
  --muted: #a9b2c0;
  --red: #c8102e;
  --blue: #1f4fd6;
  --navy: #061946;
  --line: rgba(255, 255, 255, .14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.concept-header {
  position: relative;
  overflow: hidden;
  padding: 64px clamp(18px, 5vw, 72px) 28px;
  background:
    linear-gradient(120deg, rgba(5, 5, 7, .96) 0%, rgba(5, 5, 7, .82) 48%, rgba(31, 79, 214, .24) 100%),
    url("images/background.png") center/cover;
  box-shadow: inset 0 -110px 90px var(--black);
}

.concept-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(247, 248, 251, .12) 28% 29%, transparent 29% 56%, rgba(200, 16, 46, .75) 56% 58%, transparent 58%),
    linear-gradient(180deg, transparent 0 64%, rgba(31, 79, 214, .65) 64% 66%, transparent 66%);
  opacity: .5;
}

.concept-hero,
main {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
}

main {
  max-width: 1344px;
}

.concept-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 7, .9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
}

.concept-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1200px;
  margin-inline: auto;
}

.concept-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.concept-brand-logo {
  display: block;
  width: clamp(140px, 14vw, 193px);
  max-width: 48vw;
  height: auto;
}

.concept-nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--white);
  font-weight: 800;
}

.concept-nav-links a:hover,
.concept-nav-links a:focus-visible,
.concept-nav-links a[aria-current="page"] {
  color: var(--white);
}

.concept-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: 0;
  padding-top: 40px;
}

.concept-hero > * {
  min-width: 0;
}

.concept-hero > div {
  position: relative;
  isolation: isolate;
}

.concept-hero > div::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px auto -22px -24px;
  width: min(940px, calc(100vw - 36px));
  background: linear-gradient(90deg, rgba(5, 5, 7, .96) 0%, rgba(5, 5, 7, .9) 72%, rgba(5, 5, 7, .55) 88%, transparent 100%);
  pointer-events: none;
}

.concept-eyebrow,
.competition {
  display: block;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.concept-eyebrow {
  color: #ff526b;
}

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

h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(1.333rem, 3.55vw, 2.933rem);
  line-height: .9;
  letter-spacing: 0;
}

.concept-intro {
  max-width: none;
  margin-bottom: 0;
  color: rgba(247, 248, 251, .8);
  font-size: 1rem;
  line-height: 1.65;
}

.content-panel {
  max-width: none;
}

.content-panel h2 {
  margin: 38px 0 12px;
  padding-top: 38px;
  color: var(--white);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.15;
}

.content-panel > h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.content-panel p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(.98rem, 1.5vw, 1.05rem);
  line-height: 1.72;
}

.editorial-list {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--muted);
  font-size: clamp(.98rem, 1.5vw, 1.05rem);
  line-height: 1.72;
}

.editorial-list li::marker {
  color: var(--red);
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.content-panel a {
  color: #8fb0ff;
  text-decoration: underline;
  text-decoration-color: rgba(143, 176, 255, .55);
  text-underline-offset: 3px;
}

.content-panel a:hover,
.content-panel a:focus-visible {
  color: #ff526b;
  text-decoration-color: currentColor;
}

.privacy-action {
  margin: 24px 0 6px;
}

.content-panel .privacy-action-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 82, 107, .58);
  border-radius: 6px;
  background: rgba(200, 16, 46, .16);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.content-panel .privacy-action-link:hover,
.content-panel .privacy-action-link:focus-visible {
  border-color: #ff526b;
  background: rgba(200, 16, 46, .26);
}

.policy-table-wrap {
  overflow-x: auto;
  margin: 18px 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

.policy-table th,
.policy-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table thead th {
  background: rgba(247, 248, 251, .07);
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.policy-table tbody th {
  color: var(--white);
  font-weight: 800;
}

.policy-table tbody tr:last-child th,
.policy-table tbody tr:last-child td {
  border-bottom: 0;
}

.policy-table code {
  color: #8fb0ff;
  white-space: nowrap;
}

.content-meta {
  margin: 20px 0 0;
  color: rgba(247, 248, 251, .64);
  font-size: .88rem;
  font-weight: 750;
}

.contact-panel {
  display: grid;
  gap: 9px;
  margin-bottom: 44px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 82, 107, .34);
  border-left: 4px solid #ff526b;
  border-radius: 6px;
  background: linear-gradient(110deg, rgba(200, 16, 46, .14), rgba(13, 17, 24, .76));
}

.contact-panel span {
  color: #ff526b;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-panel a {
  width: fit-content;
  color: var(--white);
  font-size: clamp(1.08rem, 3vw, 1.45rem);
  font-weight: 850;
}

.content-panel > .contact-panel:not(:first-child) {
  margin: 38px 0 0;
}

.control-bar,
.rail-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 17, 24, .86);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.count-badge {
  border-radius: 8px;
  background: rgba(247, 248, 251, .08);
  color: rgba(247, 248, 251, .86);
  font-size: .82rem;
  font-weight: 850;
}

main {
  padding: 28px clamp(18px, 5vw, 72px) 64px;
}

.concept-header:has(.home-hero),
.concept-header.content-header {
  padding-bottom: 0;
}

.concept-header:has(.home-hero) + main,
.concept-header + .content-main {
  padding-top: 26px;
}

.nav-guide,
.nav-channel-guide {
  position: relative;
}

.nav-guide summary,
.nav-channel-guide summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-guide summary::-webkit-details-marker,
.nav-channel-guide summary::-webkit-details-marker {
  display: none;
}

.nav-guide summary::after,
.nav-channel-guide summary::after {
  content: "▾";
  color: #ff526b;
  font-size: .8rem;
}

.nav-guide[open] summary::after,
.nav-channel-guide[open] summary::after {
  content: "▴";
}

.channel-filter-menu {
  position: absolute;
  top: calc(100% + 23px);
  right: 0;
  display: grid;
  width: 248px;
  max-height: calc(100vh - 100px);
  overflow: auto;
  padding: 8px;
  border: 1px solid #30343c;
  border-radius: 8px;
  background: #090c12;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.channel-filter-menu button,
.channel-filter-menu a {
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  font-weight: 750;
}

.channel-filter-menu button:hover,
.channel-filter-menu button:focus-visible,
.channel-filter-menu button[aria-pressed="true"],
.channel-filter-menu a:hover,
.channel-filter-menu a:focus-visible,
.channel-filter-menu a[aria-current="page"] {
  background: rgba(200, 16, 46, .16);
  color: var(--white);
}

.channel-filter-menu button[aria-pressed="true"]::after,
.channel-filter-menu a[aria-current="page"]::after {
  content: "✓";
  float: right;
  color: #ff526b;
}


.competition-grid {
  position: absolute;
  top: calc(100% + 23px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1000px, calc(100vw - 36px));
  max-height: calc(100vh - 100px);
  overflow: auto;
  gap: 1px;
  border: 1px solid #30343c;
  border-radius: 8px;
  background: #30343c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.competition-grid section {
  padding: 22px 18px;
  background: #090c12;
}

.competition-grid h2 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 1.15rem;
}

.competition-grid button,
.competition-grid a {
  display: block;
  width: 100%;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.competition-grid button:hover,
.competition-grid button:focus-visible,
.competition-grid a:hover,
.competition-grid a:focus-visible {
  color: #ff526b;
}

.toggle-group button,
.section-heading button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 248, 251, .06);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.toggle-group .active {
  border-color: var(--red);
  background: var(--red);
}

.control-bar {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 26px;
  padding: 18px;
}

.control-bar > *,
.dashboard-grid > * {
  min-width: 0;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: #070a0f;
  color: var(--white);
}

.fixture-search-control {
  position: relative;
  min-width: 0;
}

.fixture-search-control input {
  height: 100%;
  min-height: 44px;
  padding: 8px 14px 8px 46px;
  font-size: .96rem;
}

.fixture-search-control input::placeholder {
  color: rgba(169, 178, 192, .76);
}

.fixture-search-control input:focus,
.fixture-date-tab:focus-visible {
  border-color: rgba(255, 82, 107, .82);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .18);
}

.fixture-search-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 17px;
  width: 22px;
  height: 22px;
  color: var(--muted);
  pointer-events: none;
  transform: translateY(-50%);
}

.fixture-search-icon circle,
.fixture-search-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.fixture-date-controls {
  display: flex;
  min-width: 0;
  gap: 3px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scroll-snap-type: inline proximity;
}

.fixture-date-tabs {
  display: contents;
}

.fixture-date-controls .fixture-date-tab,
.fixture-date-controls .fixture-range-button {
  flex: 1 0 70px;
  scroll-snap-align: start;
  -webkit-tap-highlight-color: transparent;
  /* Keep each changing selection on its own paint layer in mobile Safari. */
  transform: translateZ(0);
}

.fixture-date-tab {
  display: flex;
  min-width: 0;
  min-height: 44px;
  padding: 5px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: #181c22;
  color: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.08;
}

@media (hover: hover) {
.fixture-date-tab:hover {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(247, 248, 251, .08);
}
}


.fixture-date-tab[aria-pressed="true"],
.fixture-date-tab[aria-current="page"] {
  border-color: rgba(255, 82, 107, .75);
  background: #39151e;
  box-shadow: inset 0 -3px 0 var(--red);
}

.fixture-date-day,
.fixture-date-value {
  display: block;
  margin: 0;
  color: inherit;
  white-space: nowrap;
}

.fixture-date-day {
  font-size: .64rem;
  font-weight: 950;
  letter-spacing: .05em;
}

.fixture-date-value {
  margin-top: 2px;
  font-size: .67rem;
  font-weight: 850;
}

.fixture-range-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.08;
  min-height: 44px;
  padding: 5px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 248, 251, .06);
  color: var(--white);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.fixture-range-button:hover,
.fixture-range-button:focus-visible {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(247, 248, 251, .1);
}

.fixture-range-button[aria-pressed="true"] {
  border-color: rgba(255, 82, 107, .75);
  background: #39151e;
  box-shadow: inset 0 -3px 0 var(--red);
}

.toggle-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.toggle-group button,
.section-heading button {
  padding-inline: 12px;
}

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

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

.section-heading h2 {
  margin: 0;
  font-size: 1.55rem;
}

.section-heading.compact h2 {
  font-size: 1.12rem;
}

.count-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
}

.fixture-column {
  min-width: 0;
  scroll-margin-top: 90px;
}

.fixture-day + .fixture-day {
  margin-top: 26px;
}

.fixture-day-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0 4px 10px;
}

.fixture-day-heading h3 {
  margin: 0;
  color: #ff526b;
  font-size: 1rem;
}

.fixture-day-heading span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
}

.fixture-card {
  --league-accent: #8fb0ff;
  background: rgba(13, 17, 24, .72);
}

.fixture-table-wrap {
  overflow-x: auto;
  border-block: 1px solid var(--line);
}

.fixture-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.fixture-table th,
.fixture-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: middle;
}

.fixture-table th {
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 251, .035);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fixture-table th:nth-child(1),
.fixture-table td:nth-child(1) {
  width: 9%;
}

.fixture-table th:nth-child(2),
.fixture-table td:nth-child(2) {
  width: 48%;
}

.fixture-table th:nth-child(3),
.fixture-table td:nth-child(3) {
  width: 19%;
}

.fixture-table th:nth-child(4),
.fixture-table td:nth-child(4) {
  width: 24%;
  text-align: right;
}

.fixture-table tbody tr + tr td {
  border-top: 1px solid var(--line);
}

.fixture-table tbody tr:hover {
  background: rgba(247, 248, 251, .045);
}

[data-fixture-layout="cards"] .fixture-table-wrap {
  overflow: visible;
  border: 0;
}

[data-fixture-layout="cards"] .fixture-table,
[data-fixture-layout="cards"] .fixture-table tbody {
  display: block;
  width: 100%;
  min-width: 0;
}

[data-fixture-layout="cards"] .fixture-table thead {
  display: none;
}

[data-fixture-layout="cards"] .fixture-card {
  display: grid;
  grid-template-columns: 64px minmax(220px, 1.5fr) minmax(150px, .65fr) minmax(220px, 1fr);
  column-gap: clamp(18px, 2.4vw, 36px);
  align-items: center;
  min-height: 58px;
  margin-bottom: 8px;
  padding: 8px 17.1px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  transition: border-left-color .18s ease;
}

[data-fixture-layout="cards"] .fixture-card:hover {
  border-left-color: var(--league-accent);
}

[data-fixture-layout="cards"] .fixture-card td {
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  text-align: left;
}

[data-fixture-layout="cards"] .fixture-card .fixture-channels {
  justify-content: flex-end;
}

.league-tone-premier-league {
  --league-accent: #c68cff;
}

.league-tone-championship {
  --league-accent: #64b9ff;
}

.league-tone-league-one {
  --league-accent: #55d3ad;
}

.league-tone-league-two {
  --league-accent: #f0bc62;
}

.league-tone-scottish {
  --league-accent: #91a1ff;
}

.league-tone-wsl,
.league-tone-womens {
  --league-accent: #f184bc;
}

.league-tone-champions-league,
.league-tone-europa-league,
.league-tone-conference-league {
  --league-accent: #62d5e8;
}

.league-tone-fa-cup,
.league-tone-carabao-cup,
.league-tone-efl-trophy {
  --league-accent: #ff7888;
}

.league-tone-international,
.league-tone-welsh {
  --league-accent: #a6d47a;
}

.fixture-card.live {
  background: var(--panel);
}

.fixture-card time {
  color: #d8dbe2;
  font-size: 1.08rem;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.fixture-main,
.fixture-competition {
  min-width: 0;
}

.fixture-competition {
  min-width: 0;
}

.competition {
  margin-bottom: 0;
  color: var(--league-accent);
  font-size: .74rem;
  line-height: 1.35;
}

.fixture-main h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.3;
}

.fixture-main h3 .fixture-versus {
  color: var(--red);
}

.fixture-team {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--white);
}

.team-shirt {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .32));
}

.fixture-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

@media (max-width: 1050px) {
  .fixture-table th,
  .fixture-table td {
    padding-inline: 14px;
  }

  [data-fixture-layout="cards"] .fixture-card {
    grid-template-columns: 58px minmax(0, 1fr) minmax(145px, .65fr);
    gap: 8px 20px;
  }

  [data-fixture-layout="cards"] .fixture-card .fixture-time {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    padding-top: 2px;
  }

  [data-fixture-layout="cards"] .fixture-main {
    grid-column: 2;
    grid-row: 1;
  }

  [data-fixture-layout="cards"] .fixture-competition {
    grid-column: 3;
    grid-row: 1;
  }

  [data-fixture-layout="cards"] .fixture-card td:last-child {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  [data-fixture-layout="cards"] .fixture-card .fixture-channels {
    justify-content: flex-start;
  }
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.channel-sky {
  border-color: #3f82ff;
}

.channel-now {
  border-color: #00e89d;
}

.channel-bbc-one {
  border-color: #e31b3d;
}

.channel-bbc-two {
  border-color: #00a6a6;
}

.channel-iplayer {
  border-color: #ff4fa3;
}

.channel-bbc-website {
  border-color: #ffd230;
}

.channel-hearts {
  border-color: #631832;
}

.channel-spfl {
  border-color: #d6aa01;
}

.channel-bbc-scotland {
  border-color: #7d72ff;
}

.channel-bbc-alba {
  border-color: #58a6ff;
}

.channel-premier {
  border-color: #ffd400;
}

.channel-amazon {
  border-color: #00a8e1;
}

.channel-pending {
  border-color: #f5a623;
}

.channel-cymru {
  border-color: #d71920;
  background: linear-gradient(90deg, rgba(215, 25, 32, .24), rgba(0, 132, 61, .2));
}

.channel-hbo {
  border-color: #25252a;
  background: #050507;
}

.channel-club {
  border-color: #f2f2f2;
}

.channel-tnt {
  border-color: #ed24e8;
  background: #ed24e8;
}

.channel-discovery {
  border-color: #5b6cff;
}

.side-rail {
  display: grid;
  align-content: start;
  gap: 10px;
}

.rail-section {
  padding: 18px;
}

.side-rail .rail-section:not(.listing-note) {
  padding: 12px;
}

.side-rail .section-heading {
  margin-bottom: 8px;
}

.side-rail .section-heading.compact h2 {
  font-size: .95rem;
}

.side-rail .section-heading button {
  min-height: 30px;
  padding-inline: 9px;
  font-size: .75rem;
}

.club-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding-block: 8px;
  border-top: 1px solid var(--line);
}

.club-row strong {
  font-size: .84rem;
}

.club-row strong,
.club-row small {
  display: block;
}

.club-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.club-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.club-dot.red {
  background: var(--red);
}

.club-dot.blue {
  background: var(--blue);
}

.club-dot.white {
  background: var(--white);
}

.channel-meter {
  margin-top: 6px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(247, 248, 251, .08);
}

.channel-meter span {
  display: block;
  width: var(--value);
  min-width: 72px;
  padding: 6px 8px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  font-size: .72rem;
  font-weight: 900;
  white-space: nowrap;
}

.listing-note {
  margin: 24px 2px 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.empty-state {
  margin: 24px 0;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.footer {
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  max-width: 1200px;
  margin: 0 auto 14px;
}

.footer-links a {
  color: var(--white);
  font-size: .92rem;
  font-weight: 850;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ff526b;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer p {
  max-width: 1200px;
  margin: 0 auto;
  font-size: .9rem;
  line-height: 1.55;
  text-align: center;
}

#layout-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 248, 251, .06);
  color: var(--white);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

#layout-toggle:hover,
#layout-toggle:focus-visible {
  border-color: rgba(255, 82, 107, .75);
}

.layout-toggle-track {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 20px;
  padding: 2px;
  border-radius: 999px;
  background: #414754;
  transition: background .18s ease;
}

.layout-toggle-track span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
  transition: transform .18s ease;
}

#layout-toggle[aria-pressed="true"] .layout-toggle-track {
  background: var(--red);
}

#layout-toggle[aria-pressed="true"] .layout-toggle-track span {
  transform: translateX(14px);
}

[hidden] {
  display: none !important;
}

@media (max-width: 860px) {
  .concept-nav-links {
    flex: 1;
    width: auto;
    min-width: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .concept-nav-links > * {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .concept-nav-links > a,
  .concept-nav-links summary {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .concept-hero,
  .dashboard-grid,
  .control-bar {
    grid-template-columns: minmax(0, 1fr);
  }

  .fixture-search-control {
    width: min(100%, 320px);
  }

  .concept-hero {
    padding-top: 32px;
  }

  .nav-channel-guide,
  .nav-guide {
    position: static;
  }

  .channel-filter-menu,
  .competition-grid {
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    width: auto;
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
    white-space: normal;
  }

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

  .toggle-group {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .concept-header {
    padding-top: 70px;
    padding-bottom: 24px;
  }

  .concept-nav {
    padding: 9px 18px;
  }

  .concept-nav-inner {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .concept-brand {
    min-width: 0;
  }

  .concept-brand-logo {
    width: 113px;
    max-width: 29vw;
  }

  .concept-nav-links {
    gap: 16px;
    font-size: .78rem;
  }

  /* Anchor dropdowns outside the scrolling row so they are not clipped. */
  .nav-channel-guide,
  .nav-guide {
    position: static;
  }

  .channel-filter-menu,
  .competition-grid {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: auto;
    max-height: calc(100dvh - 120px);
    white-space: normal;
  }

  .nav-layout-toggle [data-layout-toggle-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .control-bar {
    gap: 12px;
    padding: 12px;
  }

  .fixture-search-control {
    width: 100%;
  }

  .fixture-search-control input {
    min-height: 44px;
  }

  .fixture-date-controls .fixture-date-tab,
  .fixture-date-controls .fixture-range-button {
    flex: 0 0 82px;
  }

  .fixture-date-tab {
    min-height: 44px;
    scroll-snap-align: start;
  }


  h1 {
    font-size: 1.267rem;
    max-width: none;
  }

  .home-hero-title {
    font-size: 1.267rem;
  }

  .content-header {
    padding-bottom: 0;
  }

  .content-panel {
    padding: 0;
  }

  .content-panel h2 {
    margin-top: 30px;
    padding-top: 30px;
  }

  .contact-panel {
    margin-bottom: 34px;
    padding: 20px;
  }

  .fixture-table {
    min-width: 680px;
  }

  .fixture-table th,
  .fixture-table td {
    padding: 13px 12px;
  }

  [data-fixture-layout="cards"] .fixture-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 11px 12px;
  }

  [data-fixture-layout="cards"] .fixture-card .fixture-time {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  [data-fixture-layout="cards"] .fixture-main {
    grid-column: 2;
    grid-row: 1;
  }

  [data-fixture-layout="cards"] .fixture-competition {
    grid-column: 2;
    grid-row: 2;
  }

  [data-fixture-layout="cards"] .fixture-card td:last-child {
    grid-column: 2 / -1;
    grid-row: 3;
  }

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