/* Component styles. Shared current tokens live in product-system.css. */
:root {
  color-scheme: dark;
  --bg: #000000;
  --surface: #171717;
  --surface-raised: #242424;
  --surface-hover: #303030;
  --border: #3c3c3c;
  --text: #f2f2f2;
  --secondary: #c7c7c7;
  --muted: #ababab;
  --accent: #d0d0d0;
  --accent-fill: #575757;
  --accent-soft: #292929;
  --success: #49d18b;
  --warning: #f4c44e;
  --danger: #fa7d83;
  --live: #fc858c;
  --portrait: #444444;
  --portrait-text: #eeeeee;
  --home: #69b6e6;
  --away: #bfacfa;
  --radius: 10px;
  --radius-sm: 6px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --shadow: 0 12px 40px #0003;
  --transition: 160ms ease;
  --panel: var(--surface);
  --raised: var(--surface-raised);
  --line: var(--border);
  --lime: var(--accent);
}
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #f6f0e4;
  --surface-raised: #eee4d2;
  --surface-hover: #e7dbc5;
  --border: #d9ccb5;
  --text: #29251e;
  --secondary: #62594b;
  --muted: #726754;
  --accent: #785a20;
  --accent-fill: #785a20;
  --accent-soft: #e9dcc1;
  --success: #137d48;
  --danger: #b8293b;
  --live: #b8293b;
  --portrait: #e4e9e6;
  --portrait-text: #36483e;
  --shadow: 0 12px 40px #20332916;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}
body {
  margin: 0px;
  background:
    radial-gradient(circle at top left, rgba(129, 243, 190, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg), #070b09 70%);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
[hidden] {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  border: 0px;
  background: none;
}
button,
a,
input,
select {
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}
button:disabled {
  opacity: 0.45;
  cursor: default;
}
button:hover,
a:hover {
  color: var(--accent);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
input,
select {
  min-width: 0px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 14px;
}
input::placeholder {
  color: var(--muted);
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0px;
}
h1 {
  font-size: 26px;
  letter-spacing: -0.6px;
  line-height: 1.2;
}
h2 {
  font-size: 23px;
  letter-spacing: -0.4px;
}
h3 {
  font-size: 17px;
}
h4 {
  font-size: 14px;
}
small {
  font-size: 12px;
}
img {
  max-width: 100%;
}
.muted,
.meta,
.status,
.hint {
  color: var(--muted);
}
.status,
.hint {
  font-size: 12px;
  line-height: 1.6;
}
.eyebrow {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.ui-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  vertical-align: middle;
}
.button,
.filter-button {
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 550;
  border: 1px solid var(--border);
  background: var(--surface);
}
.button:hover,
.filter-button:hover {
  background: var(--surface-hover);
}
.button[aria-pressed="true"],
.filter-button[aria-pressed="true"] {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: var(--accent);
}
.skip {
  position: fixed;
  top: -60px;
  left: 12px;
  padding: 10px 16px;
  background: var(--accent-fill);
  color: white;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  white-space: nowrap;
  border: 0px;
}
.header {
  position: sticky;
  top: 0px;
  z-index: 30;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0 18px;
}
.brand-menu {
  position: relative;
  flex-shrink: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px 0px;
  color: var(--text);
}
.brand-symbol {
  object-fit: contain;
}
.brand-wordmark {
  font-weight: 750;
  white-space: nowrap;
  letter-spacing: -0.6px;
}
.wordmark-plus {
  color: var(--accent);
  margin-left: -3px;
}
.brand-chevron {
  margin-left: 8px;
  color: var(--muted);
}
.brand-chevron .ui-icon {
  width: 14px;
}
.brand-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0px;
  width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: var(--shadow);
  z-index: 50;
}
.brand-dropdown a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.brand-dropdown a:hover {
  background: var(--surface-hover);
}
.brand-dropdown small {
  display: none;
}
.main-nav {
  align-self: stretch;
  display: flex;
  gap: 26px;
}
.main-nav a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  padding: 15px 0px;
}
.main-nav a.active {
  color: var(--accent);
}
.main-nav a.active::after {
  content: "";
  height: 3px;
  background: var(--accent);
  position: absolute;
  bottom: -1px;
  left: 0px;
  right: 0px;
  border-radius: 3px 3px 0px 0px;
}
.auto {
  margin-left: auto;
  white-space: nowrap;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 7px;
  align-items: center;
}
.auto::before,
.live-dot {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}
.auto i {
  display: none;
}
.layout {
  margin: auto;
  display: grid;
  min-height: calc(-150px + 100vh);
  gap: 22px;
}
.sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}
.league-button {
  width: 100%;
  display: flex;
  text-align: left;
  color: var(--secondary);
}
.league-button:hover,
.league-button.selected {
  background: var(--surface-raised);
  color: var(--text);
}
.league-identity {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0px;
  font-size: inherit;
}
.league-logo {
  height: 22px;
  width: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.sidebar-note {
  color: var(--muted);
}
.content {
  min-width: 0px;
}
.section {
  scroll-margin-top: 88px;
}
.hero-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 22px 22px 20px;
  background: linear-gradient(135deg, rgba(17, 23, 21, 0.9), rgba(23, 31, 28, 0.95));
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}
.hero-copy {
  max-width: 720px;
}
.hero-copy .eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
}
.hero-lead {
  max-width: 56ch;
  margin-top: 12px;
  color: var(--secondary);
  font-size: 15px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: 10px;
  min-width: min(100%, 320px);
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.hero-stats span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stats strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.section-title .search {
  max-width: 270px;
}
.section-title .search input {
  width: 100%;
}
.panel {
  background: var(--surface);
}
.panel-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.match-toolbar {
  display: flex;
  align-items: center;
}
.segmented {
  display: flex;
  align-items: center;
}
.segmented button {
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}
.segmented button.selected {
  background: var(--accent-soft);
  color: var(--accent);
}
#filtersButton {
  margin-left: auto;
  border-color: transparent;
  background: var(--surface-raised);
}
.datebar {
  display: grid;
  grid-template-columns: 36px minmax(120px, 160px) 36px 46px 1fr;
  align-items: center;
  gap: 5px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.datebar > button {
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.datebar > button:hover {
  background: var(--surface-raised);
}
#previousDay .ui-icon {
  transform: rotate(180deg);
}
.date-choice {
  position: relative;
  min-width: 0px;
  text-align: center;
}
#dateLabel {
  min-height: 36px;
  width: 100%;
  font-size: 14px;
  font-weight: 650;
}
#matchDate {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  left: 50%;
  bottom: 0px;
}
#matchDate.date-fallback {
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
  top: 100%;
  left: 0px;
  width: 170px;
  height: 40px;
  background: var(--surface);
}
.date-reset {
  font-size: 12px;
  color: var(--accent);
  padding: 8px 2px;
}
#coverageLabel {
  font-size: 12px;
  text-align: right;
  margin-left: auto;
}
.match-filterbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
}
.match-search {
  flex: 1 1 0%;
  min-width: 150px;
}
.match-search input {
  width: 100%;
}
.match-filterbar input,
.match-filterbar select {
  min-height: 40px;
}
.clear-filters {
  font-size: 13px;
  text-decoration: underline;
  min-height: 36px;
}
#matchFilterCount {
  font-size: 12px;
  flex-basis: 100%;
  color: var(--muted);
}
#advancedFilters {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.favourites-bar {
  padding: 0px 16px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.favourites-title {
  font-size: 12px;
  white-space: nowrap;
  color: var(--muted);
}
#favouriteClubs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.club-pill {
  display: flex;
  gap: 5px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  padding: 5px 9px;
}
.club-pill .ui-icon {
  width: 13px;
  height: 13px;
  flex-basis: 13px;
}
.favourites-empty {
  color: var(--muted);
  font-size: 12px;
}
.favourites-empty a {
  color: var(--accent);
}
.active-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}
.active-filters button {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 5px 8px;
  border-radius: 20px;
}
.active-filters .ui-icon {
  width: 13px;
  height: 13px;
  flex-basis: 13px;
}
.filter-count {
  font-size: 12px;
  color: var(--accent);
}
.league-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.competition-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  min-height: 24px;
}
.round-label {
  font-size: 12px;
  color: var(--muted);
}
.round-label:empty {
  display: none;
}
.match-row {
  display: grid;
  grid-template-columns: 88px minmax(0px, 1fr) 46px;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}
.match-row:last-child {
  border-bottom: 0px;
}
.match-row:hover {
  background: var(--surface-hover);
}
.match-time {
  font-size: 12px;
  color: var(--muted);
  padding: 5px;
  line-height: 1.4;
  min-height: 40px;
}
.match-time.live {
  color: var(--live);
  font-weight: 700;
}
.match-time.live::before {
  content: "LIVE";
  display: block;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.match-teams {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0px;
}
.match-team {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0px;
  text-align: left;
  font-weight: 500;
  padding: 0px;
  line-height: 1.35;
}
.crest {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}
.image-unavailable {
  visibility: hidden;
}
.match-scores {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 17px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  line-height: 24px;
  text-align: center;
  padding: 0px 5px;
}
[data-density="compact"] .match-row {
  min-height: 72px;
  padding-top: 7px;
  padding-bottom: 7px;
}
[data-density="compact"] .match-teams,
[data-density="compact"] .match-scores {
  gap: 4px;
}
.native-league-select {
  pointer-events: none;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.league-picker {
  position: relative;
  min-width: 0px;
  max-width: 100%;
}
.league-picker-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 8px 12px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  max-width: 100%;
}
.league-picker-list {
  position: absolute;
  top: calc(100% + 5px);
  right: 0px;
  z-index: 40;
  width: 250px;
  max-width: calc(-32px + 100vw);
  max-height: 370px;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 5px;
}
.league-picker-list button {
  display: flex;
  width: 100%;
  text-align: left;
  font-size: 13px;
  padding: 10px;
  border-radius: var(--radius-sm);
}
.league-picker-list button:hover,
.league-picker-list button[aria-pressed="true"] {
  background: var(--accent-soft);
  color: var(--accent);
}
.top-five-icon {
  display: grid;
  place-items: center;
  width: 22px;
}
.news-topics {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.news-topics button {
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid var(--border);
}
.news-topics button[aria-pressed="true"] {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: transparent;
}
#newsStatus {
  margin-bottom: 16px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 20px;
}
.story {
  min-width: 0px;
  padding-bottom: 18px;
}
.story-media {
  position: relative;
  background: var(--surface-raised);
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms;
}
.story:hover .story-media img {
  transform: scale(1.025);
}
.story-media figcaption {
  position: absolute;
  right: 4px;
  bottom: 3px;
  background: rgba(0, 0, 0, 0.667);
  color: rgb(255, 255, 255);
  font-size: 10px;
  padding: 2px 4px;
  border-radius: 3px;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story .eyebrow {
  color: var(--accent);
}
.story h3 {
  margin: 5px 0px 9px;
  font-weight: 650;
}
.news-grid .story:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 22px;
}
.news-grid .story:first-child h3 {
  font-size: 27px;
  letter-spacing: -0.6px;
}
.news-grid .story:first-child .story-body {
  align-self: center;
  padding: 0px;
}
.news-grid .story:nth-child(n + 4) {
  display: grid;
  grid-template-columns: 125px minmax(0px, 1fr);
  gap: 12px;
}
.news-grid .story:nth-child(n + 4) .story-body {
  padding: 0px;
}
.news-grid .story:nth-child(n + 4) h3 {
  font-size: 15px;
}
.news-grid .story:nth-child(n + 4) .story-media {
  aspect-ratio: 1.4 / 1;
}
.news-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.transfer-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.transfer-grid .story {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
}
.transfer-grid .story-body {
  padding: 0px;
}
.transfer-grid h3 {
  font-size: 19px;
}
.text-link {
  font-size: 13px;
  color: var(--accent);
}
.table-scroll {
  width: 100%;
  overflow: auto;
  border-radius: var(--radius);
  scrollbar-width: thin;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
caption {
  text-align: left;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--secondary);
}
caption .league-identity {
  margin-right: 10px;
}
th {
  font-weight: 550;
  color: var(--muted);
  font-size: 12px;
  background: var(--surface-raised);
}
th,
td {
  padding: 11px 10px;
  text-align: right;
  border-bottom: 1px solid var(--border);
}
th:first-child,
td:first-child {
  text-align: center;
  width: 32px;
  color: var(--muted);
}
th:nth-child(2),
td:nth-child(2) {
  text-align: left;
}
td:last-child {
  font-weight: 750;
  color: var(--text);
}
tbody tr:hover {
  background: var(--surface-hover);
}
.team-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0px;
  text-align: left;
  min-height: 26px;
  font-weight: 550;
}
.team-link .crest {
  width: 23px;
  height: 23px;
}
#tableWrap > .empty {
  font-size: 12px;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
#tables > .hint {
  margin: -6px 0px 14px;
}
footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.footer-brand {
  font-weight: 700;
  color: var(--secondary);
}
footer div {
  display: flex;
  gap: 16px;
  margin-left: auto;
}
footer button {
  font-size: 12px;
  padding: 0px;
}
.empty {
  padding: 32px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.empty .button {
  margin-left: 8px;
}
.connection-notice {
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid var(--warning);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--warning);
}
dialog {
  width: min(920px, 100% - 32px);
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 0px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: auto;
}
dialog::backdrop {
  background: rgba(3, 8, 5, 0.7);
  backdrop-filter: blur(4px);
}
.dialog-head {
  position: sticky;
  top: 0px;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.dialog-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dialog-head h2 {
  font-size: 18px;
}
.dialog-head .button {
  padding: 8px;
  min-width: 38px;
}
.dialog-head #teamCrest:empty {
  display: none;
}
#teamCrest .crest {
  width: 45px;
  height: 45px;
}
#teamCompetition {
  font-size: 12px;
  margin-top: 3px;
}
.follow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 6px;
}
.follow-row .status {
  font-size: 12px;
}
#teamStatus {
  padding: 0px 20px 14px;
}
.club-tabs,
.fixture-tabs {
  display: flex;
  padding: 0px 20px;
  background: var(--surface);
}
.club-tabs button,
.fixture-tabs button {
  position: relative;
  font-weight: 600;
  color: var(--secondary);
  white-space: nowrap;
}
.club-tabs button[aria-selected="true"],
.fixture-tabs button[aria-selected="true"] {
  color: var(--accent);
}
.club-tabs button[aria-selected="true"]::after,
.fixture-tabs button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
#clubMatches,
#clubSquad {
  padding: 20px;
}
#clubMatches > .hint {
  margin: 8px 0px 15px;
}
#squadSeason {
  font-size: 12px;
  margin: 4px 0px 16px;
}
#squadGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 20px;
}
.squad-group {
  min-width: 0px;
}
.squad-group h4 {
  color: var(--secondary);
  padding: 8px 0px;
  border-bottom: 1px solid var(--border);
}
.player {
  display: grid;
  grid-template-columns: 38px 20px minmax(0px, 1fr);
  align-items: center;
  column-gap: 9px;
  padding: 10px 0px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.player .player-portrait {
  grid-row: span 2;
}
.player > strong {
  font-size: 14px;
  font-weight: 550;
}
.player > small {
  grid-column: 3;
  color: var(--muted);
  font-size: 12px;
}
.player > .muted {
  font-size: 12px;
}
.result-row {
  display: grid;
  grid-template-columns: 74px minmax(0px, 1fr) 84px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.result-row > span:first-child {
  font-size: 12px;
  color: var(--muted);
}
.result-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.result-score {
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.win {
  color: var(--success);
}
.loss {
  color: var(--danger);
}
.draw {
  color: var(--muted);
}
.player-portrait {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--portrait);
  flex: 0 0 44px;
  color: var(--portrait-text);
}
.player-portrait img {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  visibility: visible;
}
.portrait-fallback {
  font-size: 13px;
  font-weight: 750;
}
.has-photo .portrait-fallback {
  visibility: hidden;
}
.player .player-portrait {
  width: 38px;
  height: 38px;
}
.event-portrait {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  margin: 4px;
  --face-size: 44px;
}
.event-portrait > .player-portrait {
  width: var(--face-size);
  height: var(--face-size);
  flex-basis: var(--face-size);
}
.orbit-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
}
.orbit-badge > .ui-icon {
  width: 13px;
  height: 13px;
  flex-basis: 13px;
}
.orbit-goal {
  bottom: -5px;
  right: -6px;
  width: 24px;
  height: 23px;
}
.orbit-assist {
  bottom: -4px;
  left: -7px;
  color: var(--accent);
}
.orbit-assist b {
  font-size: 9px;
  position: absolute;
  bottom: -3px;
  left: -2px;
  background: var(--surface);
  border-radius: 50%;
}
.orbit-card {
  top: -4px;
  right: -6px;
  gap: 1px;
  width: 18px;
  height: 20px;
}
.card-mark {
  width: 8px;
  height: 12px;
  display: block;
  border-radius: 1px;
  background: var(--warning);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 1px;
}
.card-mark.red {
  background: rgb(238, 74, 89);
}
.orbit-sub {
  top: -4px;
  left: -6px;
}
.sub-on {
  color: var(--success);
}
.sub-off {
  color: var(--danger);
}
.goal-cluster {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
}
.goal-cluster > .ui-icon {
  position: absolute;
  width: 14px;
  height: 14px;
  left: 4px;
  top: 4px;
}
.goal-cluster.count-2 > .ui-icon:first-child {
  left: 1px;
  top: 1px;
}
.goal-cluster.count-2 > .ui-icon:nth-child(2) {
  left: 8px;
  top: 8px;
}
.goal-cluster.count-3 > .ui-icon:first-child {
  left: 4px;
  top: -1px;
}
.goal-cluster.count-3 > .ui-icon:nth-child(2) {
  left: -1px;
  top: 8px;
}
.goal-cluster.count-3 > .ui-icon:nth-child(3) {
  left: 9px;
  top: 8px;
}
.goal-cluster b {
  position: absolute;
  bottom: -5px;
  right: -5px;
  font-size: 10px;
  background: var(--surface);
  border-radius: 8px;
  padding: 0px 2px;
}
.missed-penalty::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  transform: rotate(-45deg);
  background: var(--danger);
}
.match-hero {
  padding: 16px 24px 20px;
  background: var(--surface);
}
.fixture-competition {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}
.fixture-scoreboard {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 16px;
  align-items: center;
  margin: 22px 0px 16px;
}
.score-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 0px;
}
.score-team .crest {
  width: 56px;
  height: 56px;
}
.score-team strong {
  font-weight: 600;
}
.fixture-score {
  text-align: center;
}
.fixture-score > b {
  display: block;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}
.fixture-score small {
  font-size: 12px;
  color: var(--muted);
}
.match-state.is-live {
  color: var(--live);
}
.hero-scorers {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 8px;
}
.hero-scorers > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scorer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.scorer-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.scorer-row .event-portrait {
  --face-size: 30px;
}
.scorer-row .portrait-fallback {
  font-size: 10px;
}
.hero-scorers > div:last-child .scorer-row {
  flex-direction: row-reverse;
  text-align: right;
}
.fixture-content {
  padding: 20px;
}
.facts-grid {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) 245px;
  gap: 18px;
}
.match-card {
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  min-width: 0px;
}
.match-info {
  display: grid;
  gap: 5px;
}
.match-info span {
  font-size: 12px;
  color: var(--muted);
}
.match-info b {
  font-size: 14px;
  font-weight: 550;
  margin-bottom: 8px;
}
.match-source {
  padding: 0px 20px 16px;
}
.comparison {
  margin: 15px 0px;
}
.comparison-label {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  text-align: center;
}
.comparison-label b:first-child {
  text-align: left;
}
.comparison-label b:last-child {
  text-align: right;
}
.comparison-label span {
  color: var(--secondary);
}
.comparison-bar {
  height: 5px;
  display: flex;
  gap: 4px;
  margin-top: 9px;
  border-radius: 5px;
  overflow: hidden;
}
.comparison-bar i:first-child {
  background: var(--home);
}
.comparison-bar i:last-child {
  background: var(--away);
}
.stat-legend {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 12px;
}
.stat-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stat-legend i {
  width: 7px;
  height: 7px;
  background: var(--home);
  border-radius: 50%;
}
.stat-legend span:last-child i {
  background: var(--away);
}
.timeline-item {
  display: grid;
  grid-template-columns: 52px minmax(0px, 1fr) auto 20px;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 13px 0px;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child {
  border: 0px;
}
.event-copy strong {
  font-size: 14px;
  font-weight: 550;
}
.event-copy small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.event-minute {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--secondary);
  max-width: 115px;
  text-align: right;
}
.timeline-item details summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
}
.timeline-item details p {
  position: absolute;
  right: 0px;
  left: 0px;
  top: 100%;
  background: var(--surface-raised);
  padding: 12px;
  font-size: 12px;
  border-radius: var(--radius-sm);
  z-index: 8;
  box-shadow: var(--shadow);
}
.headshot-source {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  grid-column: 1 / -1;
}
.headshot-source a {
  text-decoration: underline;
}
.lineup-card {
  max-width: 660px;
  margin: 0px auto 20px;
  padding: 0px;
  overflow: visible;
}
.lineup-team {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  font-size: 14px;
}
.lineup-team span {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
}
.football-pitch {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 68 / 105;
  margin: 0px 12px;
  border-width: 1px;
  border-style: solid;
  border-image: none;
  border-radius: 3px;
  color: rgb(241, 247, 243);
}
.pitch-markings {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  color: rgba(220, 239, 232, 0.37);
  pointer-events: none;
  overflow: visible;
}
.pitch-half {
  position: relative;
  z-index: 1;
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 12px 6px;
  gap: 8px;
}
.pitch-row {
  display: flex;
  align-items: start;
  justify-content: space-around;
  gap: 6px;
}
.pitch-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0px;
  flex: 1 1 0%;
  text-align: center;
  max-width: 23%;
}
.pitch-name {
  font-size: 12px;
  line-height: 1.3;
  overflow-wrap: anywhere;
  font-weight: 550;
  text-shadow: rgb(0, 0, 0) 0px 1px 3px;
}
.pitch-name b {
  font-size: 10px;
  font-weight: 400;
  color: rgb(195, 214, 202);
}
.lineup-minutes {
  font-size: 10px;
  line-height: 1.1;
  color: rgb(214, 230, 221);
}
.pitch-note {
  font-size: 12px;
  color: var(--muted);
  padding: 12px 16px;
}
.bench-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 16px;
}
.fixture-player {
  display: grid;
  grid-template-columns: 48px minmax(0px, 1fr) 25px;
  align-items: center;
  gap: 9px;
  padding: 10px 0px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.fixture-player strong {
  font-size: 13px;
  font-weight: 550;
}
.fixture-player strong small {
  color: var(--muted);
}
.fixture-player > .event-portrait {
  --face-size: 36px;
}
.settings-page {
  max-width: 820px;
  margin: 32px auto;
  padding: 0px 24px;
}
.settings-back {
  display: inline-block;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 20px;
}
.settings-page > .eyebrow {
  display: none;
}
.settings-page > h1 {
  margin-bottom: 8px;
}
.settings-page > .muted {
  margin-bottom: 24px;
  font-size: 14px;
}
.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}
.setting-row h2 {
  font-size: 17px;
  margin-bottom: 5px;
}
.setting-row p {
  font-size: 14px;
  color: var(--muted);
}
.palette-preview {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.palette {
  width: 45px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.dark-palette {
  background: linear-gradient(90deg, rgb(16, 20, 18) 50%, rgb(41, 50, 44) 50%);
}
.light-palette {
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255) 50%,
    rgb(224, 241, 231) 50%
  );
}
.settings-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  padding: 18px 0px;
}
.about-copy {
  padding: 22px;
}
.about-copy p {
  margin-bottom: 14px;
  font-size: 14px;
}
.about-copy p:last-child {
  margin: 0px;
}
#infoDialog {
  padding: 24px;
  max-width: 560px;
}
#infoText {
  margin: 16px 0px;
  color: var(--secondary);
  font-size: 14px;
}
#settingsSaved {
  margin-top: 12px;
}
@media (max-width: 1100px) {
  .layout {
    grid-template-columns: 170px minmax(0px, 1fr);
    gap: 20px;
    padding: 20px;
  }
  .header-inner {
    gap: 28px;
  }
  .main-nav {
    gap: 20px;
  }
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .facts-grid > aside {
    order: -1;
  }
  .match-info {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
  .match-info h3 {
    grid-column: 1 / -1;
  }
  .match-info span,
  .match-info b {
    margin: 0px;
  }
  .match-toolbar {
    flex-wrap: wrap;
  }
  .match-toolbar .league-picker {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .sidebar {
    display: none;
  }
  .layout {
    display: block;
    max-width: 900px;
  }
  .header-inner {
    padding: 0px 20px;
    gap: 24px;
  }
  .auto {
    display: none;
  }
  .main-nav {
    margin-left: auto;
  }
  .news-grid .story:first-child h3 {
    font-size: 24px;
  }
}
@media (max-width: 650px) {
  html {
    scroll-padding-top: 110px;
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 0px;
    padding: 4px 16px 0px;
    min-height: 0px;
  }
  .brand {
    padding: 0px;
  }
  .brand-symbol {
    width: 43px;
    height: 34px;
  }
  .brand-wordmark {
    font-size: 17px;
  }
  .brand-chevron {
    margin-left: 5px;
  }
  .main-nav {
    width: 100%;
    margin: 0px;
    justify-content: space-between;
    gap: 20px;
    min-height: 44px;
  }
  .main-nav a {
    font-size: 14px;
    padding: 10px 0px;
  }
  .layout {
    padding: 16px 12px;
  }
  .section-title {
    margin-bottom: 13px;
    gap: 10px;
  }
  .section-title h1 {
    font-size: 23px;
  }
  #refreshData {
    font-size: 0px;
    min-width: 36px;
    padding: 8px;
    background: none;
    border: 0px;
  }
  #refreshData .ui-icon {
    font-size: 14px;
  }
  .match-toolbar {
    padding: 8px;
    gap: 6px;
  }
  .segmented {
    gap: 1px;
  }
  .segmented button {
    font-size: 13px;
    padding: 8px;
    min-height: 38px;
  }
  #filtersButton {
    font-size: 0px;
    padding: 8px;
    min-width: 38px;
    gap: 2px;
  }
  #filtersButton .filter-count {
    font-size: 12px;
  }
  .datebar {
    grid-template-columns: 34px minmax(100px, 1fr) 34px 43px;
    gap: 2px;
    padding: 6px 8px;
  }
  #coverageLabel {
    display: none;
  }
  .datebar > button {
    min-height: 36px;
  }
  #dateLabel {
    font-size: 14px;
  }
  .match-filterbar {
    padding: 10px;
    gap: 7px;
  }
  .match-filterbar input,
  .match-filterbar select {
    font-size: 13px;
    padding: 9px;
  }
  .match-search {
    flex-basis: 100%;
  }
  .favourites-bar {
    padding: 0px 10px 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .league-heading {
    padding: 9px 12px;
    font-size: 13px;
  }
  .league-heading .league-logo {
    width: 20px;
    height: 20px;
  }
  .round-label {
    max-width: 35%;
    text-align: right;
  }
  .match-row {
    grid-template-columns: 58px minmax(0px, 1fr) 30px;
    gap: 8px;
    padding: 10px 12px 10px 4px;
    min-height: 83px;
  }
  .match-time {
    font-size: 12px;
  }
  .match-team {
    font-size: 14px;
    gap: 8px;
  }
  .match-team .crest {
    width: 21px;
    height: 21px;
  }
  .match-scores {
    font-size: 16px;
  }
  .panel-foot {
    padding: 11px 12px;
    align-items: flex-start;
  }
  .panel-foot > span {
    max-width: 82%;
    font-size: 11px;
  }
  .news-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .news-grid .story:first-child {
    display: block;
  }
  .news-grid .story:first-child .story-body {
    padding-top: 12px;
  }
  .news-grid .story:first-child h3 {
    font-size: 23px;
  }
  .news-grid .story:nth-child(n + 2) {
    display: grid;
    grid-template-columns: 110px minmax(0px, 1fr);
    gap: 12px;
  }
  .news-grid .story:nth-child(n + 2) .story-media {
    aspect-ratio: 1.2 / 1;
  }
  .news-grid .story:nth-child(n + 2) .story-body {
    padding: 0px;
  }
  .news-grid .story:nth-child(n + 2) h3 {
    font-size: 15px;
  }
  .section-title .search {
    max-width: 180px;
  }
  .section-title .search input {
    font-size: 13px;
  }
  .transfer-grid .story {
    grid-template-columns: 100px minmax(0px, 1fr);
    gap: 12px;
  }
  .transfer-grid h3 {
    font-size: 16px;
  }
  .transfer-grid .story-media {
    aspect-ratio: 1.2 / 1;
  }
  .story .eyebrow,
  .story .meta {
    font-size: 12px;
  }
  th,
  td {
    padding: 10px 8px;
  }
  table {
    font-size: 12px;
  }
  table th:nth-child(2),
  table td:nth-child(2) {
    position: sticky;
    left: 0px;
    background: var(--surface);
    z-index: 1;
  }
  .team-link {
    font-size: 13px;
    gap: 7px;
  }
  .team-link .crest {
    width: 21px;
    height: 21px;
  }
  footer {
    margin-top: 24px;
    gap: 8px;
  }
  footer div {
    margin-left: 0px;
    flex-basis: 100%;
    gap: 16px;
  }
  dialog {
    width: 100%;
    max-height: 100dvh;
    height: auto;
    border-radius: 12px 12px 0px 0px;
    align-self: end;
    margin: auto auto 0px;
    border-left: 0px;
    border-right: 0px;
  }
  .dialog-head {
    padding: 12px 16px;
  }
  .dialog-head h2 {
    font-size: 17px;
  }
  .follow-row {
    padding: 14px 16px 8px;
    flex-wrap: wrap;
    gap: 6px;
  }
  #teamStatus {
    padding: 0px 16px 12px;
  }
  .club-tabs,
  .fixture-tabs {
    padding: 0px 16px;
    gap: 20px;
  }
  .club-tabs button,
  .fixture-tabs button {
    font-size: 14px;
    padding: 12px 0px;
  }
  #clubMatches,
  #clubSquad {
    padding: 16px;
  }
  #squadGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .result-row {
    grid-template-columns: 55px minmax(0px, 1fr) 65px;
    font-size: 13px;
    gap: 8px;
  }
  .result-score {
    font-size: 13px;
  }
  .match-hero {
    padding: 14px 14px 18px;
  }
  .fixture-competition {
    font-size: 12px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .fixture-scoreboard {
    grid-template-columns: 1fr 110px 1fr;
    gap: 8px;
    margin: 18px 0px;
  }
  .fixture-score > b {
    font-size: 30px;
  }
  .score-team {
    font-size: 13px;
    gap: 8px;
  }
  .score-team .crest {
    width: 42px;
    height: 42px;
  }
  .hero-scorers {
    grid-template-columns: 1fr 6px 1fr;
    gap: 5px;
  }
  .scorer-row {
    font-size: 12px;
    gap: 6px;
    align-items: flex-start;
  }
  .scorer-row small {
    font-size: 11px;
  }
  .scorer-row .event-portrait {
    --face-size: 26px;
    margin: 5px;
  }
  .scorer-row .orbit-goal {
    transform: scale(0.85);
    transform-origin: right bottom;
  }
  .fixture-content {
    padding: 12px;
  }
  .match-card {
    padding: 14px;
    margin-bottom: 12px;
  }
  .facts-grid {
    gap: 0px;
  }
  .timeline-item {
    grid-template-columns: 46px minmax(0px, 1fr) auto 18px;
    gap: 8px;
  }
  .timeline-item .event-portrait {
    --face-size: 36px;
  }
  .event-copy strong {
    font-size: 13px;
  }
  .event-minute {
    font-size: 12px;
    max-width: 74px;
  }
  .event-copy small {
    font-size: 12px;
  }
  .lineup-card {
    padding: 0px;
  }
  .football-pitch {
    margin: 0px 5px;
    min-height: 600px;
    aspect-ratio: auto;
  }
  .pitch-half {
    padding: 10px 2px;
    gap: 12px;
  }
  .pitch-row {
    gap: 3px;
  }
  .pitch-player {
    max-width: 25%;
    gap: 6px;
  }
  .pitch-player .event-portrait {
    --face-size: 34px;
  }
  .pitch-name {
    font-size: 12px;
  }
  .lineup-team {
    font-size: 13px;
    padding: 12px;
  }
  .bench-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .fixture-player {
    grid-template-columns: 48px minmax(0px, 1fr) 25px;
  }
  .settings-page {
    padding: 0px 16px;
    margin: 20px auto;
  }
  .settings-panel {
    padding: 0px 16px;
  }
  .setting-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .setting-row select {
    width: 100%;
  }
  .setting-row label {
    width: 100%;
  }
  .about-copy {
    padding: 18px;
  }
  .headshot-source {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .main-nav {
    gap: 14px;
  }
  .main-nav a {
    font-size: 13px;
  }
  .section-title .search {
    max-width: 150px;
  }
  .league-picker-toggle {
    font-size: 12px;
    padding: 8px;
  }
  .segmented button {
    padding: 8px 6px;
    font-size: 12px;
  }
  .match-row {
    grid-template-columns: 48px minmax(0px, 1fr) 25px;
    gap: 6px;
  }
  .match-team {
    font-size: 13px;
  }
  .fixture-scoreboard {
    grid-template-columns: 1fr 85px 1fr;
  }
  .fixture-score > b {
    font-size: 27px;
  }
  .timeline-item {
    grid-template-columns: 44px minmax(0px, 1fr) 60px 16px;
    gap: 5px;
  }
  .football-pitch {
    min-height: 600px;
  }
  .pitch-player .event-portrait {
    --face-size: 30px;
  }
  .pitch-name {
    font-size: 11px;
  }
  .pitch-row {
    gap: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    transition: none !important;
    animation: auto ease 0s 1 normal none running none !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.qualified-row td:first-child {
  box-shadow: inset 3px 0 var(--qualifier);
}
.story-media img {
  position: absolute;
  inset: 0px;
}
.loading-skeleton {
  padding: 20px;
  display: grid;
  gap: 14px;
}
.loading-skeleton i {
  height: 14px;
  border-radius: 4px;
  background: var(--surface-raised);
  width: 70%;
}
.loading-skeleton i:nth-child(2) {
  width: 90%;
}
.loading-skeleton i:nth-child(3) {
  width: 55%;
}
@media (max-width: 650px) {
  dialog {
    max-width: 100%;
  }
}
.story-clubs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 9px;
}
.story-clubs:empty {
  display: none;
}
.story-clubs button {
  font-size: 12px;
  color: var(--secondary);
  padding: 0px;
  border-bottom: 1px solid var(--border);
}
#matches > .section-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  white-space: nowrap;
}
#dateLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#dateLabel svg {
  width: 14px;
  height: 14px;
  color: var(--muted);
}
@media (min-width: 651px) {
  .squad-group {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    column-gap: 24px;
  }
  .squad-group h4 {
    grid-column: 1 / -1;
  }
}
.match-team {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
}
[data-mode="live"] .live-dot {
  background: var(--live);
}
body.club-page #main,
body.club-page #settingsPage,
body.club-page #aboutPage {
  display: none !important;
}
#teamDialog[open] {
  position: relative;
  inset: auto;
  width: min(1100px, 100% - 32px);
  max-width: none;
  max-height: none;
  margin: 24px auto;
  overflow: visible;
  box-shadow: none;
  border-radius: var(--radius);
  background: var(--surface);
}
#teamDialog .dialog-head {
  position: relative;
}
#teamDialog #closeTeam {
  width: auto;
  padding: 8px 12px;
  gap: 6px;
}
#teamDialog #closeTeam svg {
  transform: rotate(180deg);
}
@media (max-width: 650px) {
  #teamDialog[open] {
    width: 100%;
    margin: 0px;
    border-radius: 0px;
    border-left: 0px;
    border-right: 0px;
  }
}
.timeline-teams {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0px 18px;
  border-bottom: 1px solid var(--border);
}
.timeline-teams span {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 46%;
  font-size: 13px;
  font-weight: 600;
}
.timeline-teams span:last-child {
  flex-direction: row-reverse;
  text-align: right;
}
.split-timeline {
  position: relative;
}
.split-timeline::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 50%;
  width: 1px;
  background: var(--border);
}
.split-timeline .timeline-item {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) 76px minmax(0px, 1fr);
  gap: 0px;
  align-items: center;
  border: 0px;
  padding: 12px 0px;
  min-height: 82px;
}
.split-timeline .event-minute {
  grid-area: 1 / 2;
  justify-self: center;
  text-align: center;
  max-width: 70px;
  background: var(--surface);
  padding: 5px;
  position: relative;
  line-height: 1.5;
}
.split-timeline .event-card {
  grid-area: 1 / 1;
  display: flex;
  flex-flow: row-reverse wrap;
  align-items: center;
  gap: 12px;
  min-width: 0px;
  text-align: right;
  padding: 10px;
  background: var(--surface-raised);
  border-radius: 8px;
}
.split-timeline .away-event .event-card {
  grid-column: 3;
  flex-direction: row;
  text-align: left;
}
.split-timeline .event-copy {
  flex: 1 1 0%;
  min-width: 0px;
  overflow-wrap: anywhere;
}
.split-timeline .event-copy > small:first-of-type {
  display: none;
}
.split-timeline .event-card details {
  flex-basis: 100%;
  position: static;
  font-size: 12px;
}
.split-timeline .event-card details summary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.split-timeline .event-card details summary::after {
  content: "Details";
}
.split-timeline .event-card details p {
  position: static;
  margin: 8px 0px 0px;
  padding: 0px;
  box-shadow: none;
  background: none;
  text-align: left;
}
.manager-row {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.manager-row span {
  color: var(--muted);
  font-size: 12px;
}
.manager-row strong {
  font-size: 14px;
  font-weight: 550;
}
@media (max-width: 650px) {
  .split-timeline .timeline-item {
    grid-template-columns: minmax(0px, 1fr) 48px minmax(0px, 1fr);
    padding: 8px 0px;
  }
  .split-timeline .event-card,
  .split-timeline .away-event .event-card {
    padding: 8px 6px;
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }
  .split-timeline .event-minute {
    font-size: 11px;
    max-width: 46px;
    padding: 4px 2px;
    overflow-wrap: anywhere;
  }
  .split-timeline .event-copy {
    width: 100%;
  }
  .split-timeline .event-copy strong {
    font-size: 12px;
  }
  .split-timeline .event-card details {
    flex-basis: auto;
  }
  .timeline-teams span {
    font-size: 12px;
    gap: 5px;
  }
  .timeline-teams .crest {
    width: 20px;
    height: 20px;
  }
}
:root {
  --pitch: #1e2823;
  --pitch-border: rgba(255, 255, 255, 0.12);
  --masthead: #111613;
  --masthead-text: #f4f6f5;
}
:root[data-theme="light"] {
  --pitch: #2a382f;
  --pitch-border: rgba(255, 255, 255, 0.15);
  --masthead: #ffffff;
  --masthead-text: #111827;
}
.header {
  background: var(--masthead);
  color: var(--masthead-text);
}
.header .main-nav a,
.header .main-nav a.active,
.header .auto,
.header .brand-wordmark,
.header .wordmark-plus,
.header .brand-chevron {
  color: var(--masthead-text);
}
.header .main-nav a.active::after {
  background: var(--masthead-text);
}
.header .brand-dropdown {
  color: var(--text);
}
:root:not([data-theme="light"]) .league-logo[src*="uefa.champions"] {
  filter: grayscale(1) brightness(0) invert(0.9);
}
.football-pitch {
  background: var(--pitch);
  border-color: var(--pitch-border);
}
.orbit-assist .goal-cluster > .ui-icon {
  background: var(--surface);
  border-radius: 3px;
}
.manager-source {
  font-size: 11px;
  color: var(--muted);
}
:root {
  --ask-green: #3aaa78;
  --ask-green-fill: #11643f;
}
:root[data-theme="light"] {
  --ask-green: #16663e;
  --ask-green-fill: #16663e;
}
.header .main-nav .ask-nav.active {
  color: var(--ask-green);
}
.header .main-nav .ask-nav.active::after {
  background: var(--ask-green);
}
body.asking .layout {
  display: block;
  max-width: 1050px;
}
.ask-page {
  max-width: 840px;
  margin: 0px auto;
  padding: 6px 0px 24px;
}
.ask-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0px 0px 28px;
}
.ask-heading h1 {
  font-size: 32px;
  letter-spacing: -1px;
  margin: 0px;
}
.ask-heading .eyebrow {
  font-size: 11px;
  color: var(--ask-green);
  margin: 0px 0px 5px;
}
#askIntro h2 {
  margin: 0px 0px 10px;
}
.ask-suggestions button {
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  font-size: 14px;
  line-height: 1.4;
}
.ask-suggestions button span {
  color: var(--ask-green);
  font-size: 18px;
}
.ask-conversation {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 26px;
}
.ask-message {
  min-width: 0px;
}
.ask-user {
  border: 0px;
}
.ask-author {
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
}
.ask-user .ask-author {
  color: var(--muted);
}
.ask-answer {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.ask-pending .ask-answer {
  color: var(--muted);
  font-size: 14px;
}
.ask-pending .ask-answer::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ask-green);
  border-radius: 50%;
  margin-right: 8px;
  animation: 1s ease-in-out 0s infinite alternate none running ask-pulse;
}
@keyframes ask-pulse {
  100% {
    opacity: 0.3;
  }
}
.ask-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 16px;
  min-width: 0px;
}
.ask-card h3 {
  font-size: 14px;
  line-height: 1.5;
  margin: 0px 0px 14px;
}
.ask-table {
  min-width: 0px;
  width: 100%;
  font-size: 14px;
}
.ask-table th,
.ask-table td {
  padding: 10px 7px;
}
.ask-table .team-link {
  font-size: 14px;
  white-space: normal;
  text-align: left;
}
.ask-player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.ask-player-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0px;
}
.ask-player-head .player-portrait {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.ask-player-head strong {
  font-size: 16px;
}
.ask-player-head small {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}
.ask-stats {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0px;
  margin: 16px 0px 0px;
  font-size: 14px;
}
.ask-stats dt,
.ask-stats dd {
  margin: 0px;
  padding: 9px 0px;
  border-bottom: 1px solid var(--border);
}
.ask-stats dd {
  text-align: right;
  font-weight: 650;
}
.ask-match-teams {
  display: grid;
  gap: 12px;
  margin: 16px 0px;
}
.ask-match-teams > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.ask-match-teams > div > strong {
  font-size: 18px;
}
.ask-squad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ask-squad > div {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ask-squad .player-portrait {
  width: 32px;
  height: 32px;
}
.ask-squad small {
  width: 100%;
  padding-left: 40px;
}
.ask-story {
  padding: 12px 0px;
  border-top: 1px solid var(--border);
}
.ask-story a {
  font-size: 15px;
  line-height: 1.5;
}
.ask-story small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
}
.ask-sources {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}
.ask-sources small {
  font-size: 11px;
}
.ask-followups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.ask-followups button {
  padding: 8px 12px;
  text-align: left;
}
.ask-inline {
  color: var(--ask-green);
  font-size: 13px;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 0px;
}
.ask-composer {
  position: sticky;
  bottom: 0px;
  z-index: 5;
}
#askForm {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 8px;
}
#askForm:focus-within {
  border-color: var(--ask-green);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--ask-green) 15%, transparent);
}
#askInput {
  width: 100%;
  max-height: 160px;
  outline: none;
  color: var(--text);
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  font-family: inherit;
  font-optical-sizing: inherit;
  font-size-adjust: inherit;
  font-kerning: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-language-override: inherit;
  line-height: 1.4;
}
#askSend {
  font-weight: 650;
  white-space: nowrap;
}
#askSend:disabled {
  cursor: wait;
}
#askStatus {
  min-height: 18px;
  font-size: 12px;
  margin: 7px 0px 0px;
}
.ask-note {
  color: var(--muted);
  line-height: 1.5;
  margin: 4px 0px 0px;
}
.ask-context {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  margin-bottom: 8px;
  background: var(--surface);
  border-radius: 6px;
  font-size: 12px;
}
.ask-context button {
  font-size: 20px;
  padding: 4px 8px;
}
.ask-context-action {
  font-size: 12px;
  color: var(--ask-green);
}
#askTable {
  margin-bottom: 12px;
}
.ask-match-action {
  margin: 12px 20px 0px;
}
.squad-ask-player {
  font-weight: 600;
  text-align: left;
  padding: 0px;
  font-size: 14px;
}
@media (max-width: 900px) {
  .header-inner {
    gap: 20px;
  }
  .main-nav {
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .main-nav {
    gap: 12px;
    overflow-x: auto;
    justify-content: space-between;
    white-space: nowrap;
  }
  .main-nav a {
    font-size: 12px;
    flex-shrink: 0;
  }
  .ask-heading {
    margin-bottom: 24px;
  }
  .ask-heading h1 {
    font-size: 27px;
  }
  #askIntro h2 {
    font-size: 21px;
  }
  .ask-suggestions {
    gap: 8px;
    margin: 20px 0px;
  }
  .ask-suggestions button {
    padding: 12px;
    font-size: 13px;
  }
  .ask-user {
    margin-left: 5%;
  }
  .ask-card {
    padding: 12px;
  }
  .ask-composer {
    padding-bottom: env(safe-area-inset-bottom, 4px);
  }
  .ask-player-grid,
  .ask-squad {
    grid-template-columns: 1fr;
  }
  .ask-answer {
    font-size: 15px;
  }
  .ask-table th,
  .ask-table td {
    padding: 9px 4px;
  }
  .ask-table .team-link {
    font-size: 12px;
  }
  .ask-table .crest {
    width: 19px;
    height: 19px;
  }
  .ask-table td {
    font-size: 12px;
  }
  .ask-note {
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav a {
    font-size: 11px;
  }
  .ask-suggestions {
    grid-template-columns: 1fr;
  }
  .ask-suggestions button {
    min-height: 50px;
  }
  .ask-heading .button {
    padding: 8px 10px;
  }
  .ask-followups button {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ask-pending .ask-answer::before {
    animation: auto ease 0s 1 normal none running none;
  }
}
.header-inner {
  min-height: 76px;
}
.brand-symbol {
  width: 62px;
  height: 50px;
}
.brand-wordmark {
  font-size: 23px;
}
@media (max-width: 650px) {
  .header-inner {
    min-height: 0px;
    padding-top: 8px;
  }
  .brand-symbol {
    width: 50px;
    height: 40px;
  }
  .brand-wordmark {
    font-size: 20px;
  }
  .header .main-nav {
    min-height: 48px;
  }
}
.header-settings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  color: var(--masthead-text);
}
.header-settings:hover {
  background: color-mix(in srgb, var(--masthead-text) 10%, transparent);
}
.header-settings .ui-icon {
  width: 22px;
  height: 22px;
}
@media (max-width: 650px) {
  .header-settings {
    order: 1;
  }
  .header .main-nav {
    order: 2;
  }
}
:root:not([data-theme="light"]) .league-logo[src*="eng.1.png"] {
  filter: brightness(0) invert(0.9);
}
#leagueMenu {
  overflow-y: auto;
}
#playerProfile {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0px;
  box-shadow: 0 24px 80px rgba(4, 8, 12, 0.38);
}
#playerProfile::backdrop {
  background: rgba(0, 0, 0, 0.6);
}
.profile-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 26px 24px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-raised) 44%, transparent), var(--surface));
  border: 1px solid var(--border);
  border-radius: 16px;
}
.profile-hero .player-portrait {
  width: 88px;
  height: 88px;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 1px var(--border);
}
.profile-hero h3 {
  font-size: 26px;
  margin: 0px 0px 8px;
  letter-spacing: -0.04em;
}
.profile-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.profile-facts small,
.profile-facts strong {
  display: block;
}
.profile-facts small {
  color: var(--muted);
}
.profile-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.profile-tabs button {
  background: transparent;
  border-width: 0px 0px 3px;
  border-style: none none solid;
  border-color: currentcolor currentcolor transparent;
  border-image: none;
  min-height: 48px;
  padding-inline: 2px;
}
.profile-tabs button[aria-pressed="true"] {
  border-bottom-color: var(--accent);
  font-weight: 700;
}
.profile-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.profile-filters label {
  display: grid;
  gap: 6px;
  min-width: 0px;
  color: var(--muted);
}
.profile-filters select {
  max-width: 100%;
  padding: 10px;
  background: var(--surface-raised);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.profile-matches {
  min-width: 640px;
  width: 100%;
}
.profile-matches .crest {
  vertical-align: middle;
  margin-right: 8px;
}
.profile-matches .win {
  color: rgb(41, 154, 99);
}
.profile-matches .loss {
  color: rgb(217, 82, 82);
}
.profile-matches .draw {
  color: var(--muted);
}
.pitch-player,
.fixture-player,
.player-portrait[data-profile-id]:not([data-profile-id=""]) {
  cursor: pointer;
}
[role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
@media (max-width: 600px) {
  #playerProfileBody {
    padding: 16px;
  }
  .profile-hero h3 {
    font-size: 22px;
  }
  .profile-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}
#playerProfile .profile-hero .player-portrait {
  flex-grow: 0;
  flex-shrink: 0;
}
#playerProfile .profile-hero .player-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
}
#playerProfile {
  width: min(960px, -32px + 100vw);
  max-height: 92dvh;
  box-shadow: rgba(0, 0, 0, 0.467) 0px 24px 100px;
}
#playerProfile > .dialog-head {
  position: sticky;
  top: 0px;
  z-index: 5;
  background: var(--surface);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
}
#playerProfile > .dialog-head h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
#playerProfile > .dialog-head button {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 50%;
}
#playerProfileBody {
  padding: 28px;
}
#playerProfile .profile-hero {
  padding: 4px 0px 26px;
  margin-bottom: 0px;
  gap: 24px;
}
#playerProfile .profile-hero > div {
  min-width: 0px;
}
#playerProfile .profile-hero .player-portrait {
  width: 104px;
  height: 104px;
  flex-basis: 104px;
  box-shadow:
    0 0 0 5px var(--surface),
    0 0 0 6px var(--border);
}
.profile-eyebrow {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
}
#playerProfile .profile-hero h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 12px;
}
.profile-hero p {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--secondary);
  font-size: 14px;
  margin: 0px;
}
.profile-facts {
  gap: 0px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.profile-facts > div {
  background: none;
  border-radius: 0px;
  padding: 16px;
  border-right: 1px solid var(--border);
}
.profile-facts > div:last-child {
  border: 0px;
}
.profile-facts small {
  font-size: 11px;
  margin-bottom: 7px;
}
.profile-facts strong {
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.profile-tabs {
  margin: 24px 0px 20px;
  gap: 24px;
}
.profile-tabs button {
  min-height: 46px;
  padding: 12px 0px;
  font-size: 14px;
  color: var(--muted);
}
.profile-tabs button[aria-pressed="true"] {
  color: var(--text);
}
.profile-filters {
  gap: 12px;
  margin: 0px 0px 18px;
}
.profile-filters label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  flex: initial;
}
.profile-filters label:first-child {
  flex: 1 1 0%;
}
.profile-filters label:last-child {
  width: 160px;
}
.profile-filters select {
  width: 100%;
  min-height: 42px;
  font-size: 13px;
}
.profile-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.profile-summary > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.profile-summary strong {
  font-size: 28px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}
.profile-summary span {
  font-size: 12px;
  color: var(--secondary);
}
.profile-summary-note {
  font-size: 11px;
  color: var(--muted);
  margin: 9px 0px 24px;
}
#playerProfile [data-profile-panel] > h3 {
  font-size: 16px;
  margin: 22px 0px 6px;
  letter-spacing: -0.015em;
}
#playerProfile [data-profile-panel] > p.muted {
  font-size: 12px;
  margin-bottom: 16px;
}
#playerProfile .table-scroll {
  border: 1px solid var(--border);
  border-radius: 12px;
}
#playerProfile .profile-matches {
  font-size: 12px;
}
#playerProfile .profile-matches th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 10px;
  color: var(--muted);
  background: var(--surface);
}
#playerProfile .profile-matches td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
  background: transparent;
}
#playerProfile .profile-matches tr:last-child td {
  border-bottom: 0px;
}
#playerProfile .profile-matches td:nth-child(2) {
  font-weight: 600;
  min-width: 160px;
}
.profile-matches td:nth-child(2) small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 30px;
  margin-top: 3px;
}

#playerProfile [data-profile-panel] > h3 {
  margin-top: 20px;
}

#playerProfile [data-profile-panel] > p.muted {
  margin-bottom: 18px;
}

#playerProfile .profile-club {
  background: color-mix(in srgb, var(--surface-raised) 82%, transparent);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.profile-score {
  color: var(--text);
  white-space: nowrap;
}
.profile-result-badge {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: color-mix(in srgb, currentcolor 12%, transparent 88%);
  font-size: 10px;
  font-weight: 750;
  margin-left: 8px;
}
#playerProfile .win {
  color: var(--success);
}
#playerProfile .loss {
  color: var(--danger);
}
.profile-club {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin: 12px 0px;
  font-size: 14px;
  font-weight: 600;
}
#playerProfileBody > .meta {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 24px;
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
}
#playerProfile .headshot-source {
  font-size: 10px;
  color: var(--muted);
}
@media (max-width: 600px) {
  #playerProfile {
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0px;
    border: 0px;
    border-radius: 0px;
  }
  #playerProfile > .dialog-head {
    padding: 10px 18px;
  }
  #playerProfileBody {
    padding: 22px 16px;
  }
  #playerProfile .profile-hero {
    gap: 18px;
    padding-bottom: 24px;
  }
  #playerProfile .profile-hero .player-portrait {
    width: 80px;
    height: 80px;
    flex-basis: 80px;
  }
  .profile-facts {
    grid-template-columns: repeat(3, 1fr);
  }
  .profile-facts > div {
    padding: 12px;
    border-bottom: 1px solid var(--border);
  }
  .profile-facts > div:nth-child(3n) {
    border-right: 0px;
  }
  .profile-facts > div:nth-child(n + 4) {
    border-bottom: 0px;
  }
  .profile-summary {
    gap: 8px;
  }
  .profile-summary > div {
    display: grid;
    gap: 8px;
    padding: 14px 10px;
  }
  .profile-summary strong {
    font-size: 26px;
  }
  .profile-summary span {
    font-size: 11px;
  }
  .profile-filters label:last-child {
    width: 115px;
  }
  #playerProfile .table-scroll {
    border: 0px;
    overflow: visible;
  }
  #playerProfile .profile-matches {
    min-width: 0px;
    display: block;
  }
  #playerProfile .profile-matches thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  #playerProfile .profile-matches tbody {
    display: grid;
    gap: 12px;
  }
  #playerProfile .profile-matches tr {
    display: grid;
    grid-template-columns: repeat(5, minmax(0px, 1fr));
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    gap: 12px 4px;
  }
  #playerProfile .profile-matches td {
    border: 0px;
    padding: 0px;
    min-width: 0px;
    text-align: center;
    font-size: 12px;
  }
  #playerProfile .profile-matches td:nth-child(1) {
    grid-column: 1 / -1;
    text-align: left;
    color: var(--muted);
    font-size: 10px;
  }
  #playerProfile .profile-matches td:nth-child(2) {
    grid-column: 1 / 4;
    text-align: left;
    min-width: 0px;
  }
  #playerProfile .profile-matches td:nth-child(3) {
    grid-column: 4 / 6;
    text-align: right;
  }
  #playerProfile .profile-matches td:nth-child(n + 4) {
    border-top: 1px solid var(--border);
    padding-top: 10px;
  }
  #playerProfile .profile-matches td:nth-child(n + 4)::before {
    content: attr(data-label);
    display: block;
    font-size: 9px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 5px;
  }
}
#playerProfile .profile-tabs button {
  color: var(--muted);
  background: transparent;
}
#playerProfile .profile-tabs button[aria-pressed="true"] {
  color: var(--text);
}
#playerProfile .profile-filters select {
  background: var(--surface);
  color: var(--text);
}
#playerProfile > .dialog-head button {
  background: var(--surface-raised);
  color: var(--text);
}
#playerProfile .profile-matches tbody tr {
  background: transparent;
}
#playerProfile .profile-matches tbody tr:hover {
  background: var(--surface);
}
@media (max-width: 600px) {
  #playerProfile .profile-matches tbody tr {
    background: var(--surface);
  }
}
.header .main-nav .ask-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--masthead-text);
  line-height: 1.3;
  white-space: nowrap;
}
.header .main-nav .ask-ai-badge {
  font-size: 9px;
  line-height: 1;
}
@media (max-width: 650px) {
  .header .main-nav .ask-nav-label {
    padding: 6px;
    gap: 5px;
  }
  .header .main-nav .ask-ai-badge {
    font-size: 8px;
  }
}
.competition-history {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 18px 0px;
}
.competition-history label {
  display: grid;
  gap: 5px;
  font-size: 11px;
  color: var(--muted);
  flex: 1 1 0%;
  min-width: 140px;
}
.competition-history select {
  width: 100%;
  padding: 10px;
  background: var(--surface-raised);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.competition-history label[hidden] {
  display: none;
}
#competitionHistoryNote {
  margin: 0px;
}
.archive-heading {
  padding: 0px 18px;
  font-size: 16px;
}
.archive-result {
  display: grid;
  grid-template-columns: 60px 1fr 65px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.archive-team {
  display: flex;
  align-items: center;
  gap: 8px;
}
.archive-result strong {
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.archive-result small {
  grid-column: 2 / -1;
  color: var(--muted);
}
.archive-result time {
  color: var(--muted);
  font-size: 11px;
}
@media (max-width: 600px) {
  .archive-result {
    grid-template-columns: 44px 1fr 56px;
    gap: 8px;
  }
  .archive-result .archive-team:nth-of-type(2) {
    grid-area: 2 / 2;
  }
  .archive-result strong {
    grid-area: 1 / 3 / 3;
  }
  .archive-result small {
    grid-column: 2 / -1;
  }
  .competition-history {
    padding: 12px;
  }
  .competition-history label {
    min-width: 120px;
  }
}
#tables .table-selectors {
  display: flex;
  align-items: center;
  min-width: 0px;
}
#tables .table-selectors > label {
  min-width: 0px;
}
#tables .table-selectors .league-picker-toggle,
#tables #competitionSeason {
  border: 1px solid var(--border);
  color: var(--text);
}
@media (max-width: 600px) {
  #tables .section-title {
    flex-wrap: wrap;
  }
  #tables .table-selectors {
    width: 100%;
  }
  #tables .table-selectors > label:first-child {
    flex: 1 1 0%;
  }
  #tables .table-selectors .league-picker-toggle {
    width: 100%;
    max-width: none;
    font-size: 12px;
  }
  #tables #competitionSeason {
    width: 125px;
    font-size: 12px;
  }
}
#matchPlayerDialog {
  width: min(540px, -24px + 100vw);
  max-height: 90dvh;
  padding: 0px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 14px;
}
#matchPlayerDialog::backdrop {
  background: rgba(0, 0, 0, 0.533);
}
#matchPlayerDialog > .dialog-head {
  position: sticky;
  top: 0px;
  background: var(--surface);
  z-index: 2;
  padding: 14px 20px;
}
#matchPlayerTitle {
  font-size: 14px;
}
.match-player-body {
  padding: 20px;
}
.match-player-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
}
.match-player-profile > .player-portrait {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}
.match-player-profile strong {
  font-size: 20px;
  display: block;
}
.match-player-profile small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin: 5px 0px;
}
.match-profile-hint {
  font-size: 12px;
  color: var(--secondary);
}
.match-player-context {
  display: grid;
  gap: 4px;
  padding: 18px 0px;
  font-size: 12px;
  color: var(--muted);
}
.match-player-context strong {
  color: var(--text);
}
.match-player-group {
  margin-bottom: 18px;
}
.match-player-group h3 {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.match-player-group dl {
  margin: 0px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.match-player-group dl > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.match-player-group dl > div:last-child {
  border: 0px;
}
.match-player-group dd {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.match-player-note {
  font-size: 11px;
  color: var(--muted);
}
.manager-row {
  position: relative;
  padding-left: 64px;
  min-height: 66px;
}
.manager-photo {
  position: absolute;
  left: 0px;
  top: 10px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--portrait);
  border-radius: 50%;
  overflow: hidden;
  color: var(--portrait-text);
  font-weight: 700;
}
.manager-photo img {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.manager-photo-credit {
  font-size: 10px;
  order: 5;
  color: var(--muted);
}
.upcoming-fixture {
  display: grid;
  grid-template-columns: 150px 1fr 30px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  color: var(--text);
  cursor: pointer;
}
.upcoming-fixture:hover {
  background: var(--surface-hover);
}
.upcoming-fixture span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.upcoming-fixture time,
.upcoming-fixture small {
  color: var(--muted);
  font-size: 11px;
}
.upcoming-fixture small {
  grid-column: 2 / -1;
}
.upcoming-fixture b {
  text-align: center;
}
#leagueUpcomingSection {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  max-height: 370px;
  overflow: auto;
}
#leagueUpcomingSection h3,
#clubMatches h3 {
  font-size: 16px;
}
.live-table-note {
  font-size: 12px;
  color: var(--text);
  background: var(--surface-raised);
  padding: 12px;
  border-left: 3px solid var(--success);
}
.match-table-team {
  background: var(--surface-raised);
  font-weight: 700;
}
#matchStandings .crest {
  vertical-align: middle;
  margin-right: 7px;
}
@media (max-width: 600px) {
  .upcoming-fixture {
    grid-template-columns: 1fr 24px 1fr;
  }
  .upcoming-fixture time {
    grid-column: 1 / -1;
  }
  .upcoming-fixture small {
    grid-column: 1 / -1;
  }
}
#tableUpcomingSection {
  overflow: auto;
  border-bottom: 1px solid var(--border);
}
#tableUpcomingSection h3 {
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
}
:root:not([data-theme="light"]) {
  --surface: #1b1b1b;
  --surface-raised: #252525;
  --surface-hover: #292929;
  --border: #343434;
  --muted: #a3a3a3;
  --secondary: #c6c6c6;
  --masthead: #171717;
}
.layout {
  padding: 28px 32px;
}
.header-inner {
  max-width: 1560px;
  padding: 0px 32px;
}
.header {
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
.sidebar > .eyebrow {
  margin-bottom: 14px;
}
.competition-search {
  display: block;
}
.competition-search input {
  width: 100%;
  min-width: 0px;
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--text);
}
.league-button {
  font-size: 12px;
}
.league-button.selected {
  background: var(--surface-raised);
  color: var(--text);
}
.league-button[hidden] {
  display: none;
}
#leagueMenu {
  max-height: calc(-250px + 100vh);
}
.sidebar-note {
  font-size: 10px;
  line-height: 1.8;
}
.section-title h1 {
  font-size: 26px;
  letter-spacing: -0.025em;
}
.section-title .eyebrow {
  display: none;
}
.panel {
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: none;
  overflow: hidden;
}
.button,
.filter-button {
  font-size: 12px;
  border-radius: 7px;
  min-height: 36px;
}
.section-title {
  margin-bottom: 18px;
}
.panel-foot {
  padding: 12px 18px;
  font-size: 10px;
  line-height: 1.6;
  border-top: 1px solid var(--border);
}
.panel-foot a {
  white-space: nowrap;
}
.match-toolbar {
  padding: 12px 16px;
  gap: 12px;
}
.segmented {
  gap: 5px;
}
.segmented button {
  padding: 9px 13px;
  min-height: 36px;
  font-size: 12px;
  border-radius: 7px;
}
.datebar {
  padding: 10px 16px;
  min-height: 58px;
}
.datebar > button {
  width: 32px;
  height: 32px;
}
.datebar .date-choice {
  min-width: 115px;
}
.datebar #coverageLabel {
  font-size: 11px;
}
.league-heading {
  padding: 12px 16px;
  background: var(--surface-raised);
  font-size: 13px;
  border: 0px;
}
.league-heading small {
  font-size: 10px;
  color: var(--muted);
}
.match-row {
  padding: 10px 18px;
  min-height: 58px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  font-size: 13px;
}
.match-team {
  font-size: 13px;
}
.match-team .crest {
  width: 23px;
  height: 23px;
}
.match-group {
  margin: 0px;
  border: 0px;
  border-radius: 0px;
}
.match-group + .match-group {
  margin-top: 12px;
}
.match-group:last-child {
  margin-bottom: 12px;
}
#tables .competition-masthead {
  background: var(--surface);
  border-radius: 16px 16px 0px 0px;
  border-top-color:;
  border-top-style:;
  border-top-width:;
  border-right-color:;
  border-right-style:;
  border-right-width:;
  border-left-color:;
  border-left-style:;
  border-left-width:;
  border-image-source:;
  border-image-slice:;
  border-image-width:;
  border-image-outset:;
  border-image-repeat:;
  border-bottom: 0px;
  padding: 26px 24px;
  margin: 0px;
  gap: 20px;
  min-height: 120px;
}
.competition-identity {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0px;
}
#competitionEmblem {
  display: grid;
  place-items: center;
  flex: 0 0 56px;
}
#competitionEmblem .league-logo,
#competitionEmblem .ui-icon {
  width: 52px;
  height: 56px;
}
#competitionName {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
#competitionRegion {
  font-size: 13px;
  color: var(--muted);
  margin: 0px;
}
#tables .table-selectors {
  margin-left: auto;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#tables .table-selectors .league-picker-toggle,
#tables #competitionSeason {
  height: 36px;
  min-height: 36px;
  font-size: 12px;
  padding: 7px 10px;
  background: transparent;
  border-radius: 5px;
}
#tables #competitionSeason {
  width: 132px;
}
#tables .table-selectors .league-picker-toggle {
  max-width: 215px;
}
#tables .table-selectors .league-identity > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}
#tables #askTable {
  margin: 0px;
  padding: 6px 10px;
  min-height: 36px;
  font-size: 11px;
}
.competition-tabs {
  display: flex;
  gap: 28px;
  background: var(--surface);
  border-right-color:;
  border-right-style:;
  border-right-width:;
  border-bottom-color:;
  border-bottom-style:;
  border-bottom-width:;
  border-left-color:;
  border-left-style:;
  border-left-width:;
  border-image-source:;
  border-image-slice:;
  border-image-width:;
  border-image-outset:;
  border-image-repeat:;
  border-top: 0px;
  border-radius: 0px 0px 16px 16px;
  padding: 0px 24px;
  margin-bottom: 22px;
}
.competition-tabs button {
  position: relative;
  padding: 16px 0px;
  background: transparent;
  border: 0px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.competition-tabs button[aria-pressed="true"] {
  color: var(--text);
}
.competition-tabs button[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
}
.competition-tabs button:disabled {
  opacity: 0.35;
  cursor: default;
}
#tables > .competition-workspace {
  background: none;
  border: 0px;
  overflow: visible;
}
.competition-columns {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) 300px;
  gap: 20px;
  align-items: start;
}
.competition-table-card,
.competition-fixture-card {
  min-width: 0px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
#tableUpcomingSection {
  margin: 0px;
  padding: 18px;
  max-height: 680px;
  scrollbar-width: thin;
}
#tableUpcomingSection h3 {
  font-size: 15px;
  margin-bottom: 6px;
}
#tableUpcomingSection > .hint {
  font-size: 11px;
  margin-bottom: 16px;
}
.tab-excluded {
  display: none !important;
}
#tables[data-competition-tab="table"] .competition-columns,
#tables[data-competition-tab="fixtures"] .competition-columns {
  grid-template-columns: minmax(0px, 1fr);
}
#tables[data-competition-tab="fixtures"] #tableUpcomingSection {
  max-height: none;
}
#tables .competition-columns:has(#tableUpcomingSection[hidden]) {
  grid-template-columns: minmax(0px, 1fr);
}
.competition-info {
  padding: 12px 18px;
  font-size: 11px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.competition-info summary {
  cursor: pointer;
}
#competitionHistoryNote {
  padding: 10px 0px 0px;
  font-size: 11px;
  line-height: 1.6;
}
.competition-table-card .table-scroll {
  margin: 0px;
  border: 0px;
  border-radius: 0px;
}
#tableWrap table {
  min-width: 590px;
}
#tableWrap caption {
  padding: 14px 18px;
  font-size: 11px;
  color: var(--muted);
  text-align: left;
}
#tableWrap caption .league-identity {
  display: none;
}
#tableWrap th {
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  padding: 13px 8px;
  border-bottom: 1px solid var(--border);
}
#tableWrap td {
  padding: 13px 8px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
  font-variant-numeric: tabular-nums;
}
#tableWrap th:first-child,
#tableWrap td:first-child {
  padding-left: 18px;
  width: 38px;
}
#tableWrap td:nth-child(2) {
  min-width: 160px;
}
#tableWrap tr {
  background: transparent;
}
#tableWrap tr:hover {
  background: var(--surface-hover);
}
#tableWrap td:last-child {
  font-weight: 750;
}
#tableWrap .team-link {
  gap: 9px;
}
#tableWrap .crest {
  width: 24px;
  height: 24px;
}
.upcoming-fixture {
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-image: none;
  border-radius: 0px;
  background: transparent;
  border-bottom: 1px solid var(--border);
  margin: 0px;
  padding: 13px 0px;
  font-size: 12px;
}
.upcoming-fixture time {
  font-size: 10px;
}
.competition-fixture-card .upcoming-fixture,
.club-fixtures-card .upcoming-fixture {
  grid-template-columns: 1fr 24px 1fr;
  gap: 8px;
}
.competition-fixture-card .upcoming-fixture time,
.club-fixtures-card .upcoming-fixture time {
  grid-column: 1 / -1;
}
.competition-fixture-card .upcoming-fixture small,
.club-fixtures-card .upcoming-fixture small {
  grid-column: 1 / -1;
  font-size: 10px;
}
.competition-fixture-card .upcoming-fixture span,
.club-fixtures-card .upcoming-fixture span {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 7px;
  font-size: 11px;
}
.upcoming-fixture .crest {
  width: 26px;
  height: 26px;
}
.upcoming-fixture:last-child {
  border-bottom: 0px;
}
.club-match-columns {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) minmax(280px, 0.85fr);
  gap: 20px;
}
.club-results-card,
.club-fixtures-card {
  min-width: 0px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.club-match-columns h3 {
  margin: 0px 0px 6px;
}
.club-match-columns > .hint {
  font-size: 11px;
}
.result-row {
  padding: 14px 0px;
  font-size: 12px;
}
.club-tabs,
.fixture-tabs {
  gap: 22px;
  border-bottom: 1px solid var(--border);
}
.club-tabs button,
.fixture-tabs button {
  font-size: 13px;
  padding: 14px 0px;
}
.match-card {
  border-radius: 12px;
  padding: 20px;
}
.match-card h3 {
  font-size: 15px;
  margin: 0px 0px 18px;
}
.fixture-scoreboard {
  padding: 20px 10px;
}
.fixture-score > b {
  font-size: 38px;
  letter-spacing: -0.04em;
}
.fixture-competition {
  font-size: 12px;
}
.fixture-tabs {
  padding-left: 22px;
  padding-right: 22px;
}
.match-source {
  font-size: 10px;
  color: var(--muted);
}
.story {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
}
.story-body {
  padding: 18px;
}
.story h3 {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.story .eyebrow {
  font-size: 10px;
  letter-spacing: 0.06em;
}
.story .meta {
  font-size: 10px;
}
.story-media {
  aspect-ratio: 16 / 9;
}
.news-grid,
.transfer-grid {
  gap: 20px;
}
.settings-panel {
  padding: 8px 22px;
}
.setting-row {
  padding: 20px 0px;
}
.settings-note {
  font-size: 12px;
}
footer {
  padding: 26px 4px;
  margin-top: 30px;
  font-size: 11px;
}
footer p {
  font-size: 11px;
}
footer .footer-brand {
  font-size: 13px;
}
@media (max-width: 1250px) {
  .competition-columns {
    grid-template-columns: minmax(0px, 1fr);
  }
  .competition-fixture-card .upcoming-fixture {
    grid-template-columns: 140px 1fr 24px 1fr;
  }
  .competition-fixture-card .upcoming-fixture time {
    grid-column: auto;
  }
  .competition-fixture-card .upcoming-fixture span {
    flex-direction: row;
    text-align: left;
  }
  .competition-fixture-card .upcoming-fixture small {
    grid-column: 2 / -1;
  }
  #tables .competition-masthead {
    flex-wrap: wrap;
  }
  #tables .table-selectors {
    margin-left: 0px;
  }
}
@media (max-width: 900px) {
  .layout {
    padding: 20px;
    display: block;
  }
  .header-inner {
    padding: 0px 20px;
    gap: 24px;
  }
  .club-match-columns {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .layout {
    padding: 14px 10px;
  }
  .header-inner {
    padding: 8px 12px 0px;
    gap: 12px;
  }
  .section-title h1 {
    font-size: 22px;
  }
  #tables .competition-masthead {
    padding: 20px 16px;
    gap: 20px;
  }
  #competitionName {
    font-size: 22px;
  }
  #competitionEmblem {
    flex-basis: 42px;
  }
  #competitionEmblem .league-logo,
  #competitionEmblem .ui-icon {
    width: 38px;
    height: 44px;
  }
  .competition-identity {
    gap: 14px;
  }
  #tables .table-selectors {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: stretch;
  }
  #tables .table-selectors > label:first-child {
    flex: 1 1 0%;
    min-width: 0px;
  }
  #tables .table-selectors .league-picker-toggle {
    max-width: 100%;
    font-size: 11px;
  }
  #tables .table-selectors .league-identity > span {
    max-width: 105px;
  }
  #tables #competitionSeason {
    width: 112px;
    font-size: 11px;
  }
  #tables #askTable {
    display: none;
  }
  .competition-tabs {
    padding: 0px 16px;
    gap: 26px;
    margin-bottom: 14px;
  }
  .competition-tabs button {
    font-size: 12px;
    padding: 14px 0px;
  }
  .competition-columns {
    gap: 14px;
  }
  #tableWrap table {
    min-width: 520px;
    font-size: 11px;
  }
  #tableWrap td,
  #tableWrap th {
    padding: 12px 6px;
  }
  #tableWrap .team-link {
    font-size: 11px;
  }
  #tableWrap td:nth-child(2) {
    min-width: 145px;
  }
  #tableUpcomingSection {
    padding: 16px;
  }
  .competition-fixture-card .upcoming-fixture {
    grid-template-columns: 1fr 24px 1fr;
  }
  .competition-fixture-card .upcoming-fixture time {
    grid-column: 1 / -1;
  }
  .competition-fixture-card .upcoming-fixture span {
    flex-direction: column;
  }
  .competition-fixture-card .upcoming-fixture small {
    grid-column: 1 / -1;
  }
  .match-toolbar {
    padding: 10px;
    gap: 8px;
  }
  .segmented button {
    padding: 8px 10px;
    font-size: 11px;
  }
  .datebar {
    padding: 8px 10px;
  }
  .match-row {
    padding: 10px 12px;
  }
  .league-heading {
    padding: 11px 12px;
  }
  .panel-foot {
    padding: 10px 12px;
    flex-wrap: wrap;
  }
  .club-results-card,
  .club-fixtures-card {
    padding: 16px;
  }
  .fixture-tabs {
    gap: 20px;
    overflow: auto;
  }
  .fixture-tabs button {
    white-space: nowrap;
  }
  .news-grid,
  .transfer-grid {
    gap: 14px;
  }
  .story h3 {
    font-size: 17px;
  }
  .settings-panel {
    padding: 6px 16px;
  }
}
.table-mobile-tools {
  display: none;
}
#tableWrap .team-link {
  font-size: 13px;
}
#tableWrap table {
  font-size: 13px;
}
@media (max-width: 600px) {
  .table-mobile-tools {
    display: flex;
    justify-content: flex-end;
    padding: 10px 12px 0px;
  }
  .table-mobile-tools button {
    font-size: 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: transparent;
    color: var(--secondary);
    padding: 5px 8px;
  }
  #tables:not(.full-table-columns) #tableWrap table {
    min-width: 0px;
    width: 100%;
    table-layout: auto;
  }
  #tables:not(.full-table-columns) #tableWrap td:nth-child(2) {
    min-width: 0px;
    width: auto;
  }
  #tables:not(.full-table-columns) #tableWrap .team-link {
    font-size: 11px;
    gap: 7px;
    white-space: normal;
    text-align: left;
  }
  #tables:not(.full-table-columns) #tableWrap td:first-child,
  #tables:not(.full-table-columns) #tableWrap th:first-child {
    padding-left: 10px;
    width: 24px;
  }
  #tables:not(.full-table-columns) #tableWrap td,
  #tables:not(.full-table-columns) #tableWrap th {
    padding: 12px 6px;
  }
  #tables[data-combined="false"]:not(.full-table-columns)
    #tableWrap
    :is(td, th):nth-child(n + 4):nth-child(-n + 8) {
    display: none;
  }
  #tables[data-combined="true"]:not(.full-table-columns)
    #tableWrap
    :is(td, th):nth-child(3),
  #tables[data-combined="true"]:not(.full-table-columns)
    #tableWrap
    :is(td, th):nth-child(n + 5):nth-child(-n + 9) {
    display: none;
  }
  #tableWrap table {
    font-size: 11px;
  }
}
#competitionName {
  margin: 0px 0px 6px;
}
#competitionName .league-picker-toggle {
  height: auto;
  min-height: 0px;
  padding: 0px;
  background: transparent;
  border: 0px;
  font-size: 26px;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--text);
  gap: 12px;
}
#competitionName .league-picker-toggle .league-logo,
#competitionName .league-picker-toggle .top-five-icon {
  display: none;
}
#competitionName .league-picker-toggle .league-identity {
  font-size: inherit;
  white-space: normal;
  text-align: left;
}
#competitionName .league-picker-list {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: normal;
  min-width: 260px;
  max-width: min(380px, 80vw);
  z-index: 30;
}
#competitionName .league-picker-list .league-logo {
  display: inline-block;
}
#competitionName .league-picker-toggle > span:last-child {
  font-size: 16px;
  color: var(--muted);
}
.competition-identity {
  overflow: visible;
}
#tables .competition-masthead {
  overflow: visible;
}
.follow-competition {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  align-self: center;
}
.follow-competition[aria-pressed="true"] {
  background: var(--surface-raised);
  color: var(--text);
}
.follow-competition[aria-pressed="true"] svg {
  fill: currentcolor;
}
.follow-competition[hidden] {
  display: none;
}
@media (max-width: 600px) {
  #competitionName .league-picker-toggle {
    font-size: 21px;
    gap: 7px;
  }
  #tables .competition-identity {
    width: 100%;
    gap: 12px;
  }
  #tables .competition-identity > div {
    min-width: 0px;
    flex: 1 1 0%;
  }
  #tables .table-selectors > label:first-child {
    flex: 0 1 0%;
  }
  #tables .table-selectors {
    justify-content: flex-end;
  }
  #competitionName .league-picker-list {
    left: -50px;
  }
}
#competitionName .league-picker-toggle {
  width: 100%;
  min-width: 0px;
  white-space: normal;
}
#competitionName .league-picker-toggle .league-identity {
  min-width: 0px;
  flex: 1 1 0%;
}
#competitionName .league-picker-toggle .league-identity > span {
  white-space: normal;
  overflow-wrap: anywhere;
}
#competitionName .league-picker-toggle > span:last-child {
  flex-shrink: 0;
}
@media (max-width: 600px) {
  #competitionName .league-picker-toggle {
    font-size: 19px;
  }
  #competitionName .league-picker-toggle .league-identity {
    line-height: 1.2;
  }
  #competitionName {
    max-width: 100%;
  }
}
#tables .table-selectors > label:first-child {
  flex: 0 0 auto;
  width: auto;
}
#matchGrid .match-row {
  display: grid;
}
#matchGrid .match-row > .match-team {
  max-width: 100%;
  min-width: 0px;
}
#matchGrid .match-scores {
  display: block;
  min-width: 0px;
  text-align: center;
  font-size: 15px;
}
#matchGrid .match-scores span {
  display: block;
}
#matchGrid .match-time {
  font-size: 10px;
}
.score-line.result-row {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) 52px minmax(0px, 1fr);
  gap: 10px;
  padding: 14px 0px;
}
.score-side {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0px;
  font-size: 12px;
}
.score-side .crest {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.score-line .result-date {
  grid-column: 1 / -1;
  font-size: 10px;
  color: var(--muted);
}
.score-line .result-competition {
  grid-column: 1 / -1;
  font-size: 10px;
  color: var(--muted);
}
.score-line .result-score {
  text-align: center;
  font-size: 14px;
  white-space: nowrap;
}
.team-summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0px;
}
.team-summary-stats > div {
  display: grid;
  gap: 4px;
  background: var(--surface-raised);
  border-radius: 7px;
  padding: 12px;
}
.team-summary-stats strong {
  font-size: 20px;
}
.team-summary-stats small {
  font-size: 10px;
  color: var(--muted);
}
#moreTeamResults {
  display: block;
  margin: 16px auto 0px;
}
.fixture-scoreboard > .score-team {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fixture-scoreboard > .score-team strong {
  font-size: 16px;
}
.fixture-scoreboard > .score-team .crest {
  width: 42px;
  height: 42px;
}
@media (max-width: 600px) {
  #matchGrid .match-row {
    grid-template-columns: 32px minmax(0px, 1fr) 43px minmax(0px, 1fr);
    gap: 6px;
    padding: 12px 8px;
  }
  #matchGrid .match-row > .match-team {
    font-size: 10px;
    gap: 5px;
    white-space: normal;
  }
  #matchGrid .match-row > .match-team .crest {
    width: 19px;
    height: 19px;
  }
  #matchGrid .match-scores {
    font-size: 13px;
  }
  .score-side {
    font-size: 11px;
    gap: 5px;
  }
  .score-side .crest {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
  .fixture-scoreboard > .score-team {
    gap: 5px;
  }
  .fixture-scoreboard > .score-team strong {
    font-size: 11px;
  }
  .fixture-scoreboard > .score-team .crest {
    width: 24px;
    height: 24px;
  }
}
#matchGrid .match-row {
  grid-template-columns: 42px minmax(0px, 1fr) 62px minmax(0px, 1fr) 42px;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 10px 16px;
}
#matchGrid .match-row > * {
  grid-row: 1;
  align-self: center;
  margin: 0px;
}
#matchGrid .match-row > .match-time {
  grid-column: 1;
  padding: 0px;
}
#matchGrid .match-row > .match-team {
  grid-column: 2;
  justify-self: end;
  width: fit-content;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  text-align: right;
  gap: 10px;
  font-size: 13px;
  line-height: 1.35;
  padding: 4px 0px;
}
#matchGrid .match-row > .match-team:nth-child(4) {
  grid-column: 4;
  justify-self: start;
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
}
#matchGrid .match-row > .match-scores {
  grid-column: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0px;
  line-height: 1;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.025em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
#matchGrid .match-row > .match-team .crest {
  width: 25px;
  height: 25px;
}
.score-line.result-row {
  align-items: center;
}
.score-home {
  flex-direction: row-reverse;
  justify-content: flex-start;
  text-align: right;
}
.score-away {
  flex-direction: row-reverse;
  justify-content: flex-end;
  text-align: left;
}
.upcoming-fixture span {
  text-align: right;
  justify-content: flex-start;
  flex-direction: row-reverse !important;
}
.upcoming-fixture span:last-of-type {
  text-align: left;
  justify-content: flex-start;
  flex-direction: row !important;
}
.fixture-scoreboard > .score-team {
  flex-direction: row-reverse;
  justify-content: flex-start;
  justify-self: end;
  text-align: right;
}
.fixture-scoreboard > .score-team:last-child {
  flex-direction: row;
  justify-self: start;
  text-align: left;
}
.layout {
  max-width: 1360px;
  grid-template-columns: 208px minmax(0px, 1fr);
  gap: 24px;
}
.sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 10px 10px;
}
.sidebar > .eyebrow {
  padding: 0px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.competition-search {
  margin: 0px 4px 10px;
}
.competition-search input {
  background: var(--bg);
  padding: 10px 12px;
  border-radius: 8px;
}
#leagueMenu {
  padding: 0px 3px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.league-button {
  min-height: 42px;
  padding: 9px 10px;
  margin: 2px 0px;
  border-radius: 7px;
  transition: background 0.15s;
}
.league-button .league-identity {
  gap: 12px;
  line-height: 1.35;
}
.league-button .league-logo {
  width: 23px;
  height: 23px;
}
.league-button.selected {
  box-shadow: inset 3px 0 var(--secondary);
  font-weight: 650;
}
.sidebar-note {
  padding: 12px 8px 0px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
}
.header .main-nav > a {
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-weight: 650;
  letter-spacing: -0.025em;
}
.header .main-nav .ask-nav-label {
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
  padding: 7px 10px;
  box-shadow: none;
}
.header .main-nav .ask-ai-badge {
  background: transparent;
  color: var(--muted);
  padding: 0px 0px 0px 7px;
  border-left: 1px solid var(--border);
  border-radius: 0px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.header .main-nav .ask-nav:hover .ask-nav-label,
.header .main-nav .ask-nav.active .ask-nav-label {
  background: var(--surface-hover);
  border-color: var(--muted);
}
.event-portrait > .orbit-badge {
  transform: scale(0.78);
}
.event-portrait > .orbit-goal,
.event-portrait > .orbit-assist {
  transform-origin: center bottom;
  bottom: -7px;
}
.event-portrait > .orbit-card,
.event-portrait > .orbit-sub {
  transform-origin: center top;
  top: -6px;
}
@media (max-width: 1000px) {
  .layout {
    grid-template-columns: minmax(0px, 1fr);
  }
}
@media (max-width: 600px) {
  #matchGrid .match-row {
    grid-template-columns: minmax(0px, 1fr) 46px minmax(0px, 1fr);
    gap: 7px;
    padding: 12px 10px 10px;
    min-height: 74px;
  }
  #matchGrid .match-row > .match-time {
    grid-area: 1 / 1 / auto / -1;
    min-height: 14px;
    line-height: 1;
    font-size: 9px;
    justify-self: center;
  }
  #matchGrid .match-row > .match-team {
    grid-area: 2 / 1;
    font-size: 11px;
    gap: 6px;
  }
  #matchGrid .match-row > .match-scores {
    grid-area: 2 / 2;
    font-size: 14px;
  }
  #matchGrid .match-row > .match-team:nth-child(4) {
    grid-area: 2 / 3;
  }
  #matchGrid .match-row > .match-team .crest {
    width: 22px;
    height: 22px;
  }
  #matchGrid .match-time.live::before {
    display: inline;
    margin-right: 4px;
  }
}
.other-competitions {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 6px;
}
.other-competitions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 650;
  color: var(--secondary);
  border-radius: 7px;
}
.other-competitions summary::-webkit-details-marker {
  display: none;
}
.other-competitions summary:hover {
  background: var(--surface-hover);
}
.other-competitions summary .ui-icon {
  width: 15px;
  height: 15px;
  transition: transform 0.15s;
}
.other-competitions[open] summary .ui-icon {
  transform: rotate(180deg);
}
.other-competitions[hidden] {
  display: none;
}
.global-search {
  position: relative;
  width: clamp(170px, 21vw, 300px);
  margin-left: auto;
  flex-shrink: 1;
  min-width: 140px;
}
.global-search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 9px;
}
.global-search-field:focus-within {
  border-color: var(--muted);
}
.global-search-field > .ui-icon {
  width: 17px;
  height: 17px;
  color: var(--muted);
  flex-shrink: 0;
}
.global-search input {
  width: 100%;
  min-width: 0px;
  border: 0px;
  padding: 0px;
  outline: 0px;
  background: transparent;
  color: var(--text);
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  line-height: inherit;
  font-family: inherit;
  font-optical-sizing: inherit;
  font-size-adjust: inherit;
  font-kerning: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-language-override: inherit;
  font-size: 12px;
}
.global-search kbd {
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0px 4px;
}
.global-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0px;
  width: 390px;
  max-width: calc(-24px + 100vw);
  max-height: min(620px, 75vh);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.267) 0px 16px 45px;
  z-index: 100;
}
.global-search-results[hidden] {
  display: none;
}
.search-status {
  padding: 14px 16px;
  font-size: 11px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.search-items section {
  padding: 6px;
}
.search-items h3 {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 8px 10px;
}
.search-items button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px;
  border-radius: 7px;
  text-align: left;
  background: transparent;
  color: var(--text);
}
.search-items button:hover,
.search-items button:focus-visible {
  background: var(--surface-hover);
  outline: 1px solid var(--border);
}
.search-picture {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--portrait);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.search-picture img {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--surface);
}
.search-picture.is-badge {
  border-radius: 0px;
  background: transparent;
}
.search-picture.is-badge img {
  object-fit: contain;
  background: var(--surface);
  padding: 3px;
}
.search-result-copy {
  display: grid;
  gap: 4px;
  min-width: 0px;
  flex: 1 1 0%;
}
.search-result-copy strong {
  font-size: 13px;
  font-weight: 650;
}
.search-result-copy small {
  font-size: 11px;
  color: var(--muted);
}
.search-items button > .ui-icon {
  width: 14px;
  color: var(--muted);
}
.search-person-dialog {
  width: min(440px, 94vw);
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.search-person-body {
  padding: 24px;
  text-align: center;
}
.search-person-body .search-picture {
  width: 100px;
  height: 100px;
  margin: auto;
}
.search-person-body p {
  font-size: 13px;
  line-height: 1.6;
}
.header-inner {
  gap: 24px;
}
.header-settings {
  margin-left: 0px;
}
@media (max-width: 1000px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  .global-search {
    width: auto;
    flex: 1 1 0%;
    min-width: 140px;
  }
  .header .main-nav {
    order: 3;
    width: 100%;
  }
  .global-search-results {
    right: 0px;
  }
}
@media (max-width: 600px) {
  .global-search {
    order: 4;
    flex: 1 0 100%;
    margin: 0px 0px 10px;
  }
  .global-search-results {
    width: 100%;
    max-width: 100%;
  }
  .header-settings {
    margin-left: auto;
  }
  .global-search-field {
    padding: 9px 12px;
  }
}
button.result-row.score-line {
  width: 100%;
  color: var(--text);
  background: transparent;
  text-align: left;
  border-bottom: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
}
button.result-row.score-line:hover,
button.result-row.score-line:focus-visible {
  background: var(--surface-hover);
  outline: 1px solid var(--border);
}
.profile-club .crest {
  flex-shrink: 0;
  margin-right: 12px;
}
#ask {
  max-width: 850px;
  margin: 0px auto;
  width: 100%;
}
.ask-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
#askIntro {
  text-align: center;
  padding: 38px 12px 22px;
}
#askIntro h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.035em;
  font-weight: 650;
}
#askIntro p {
  font-size: 14px;
  max-width: 510px;
  margin: 12px auto;
  line-height: 1.7;
}
.ask-suggestions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 10px;
  margin: 8px 0px 28px;
}
.ask-suggestions button {
  position: relative;
  padding: 17px 35px 17px 17px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
  display: grid;
  gap: 8px;
}
.ask-suggestions button small {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}
.ask-suggestions button strong {
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
}
.ask-suggestions button > .ui-icon {
  position: absolute;
  right: 12px;
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  color: var(--muted);
}
.ask-suggestions button:hover {
  background: var(--surface-hover);
  border-color: var(--muted);
}
.ask-message {
  border: 0px;
  border-radius: 0px;
  padding: 20px 0px;
  background: transparent;
}
.ask-user {
  margin-left: 15%;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--surface-raised);
}
.ask-author {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 8px;
}
.ask-answer {
  font-size: 14px;
  line-height: 1.85;
}
.ask-composer {
  border: 0px;
  background: var(--bg);
  padding: 16px 0px 8px;
}
.ask-composer form {
  display: flex;
  align-items: flex-end;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}
#askInput {
  border: 0px;
  background: transparent;
  box-shadow: none;
  resize: vertical;
  min-height: 62px;
  font-size: 14px;
  padding: 8px;
  flex: 1 1 0%;
  min-width: 0px;
}
#askSend {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 8px;
  border: 0px;
  border-radius: 50%;
  background: var(--text);
  color: var(--surface);
  display: grid;
  place-items: center;
}
#askSend svg {
  width: 20px;
  height: 20px;
}
#askSend:disabled {
  opacity: 0.4;
}
.ask-note {
  text-align: center;
  font-size: 10px;
}
.ask-followups button {
  border-radius: 16px;
  background: transparent;
  font-size: 11px;
  border: 1px solid var(--border);
}
@media (max-width: 600px) {
  .ask-suggestions {
    grid-template-columns: 1fr;
  }
  #askIntro {
    padding-top: 24px;
  }
  .ask-user {
    margin-left: 8%;
  }
}
.competition-columns[hidden],
#knockoutContent[hidden],
.competition-tabs button[hidden] {
  display: none;
}
#knockoutContent {
  padding: 20px;
}
.knockout-rounds {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0px 18px;
  align-items: flex-start;
}
.knockout-round {
  flex: 0 0 245px;
}
.knockout-round h3 {
  font-size: 13px;
  margin: 0px 0px 14px;
}
.knockout-tie {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 12px;
  margin-bottom: 16px;
}
.knockout-team {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0px;
  font-size: 12px;
}
.knockout-team span {
  flex: 1 1 0%;
}
.knockout-team strong {
  font-variant-numeric: tabular-nums;
}
.knockout-caption,
.knockout-note,
.knockout-empty {
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
}
.knockout-legs {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 5px;
}
.knockout-legs button {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  text-align: left;
  padding: 9px 0px;
  font-size: 10px;
}
.knockout-legs button span {
  flex: 1 1 0%;
}
.knockout-legs button .ui-icon {
  width: 12px;
  height: 12px;
}
.knockout-legs button:hover {
  color: var(--text);
  text-decoration: underline;
}
.knockout-team .crest {
  width: 22px;
  height: 22px;
}
.competition-tabs {
  overflow-x: auto;
}
