:root {
  --bg: #06110e;
  --bg-deep: #030907;
  --surface: rgba(13, 30, 25, 0.88);
  --surface-solid: #0c211a;
  --surface-2: #102b22;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f8f6;
  --muted: #8da399;
  --lime: #c8ff3d;
  --lime-soft: #a8d936;
  --cyan: #49d5d0;
  --orange: #ff9f43;
  --red: #ff6275;
  --white-soft: rgba(255, 255, 255, 0.72);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Noto Sans SC", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(64, 126, 80, 0.22), transparent 35%),
    linear-gradient(180deg, #071611 0%, var(--bg) 38%, var(--bg-deep) 100%);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.stadium-glow {
  position: fixed;
  top: 120px;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(139, 255, 61, 0.06);
  filter: blur(90px);
}

.stadium-glow--left {
  left: -270px;
}

.stadium-glow--right {
  right: -270px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 max(28px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(4, 13, 10, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(200, 255, 61, 0.5);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(200, 255, 61, 0.2), rgba(200, 255, 61, 0.03));
  box-shadow: inset 0 0 20px rgba(200, 255, 61, 0.08);
  transform: rotate(-6deg);
}

.brand__ball {
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid var(--lime);
  border-radius: 50%;
}

.brand__ball::before,
.brand__ball::after {
  position: absolute;
  content: "";
  background: var(--lime);
}

.brand__ball::before {
  top: 4px;
  left: 4px;
  width: 4px;
  height: 4px;
  clip-path: polygon(50% 0, 100% 38%, 80% 100%, 20% 100%, 0 38%);
}

.brand__ball::after {
  right: -5px;
  bottom: -3px;
  width: 8px;
  height: 2px;
  opacity: 0.55;
  transform: rotate(-35deg);
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 0.9;
}

.brand strong span {
  color: var(--lime);
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 2px;
}

.main-nav {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  gap: 34px;
}

.main-nav__item {
  position: relative;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.main-nav__item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  opacity: 0;
  transform: scaleX(0.2);
  transition: 0.2s ease;
}

.main-nav__item:hover,
.main-nav__item.is-active {
  color: var(--text);
}

.main-nav__item.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.data-status,
.live-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.data-status__dot,
.live-pill i,
.model-label i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(200, 255, 61, 0.08), 0 0 12px rgba(200, 255, 61, 0.8);
  animation: pulse 1.8s ease infinite;
}

.icon-button,
.round-button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: 0.2s ease;
}

.icon-button {
  position: relative;
}

.icon-button svg,
.round-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-button:hover,
.round-button:hover {
  border-color: rgba(200, 255, 61, 0.5);
  color: var(--lime);
  background: rgba(200, 255, 61, 0.08);
}

.notification-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--bg);
  border-radius: 50%;
  background: var(--red);
}

.app-shell {
  width: min(1600px, calc(100% - 56px));
  margin: 0 auto;
}

.workspace-layout {
  display: grid;
  grid-template-columns: 304px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding-top: 28px;
}

.app-view {
  display: none;
}

.workspace-layout.app-view.is-active {
  display: grid;
}

.analysis-content {
  min-width: 0;
}

.team-archive.app-view.is-active {
  display: grid;
}

.team-archive {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding-top: 28px;
}

.archive-sidebar {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 116px);
  overflow: hidden;
  border: 1px solid rgba(200, 255, 61, 0.16);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(17, 41, 33, 0.96), rgba(6, 20, 15, 0.98));
  box-shadow: var(--shadow);
}

.archive-sidebar__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 21px 18px 16px;
  border-bottom: 1px solid var(--line);
}

.archive-sidebar__header h2 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}

.archive-search {
  position: relative;
  margin: 13px 13px 9px;
}

.archive-search svg {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 14px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.7;
  transform: translateY(-50%);
}

.archive-search input {
  width: 100%;
  height: 38px;
  padding: 0 12px 0 34px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  color: var(--text);
  background: rgba(0, 0, 0, 0.16);
  font: 10px var(--font-body);
}

.archive-search input:focus {
  border-color: rgba(200, 255, 61, 0.45);
}

.archive-search input::placeholder {
  color: #60746b;
}

.archive-group-filter {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 0 13px 11px;
  border-bottom: 1px solid var(--line);
}

.archive-group-filter button {
  height: 24px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
}

.archive-group-filter button:first-child {
  grid-column: span 2;
}

.archive-group-filter button:hover,
.archive-group-filter button.is-active {
  border-color: rgba(200, 255, 61, 0.35);
  color: var(--bg);
  background: var(--lime);
}

.archive-team-list {
  max-height: calc(100vh - 315px);
  padding: 8px;
  overflow-y: auto;
  scrollbar-color: rgba(200, 255, 61, 0.25) transparent;
  scrollbar-width: thin;
}

.archive-team {
  display: grid;
  width: 100%;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 51px;
  margin: 3px 0;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: inherit;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-align: left;
  transition: 0.2s ease;
}

.archive-team:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
}

.archive-team.is-active {
  border-color: rgba(200, 255, 61, 0.3);
  background: linear-gradient(110deg, rgba(200, 255, 61, 0.12), rgba(200, 255, 61, 0.02));
}

.archive-team__flag {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  font-size: 17px;
}

.archive-team strong,
.archive-team small {
  display: block;
}

.archive-team strong {
  font-size: 10px;
}

.archive-team small {
  margin-top: 1px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 8px;
}

.archive-team em {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.archive-empty {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: var(--muted);
  font-size: 10px;
}

.team-profile {
  min-width: 0;
}

.team-profile__hero {
  position: relative;
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  padding: 32px 38px;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 61, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(100deg, rgba(5, 18, 13, 0.92), rgba(15, 53, 34, 0.72)),
    repeating-linear-gradient(90deg, transparent 0 12.4%, rgba(255, 255, 255, 0.02) 12.5% 25%);
  box-shadow: var(--shadow);
}

.team-profile__hero::before {
  position: absolute;
  top: 50%;
  right: 16%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.team-profile__identity {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.team-profile__flag {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.15), transparent 32%),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.02), 0 22px 40px rgba(0, 0, 0, 0.24);
  font-size: 58px;
  transform: rotate(-3deg);
}

.team-profile__group {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.team-profile__identity h1 {
  margin: 2px 0 7px;
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 78px);
  line-height: 0.95;
}

.team-profile__identity p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.team-profile__identity p strong {
  color: var(--white-soft);
}

.team-profile__rating {
  position: relative;
  width: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.2);
}

.team-profile__rating span {
  display: block;
  color: var(--muted);
  font-size: 8px;
}

.team-profile__rating strong {
  display: block;
  margin: 1px 0 8px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.team-profile__rating > div {
  height: 5px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.team-profile__rating i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(200, 255, 61, 0.5);
  transition: width 0.5s ease;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
}

.profile-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(17, 41, 33, 0.88), rgba(8, 23, 18, 0.92));
}

.profile-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.profile-panel__header h2 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 21px;
}

.simulation-tag,
.official-tag {
  padding: 4px 7px;
  border-radius: 20px;
  font-size: 7px;
}

.simulation-tag {
  border: 1px solid rgba(255, 159, 67, 0.18);
  color: var(--orange);
  background: rgba(255, 159, 67, 0.06);
}

.official-tag {
  border: 1px solid rgba(200, 255, 61, 0.18);
  color: var(--lime);
  background: rgba(200, 255, 61, 0.06);
}

.profile-overview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.profile-overview__stats > div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
}

.profile-overview__stats span,
.profile-overview__stats strong {
  display: block;
}

.profile-overview__stats span {
  color: var(--muted);
  font-size: 8px;
}

.profile-overview__stats strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 23px;
}

.profile-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.profile-form > span {
  color: var(--muted);
  font-size: 8px;
}

.profile-form > div {
  display: flex;
  gap: 5px;
}

.profile-radar {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.profile-radar__row {
  display: grid;
  grid-template-columns: 58px 1fr 25px;
  align-items: center;
  gap: 9px;
}

.profile-radar__row span {
  color: var(--muted);
  font-size: 8px;
}

.profile-radar__row > div {
  height: 5px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.profile-radar__row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.profile-radar__row strong {
  font-family: var(--font-display);
  font-size: 12px;
  text-align: right;
}

.profile-fixtures {
  grid-column: 1 / -1;
}

.profile-fixture-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.profile-fixture {
  position: relative;
  display: flex;
  min-height: 148px;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: inherit;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  text-align: left;
  transition: 0.2s ease;
}

.profile-fixture:hover {
  border-color: rgba(200, 255, 61, 0.35);
  background: rgba(200, 255, 61, 0.055);
  transform: translateY(-2px);
}

.profile-fixture__date strong,
.profile-fixture__date em {
  display: block;
}

.profile-fixture__date strong {
  color: var(--lime);
  font-size: 9px;
}

.profile-fixture__date em {
  color: var(--muted);
  font-size: 8px;
  font-style: normal;
}

.profile-fixture__opponent {
  margin-top: 14px;
}

.profile-fixture__opponent small {
  display: block;
  color: var(--muted);
  font-size: 7px;
}

.profile-fixture__opponent strong {
  font-size: 13px;
}

.profile-fixture__venue {
  margin-top: auto;
  color: #70857c;
  font-size: 8px;
}

.profile-fixture__arrow {
  position: absolute;
  right: 13px;
  bottom: 12px;
  color: var(--lime);
}

.profile-opponent-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.profile-opponent-list button {
  display: grid;
  grid-template-columns: 37px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: inherit;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-align: left;
}

.profile-opponent-list button:hover {
  border-color: rgba(200, 255, 61, 0.3);
}

.profile-opponent-list button > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
}

.profile-opponent-list strong,
.profile-opponent-list small {
  display: block;
}

.profile-opponent-list strong {
  font-size: 10px;
}

.profile-opponent-list small {
  color: var(--muted);
  font-size: 7px;
}

.profile-opponent-list em {
  color: var(--lime);
  font-size: 8px;
  font-style: normal;
}

.profile-squad {
  grid-column: 1 / -1;
}

.squad-header {
  align-items: flex-end;
}

.squad-value {
  text-align: right;
}

.squad-value span,
.squad-value strong {
  display: block;
}

.squad-value span {
  color: var(--muted);
  font-size: 8px;
}

.squad-value strong {
  margin-top: 1px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.squad-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.12);
}

.squad-toolbar > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #70857c;
  font-size: 8px;
}

.squad-toolbar > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.squad-position-filter {
  display: flex;
  gap: 5px;
}

.squad-position-filter button {
  display: flex;
  height: 29px;
  align-items: center;
  gap: 5px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  font-size: 8px;
}

.squad-position-filter button span {
  display: grid;
  min-width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 7px;
}

.squad-position-filter button:hover,
.squad-position-filter button.is-active {
  border-color: rgba(200, 255, 61, 0.35);
  color: var(--bg);
  background: var(--lime);
}

.squad-position-filter button.is-active span {
  background: rgba(0, 0, 0, 0.15);
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 10px;
}

.player-card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 11px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: inherit;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  text-align: left;
  transition: 0.2s ease;
}

.player-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  content: "";
  background: var(--lime);
  opacity: 0;
  transform: scaleX(0.2);
  transition: 0.2s ease;
}

.player-card:hover {
  border-color: rgba(200, 255, 61, 0.3);
  background: rgba(200, 255, 61, 0.045);
  transform: translateY(-2px);
}

.player-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.player-card__photo {
  position: relative;
  display: block;
  width: 74px;
  height: 90px;
  overflow: hidden;
  border-radius: 9px;
  background: #12251e;
}

.player-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-card__photo i,
.player-card__photo em {
  position: absolute;
  font-style: normal;
  font-weight: 700;
}

.player-card__photo i {
  top: 5px;
  right: 5px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--bg);
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 9px;
}

.player-card__photo em {
  right: 5px;
  bottom: 5px;
  padding: 2px 5px;
  border-radius: 8px;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  font-size: 7px;
  backdrop-filter: blur(4px);
}

.player-card__body {
  min-width: 0;
  padding-top: 2px;
}

.player-card__body > strong,
.player-card__body > small,
.player-card__body > span {
  display: block;
}

.player-card__body > strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-card__body > small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-card__body > span {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  color: #82978e;
  font-size: 7px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.player-card__value {
  position: absolute;
  right: 9px;
  bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.player-card__value small {
  color: #70857c;
  font-size: 6px;
}

.player-card__value strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 12px;
}

.modal-open {
  overflow: hidden;
}

.player-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.player-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.player-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 7, 4, 0.78);
  cursor: default;
  backdrop-filter: blur(12px);
}

.player-modal__card {
  position: relative;
  display: grid;
  width: min(680px, calc(100% - 32px));
  grid-template-columns: 260px 1fr;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 61, 0.24);
  border-radius: 18px;
  background: linear-gradient(145deg, #10291f, #071711);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6);
  transform: translateY(15px) scale(0.98);
  transition: transform 0.22s ease;
}

.player-modal.is-open .player-modal__card {
  transform: translateY(0) scale(1);
}

.player-modal__close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.player-modal__close svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.player-modal__visual {
  position: relative;
  min-height: 350px;
  background: #10261d;
}

.player-modal__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-modal__visual > span {
  position: absolute;
  right: 15px;
  bottom: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.player-modal__content {
  padding: 54px 32px 28px;
}

.player-modal__content h2 {
  margin: 3px 0 9px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.player-modal__content > p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.8;
}

.player-modal__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 20px;
}

.player-modal__facts > div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.player-modal__facts span,
.player-modal__facts strong {
  display: block;
}

.player-modal__facts span {
  color: var(--muted);
  font-size: 7px;
}

.player-modal__facts strong {
  margin-top: 2px;
  font-size: 10px;
}

.player-modal__value {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.player-modal__value span {
  color: var(--muted);
  font-size: 8px;
}

.player-modal__value strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 30px;
}

.profile-disclaimer {
  margin: 13px 0 45px;
  color: #6f847b;
  font-size: 8px;
  text-align: right;
}

.schedule-sidebar {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 116px);
  overflow: hidden;
  border: 1px solid rgba(200, 255, 61, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgba(17, 41, 33, 0.96), rgba(6, 20, 15, 0.98)),
    var(--surface-solid);
  box-shadow: var(--shadow);
}

.schedule-sidebar__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 21px 20px 17px;
  border-bottom: 1px solid var(--line);
}

.schedule-sidebar__header h2 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
}

.fixture-count {
  padding: 5px 8px;
  border: 1px solid rgba(200, 255, 61, 0.15);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(200, 255, 61, 0.05);
  font-size: 8px;
  white-space: nowrap;
}

.fixture-count strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 14px;
}

.schedule-toggle {
  display: none;
}

.schedule-sidebar__body {
  display: flex;
  max-height: calc(100vh - 202px);
  flex-direction: column;
}

.schedule-filters {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.schedule-filters label {
  display: block;
}

.schedule-filters label > span {
  display: block;
  margin: 0 0 5px 2px;
  color: var(--muted);
  font-size: 8px;
}

.schedule-filters select {
  width: 100%;
  height: 34px;
  padding: 0 25px 0 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  color: var(--text);
  background: #0b2119;
  font-family: var(--font-body);
  font-size: 9px;
  cursor: pointer;
}

.schedule-filters select:focus {
  border-color: rgba(200, 255, 61, 0.5);
}

.schedule-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: var(--muted);
  font-size: 8px;
}

.schedule-status span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white-soft);
}

.schedule-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(200, 255, 61, 0.6);
}

.schedule-status strong {
  font-weight: 500;
}

.schedule-list {
  min-height: 160px;
  padding: 0 9px 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(200, 255, 61, 0.25) transparent;
  scrollbar-width: thin;
}

.schedule-list::-webkit-scrollbar {
  width: 4px;
}

.schedule-list::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: rgba(200, 255, 61, 0.25);
}

.schedule-day + .schedule-day {
  margin-top: 12px;
}

.schedule-day__heading {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 7px 6px;
  color: var(--muted);
  background: #0a1d16;
  font-size: 8px;
}

.schedule-day__heading strong {
  color: var(--white-soft);
  font-weight: 600;
}

.schedule-match {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 30px 1fr;
  gap: 7px;
  margin: 4px 0;
  padding: 10px 9px 9px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  color: inherit;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  text-align: left;
  transition: 0.2s ease;
}

.schedule-match::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  content: "";
  background: var(--lime);
  opacity: 0;
}

.schedule-match:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.schedule-match.is-active {
  border-color: rgba(200, 255, 61, 0.27);
  background: linear-gradient(120deg, rgba(200, 255, 61, 0.11), rgba(200, 255, 61, 0.025));
}

.schedule-match.is-active::after {
  opacity: 1;
}

.schedule-match__number {
  display: grid;
  width: 27px;
  height: 27px;
  grid-row: 1 / span 2;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.14);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
}

.schedule-match.is-active .schedule-match__number {
  border-color: rgba(200, 255, 61, 0.4);
  color: var(--bg);
  background: var(--lime);
}

.schedule-match__teams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.schedule-match__teams > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
}

.schedule-match__teams i {
  flex: 0 0 auto;
  font-size: 12px;
  font-style: normal;
}

.schedule-match__teams strong {
  overflow: hidden;
  font-size: 9px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-match__meta {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: #6f847b;
  font-size: 7px;
}

.schedule-match__meta b {
  flex: 0 0 auto;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.schedule-match__meta strong {
  flex: 0 0 auto;
  color: var(--lime);
  font-weight: 600;
}

.schedule-match__meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-empty {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: var(--muted);
  font-size: 10px;
}

.schedule-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-top: 1px solid var(--line);
  color: #70857c;
  font-size: 8px;
  text-decoration: none;
}

.schedule-source:hover {
  color: var(--lime);
}

.match-strip {
  padding: 36px 0 24px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading--inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.eyebrow {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-heading h2,
.panel__header h2 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.match-strip__controls {
  display: flex;
  gap: 8px;
}

.match-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 12px;
  overflow: hidden;
}

.match-card {
  position: relative;
  min-height: 116px;
  padding: 16px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.026);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.match-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s ease;
}

.match-card:hover {
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-2px);
}

.match-card.is-active {
  border-color: rgba(200, 255, 61, 0.35);
  background: linear-gradient(130deg, rgba(200, 255, 61, 0.11), rgba(255, 255, 255, 0.03));
}

.match-card.is-active::before {
  transform: scaleX(1);
}

.match-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.match-card__meta span:last-child {
  color: var(--lime);
}

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

.match-card__team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.match-card__team:last-child {
  flex-direction: row-reverse;
  text-align: right;
}

.match-card__team strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-card__vs {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}

.card-crest,
.mini-crest {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-size: 16px;
}

.card-crest {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.2);
}

.hero-card {
  position: relative;
  min-height: 560px;
  padding: 28px 38px 34px;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 61, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(3, 13, 9, 0.86), rgba(10, 41, 27, 0.72) 50%, rgba(3, 13, 9, 0.86)),
    radial-gradient(circle at 50% 30%, rgba(97, 191, 73, 0.18), transparent 42%);
  box-shadow: var(--shadow), inset 0 0 70px rgba(75, 132, 67, 0.06);
}

.hero-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(90deg, transparent 0, transparent 12.4%, rgba(255, 255, 255, 0.012) 12.5%, rgba(255, 255, 255, 0.012) 25%);
  pointer-events: none;
}

.hero-card__pitch {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
}

.hero-card__pitch::before {
  position: absolute;
  top: -15%;
  left: 50%;
  width: 1px;
  height: 83%;
  content: "";
  background: linear-gradient(transparent, white 16%, white 84%, transparent);
}

.pitch-circle {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 300px;
  height: 300px;
  border: 1px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
}

.pitch-box {
  position: absolute;
  top: 4%;
  width: 190px;
  height: 250px;
  border: 1px solid white;
}

.pitch-box--left {
  left: -110px;
}

.pitch-box--right {
  right: -110px;
}

.hero-card__topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.competition-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.competition-tag__trophy {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  color: var(--bg);
  background: var(--lime);
  font-size: 9px;
  transform: rotate(45deg);
}

.competition-tag__trophy::first-letter {
  transform: rotate(-45deg);
}

.match-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.5px;
}

.match-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
}

.versus {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px minmax(0, 1fr);
  align-items: center;
  max-width: 1120px;
  min-height: 260px;
  margin: 10px auto 0;
}

.team {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.team__crest {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 31px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22), inset 0 0 0 8px rgba(255, 255, 255, 0.025);
  font-size: 54px;
  transform: rotate(-3deg);
}

.team--away .team__crest {
  transform: rotate(3deg);
}

.team__crest::after {
  position: absolute;
  right: 16px;
  bottom: 10px;
  left: 16px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: rgba(0, 0, 0, 0.32);
  filter: blur(5px);
}

.team__label {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
}

.team h1 {
  margin: 3px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 0.95;
  text-transform: uppercase;
}

.team__form {
  display: flex;
  gap: 5px;
}

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

.form-dot {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.form-dot--w {
  color: #0a1a12;
  background: var(--lime);
}

.form-dot--d {
  color: var(--text);
  background: rgba(255, 255, 255, 0.16);
}

.form-dot--l {
  color: #fff;
  background: var(--red);
}

.versus__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kickoff-label {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.5px;
}

.countdown {
  margin-bottom: 13px;
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.versus__badge {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(200, 255, 61, 0.5);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(3, 14, 9, 0.8);
  box-shadow: 0 0 0 8px rgba(200, 255, 61, 0.035), 0 0 45px rgba(200, 255, 61, 0.12);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
}

.versus__badge::before,
.versus__badge::after {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 255, 61, 0.5));
}

.versus__badge::before {
  right: calc(100% + 13px);
}

.versus__badge::after {
  left: calc(100% + 13px);
  transform: rotate(180deg);
}

.model-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 9px;
}

.model-label i {
  width: 4px;
  height: 4px;
}

.probability-board {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(2, 9, 6, 0.5);
  backdrop-filter: blur(10px);
}

.probability-board__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.probability-board__header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.confidence {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}

.confidence strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 17px;
}

.probability-values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 14px 0 9px;
}

.probability-value {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.probability-value--draw {
  justify-content: center;
}

.probability-value--away {
  justify-content: flex-end;
}

.probability-value strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.probability-value span {
  color: var(--muted);
  font-size: 10px;
}

.probability-value--home strong {
  color: var(--lime);
}

.probability-value--draw strong {
  color: var(--cyan);
}

.probability-value--away strong {
  color: var(--orange);
}

.probability-track {
  display: flex;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.probability-track span {
  display: block;
  height: 100%;
  transition: width 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.probability-track__home {
  border-radius: 20px 0 0 20px;
  background: var(--lime);
}

.probability-track__draw {
  border-right: 2px solid var(--bg);
  border-left: 2px solid var(--bg);
  background: var(--cyan);
}

.probability-track__away {
  border-radius: 0 20px 20px 0;
  background: var(--orange);
}

.model-factors {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 9px;
}

.model-factors span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.factor-icon {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 7px;
  font-style: normal;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.75fr);
  gap: 16px;
  padding: 16px 0 50px;
}

.panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(17, 41, 33, 0.88), rgba(8, 23, 18, 0.92));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 21px;
}

.panel__header h2 {
  font-size: 22px;
}

.live-pill,
.odds-status {
  padding: 6px 9px;
  border: 1px solid rgba(200, 255, 61, 0.16);
  border-radius: 20px;
  color: var(--lime);
  background: rgba(200, 255, 61, 0.06);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 1.2px;
}

.odds-status {
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.6px;
}

.odds-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.odds-status.is-loading {
  color: var(--cyan);
  border-color: rgba(73, 213, 208, 0.18);
  background: rgba(73, 213, 208, 0.06);
}

.odds-status.is-loading i {
  animation: odds-status-pulse 1.1s ease-in-out infinite;
}

.odds-status.is-live {
  color: var(--lime);
}

.odds-status.is-fallback {
  color: var(--orange);
  border-color: rgba(255, 159, 67, 0.18);
  background: rgba(255, 159, 67, 0.06);
}

@keyframes odds-status-pulse {
  50% {
    opacity: 0.3;
    transform: scale(0.75);
  }
}

.odds-market-tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 13px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.14);
}

.odds-market-tabs button {
  padding: 7px 13px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  transition: 0.2s ease;
}

.odds-market-tabs button:hover,
.odds-market-tabs button.is-active {
  color: var(--bg);
  background: var(--lime);
}

.odds-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.odds-table.is-handicap {
  grid-template-columns: repeat(2, 1fr);
}

.odds-table.is-empty {
  display: block;
}

.odd-card {
  position: relative;
  padding: 13px 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.odd-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.odd-card__top,
.odd-card__value {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.odd-card__top {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
}

.odd-card__value strong {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}

.odd-card__value span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
}

.odd-card__value .is-up {
  color: var(--lime);
}

.odd-card__value .is-down {
  color: var(--red);
}

.odd-card__value .is-live {
  color: var(--cyan);
}

.odd-card__handicap {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.odds-empty {
  padding: 25px 16px;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}

.bookmaker-quotes {
  margin-top: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.12);
}

.bookmaker-quotes__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 9px;
}

.bookmaker-quotes__header strong {
  color: var(--white-soft);
  font-weight: 600;
}

.bookmaker-quotes__list {
  display: grid;
  gap: 6px;
}

.bookmaker-quote {
  display: grid;
  grid-template-columns: minmax(88px, 1fr) repeat(3, minmax(60px, 0.7fr));
  align-items: center;
  gap: 6px;
  padding: 8px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
}

.bookmaker-quote.is-handicap {
  grid-template-columns: minmax(88px, 1fr) repeat(2, minmax(105px, 1fr));
}

.bookmaker-quote strong {
  overflow: hidden;
  color: var(--white-soft);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bookmaker-quote span {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 5px;
  color: var(--muted);
  text-align: center;
}

.bookmaker-quote span b {
  margin-left: 4px;
  color: var(--text);
  font-family: var(--font-display);
}

.bookmaker-quotes__empty {
  color: #71867d;
  font-size: 9px;
  line-height: 1.6;
}

.chart-wrap {
  margin-top: 23px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.chart-wrap.is-hidden {
  display: none;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 9px;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-legend strong {
  margin-left: auto;
  color: var(--muted);
  font-weight: 500;
}

.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.legend-dot--home {
  background: var(--lime);
}

.legend-dot--draw {
  background: var(--cyan);
}

.legend-dot--away {
  background: var(--orange);
}

.odds-chart {
  display: block;
  width: 100%;
  height: 170px;
  margin-top: 10px;
  overflow: visible;
}

.chart-grid line {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-dasharray: 2 5;
}

.chart-area {
  fill: url("#homeGradient");
}

.chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.chart-line--home {
  stroke: var(--lime);
}

.chart-line--draw {
  stroke: var(--cyan);
}

.chart-line--away {
  stroke: var(--orange);
}

.chart-dot {
  stroke: var(--surface-solid);
  stroke-width: 3;
}

.chart-times {
  display: flex;
  justify-content: space-between;
  color: #667b72;
  font-family: var(--font-display);
  font-size: 9px;
}

.data-disclaimer,
.responsible-note {
  margin: 15px 0 0;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #71867d;
  font-size: 9px;
  line-height: 1.7;
}

.update-time,
.history-count {
  color: var(--muted);
  font-size: 9px;
}

.market-total {
  position: relative;
  padding: 15px 16px;
  border: 1px solid rgba(200, 255, 61, 0.12);
  border-radius: 10px;
  background: rgba(200, 255, 61, 0.045);
}

.market-total span {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.market-total strong {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: 0.5px;
}

.market-total em {
  margin-left: 8px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.market-ring-wrap {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 21px;
  margin: 24px 0;
}

.market-ring {
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--lime) 0 47%, var(--cyan) 47% 74%, var(--orange) 74% 100%);
  box-shadow: 0 0 36px rgba(200, 255, 61, 0.08);
  transition: background 0.6s ease;
}

.market-ring__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border: 8px solid var(--surface-solid);
  border-radius: 50%;
  background: #0b1f18;
}

.market-ring__inner span,
.market-ring__inner small {
  color: var(--muted);
  font-size: 8px;
}

.market-ring__inner strong {
  margin: 3px 0;
  font-family: var(--font-display);
  font-size: 23px;
}

.market-breakdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.market-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 9px;
  font-size: 10px;
}

.market-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.market-row span {
  color: var(--muted);
}

.market-row strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.smart-money {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.smart-money__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: var(--lime);
  background: rgba(200, 255, 61, 0.09);
}

.smart-money__icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.smart-money span {
  display: block;
  color: var(--muted);
  font-size: 8px;
}

.smart-money strong {
  font-size: 10px;
  font-weight: 600;
}

.h2h-summary {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  align-items: center;
  gap: 20px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.022);
}

.h2h-stat {
  text-align: center;
}

.h2h-stat strong {
  display: block;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 28px;
}

.h2h-stat--away strong {
  color: var(--orange);
}

.h2h-stat span,
.h2h-visual > span {
  color: var(--muted);
  font-size: 8px;
}

.h2h-visual {
  text-align: center;
}

.h2h-bar {
  display: flex;
  height: 7px;
  margin-bottom: 5px;
  overflow: hidden;
  border-radius: 10px;
}

.h2h-bar span {
  background: var(--lime);
}

.h2h-bar i {
  background: var(--cyan);
}

.h2h-bar em {
  background: var(--orange);
}

.history-list {
  margin-top: 12px;
}

.history-row {
  display: grid;
  grid-template-columns: 92px 1fr 50px 1fr;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

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

.history-row__date {
  color: var(--muted);
  font-family: var(--font-display);
}

.history-row__team:first-of-type {
  text-align: right;
}

.history-row__score {
  margin: 0 11px;
  padding: 3px 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.recommendation-panel {
  position: relative;
  overflow: hidden;
}

.recommendation-panel::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  content: "";
  background: rgba(200, 255, 61, 0.05);
  filter: blur(40px);
}

.risk-badge {
  padding: 5px 9px;
  border: 1px solid rgba(255, 159, 67, 0.22);
  border-radius: 20px;
  color: var(--orange);
  background: rgba(255, 159, 67, 0.07);
  font-size: 9px;
}

.risk-badge.is-low {
  border-color: rgba(200, 255, 61, 0.22);
  color: var(--lime);
  background: rgba(200, 255, 61, 0.07);
}

.risk-badge.is-high {
  border-color: rgba(255, 98, 117, 0.22);
  color: var(--red);
  background: rgba(255, 98, 117, 0.07);
}

.recommendation-hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
  padding: 17px;
  border: 1px solid rgba(200, 255, 61, 0.15);
  border-radius: 12px;
  background: linear-gradient(110deg, rgba(200, 255, 61, 0.07), rgba(200, 255, 61, 0.01));
}

.recommendation-score {
  position: relative;
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
}

.recommendation-score svg {
  width: 86px;
  height: 86px;
  transform: rotate(-90deg);
}

.recommendation-score circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 7;
}

.recommendation-score circle:last-child {
  stroke: var(--lime);
  stroke-dasharray: 314;
  stroke-dashoffset: 88;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease;
}

.recommendation-score > div {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.recommendation-score strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0.9;
}

.recommendation-score span {
  color: var(--muted);
  font-size: 7px;
}

.recommendation-kicker {
  color: var(--lime);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.recommendation-copy h3 {
  margin: 2px 0 6px;
  font-size: 16px;
}

.recommendation-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.condition-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.condition-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
}

.condition-row__icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.07);
  font-size: 10px;
}

.condition-row.is-met .condition-row__icon {
  color: var(--bg);
  background: var(--lime);
}

.condition-row strong {
  display: block;
  font-size: 9px;
  font-weight: 600;
}

.condition-row span {
  color: var(--muted);
  font-size: 8px;
}

.condition-row__status {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
}

.condition-row.is-met .condition-row__status {
  color: var(--lime);
}

.recommendation-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.recommendation-footer > div {
  padding: 10px 11px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.17);
}

.recommendation-footer span {
  display: block;
  color: var(--muted);
  font-size: 7px;
}

.recommendation-footer strong {
  font-size: 9px;
  font-weight: 600;
}

.responsible-note strong {
  color: var(--white-soft);
}

.stats-team-head {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  margin-bottom: 18px;
  font-size: 10px;
}

.stats-team-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats-team-head > div:last-child {
  justify-content: flex-end;
}

.stats-team-head > span {
  color: var(--muted);
  font-family: var(--font-display);
  text-align: center;
}

.mini-crest {
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row__values {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.comparison-row__values strong:last-child {
  text-align: right;
}

.comparison-row__label {
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  text-align: center;
}

.dual-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: 5px;
}

.dual-bar span,
.dual-bar i {
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.dual-bar span {
  direction: rtl;
}

.dual-bar b,
.dual-bar em {
  display: block;
  height: 100%;
  border-radius: 8px;
  transition: width 0.7s ease;
}

.dual-bar b {
  margin-left: auto;
  background: var(--lime);
}

.dual-bar em {
  background: var(--orange);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-top: 1px solid var(--line);
  color: #63786f;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.6px;
}

.brand--footer {
  opacity: 0.65;
}

.brand--footer .brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.brand--footer strong {
  font-size: 17px;
}

.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  padding: 12px 15px;
  border: 1px solid rgba(200, 255, 61, 0.2);
  border-radius: 10px;
  background: rgba(9, 27, 20, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 0.25s ease;
  backdrop-filter: blur(12px);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.toast p {
  margin: 0;
  font-size: 10px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@media (max-width: 1280px) {
  .workspace-layout {
    grid-template-columns: 268px minmax(0, 1fr);
  }

  .team-archive {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .schedule-sidebar__header {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 1100px) {
  .app-shell {
    width: calc(100% - 36px);
  }

  .match-cards {
    grid-template-columns: repeat(2, minmax(230px, 1fr));
  }

  .match-card:nth-child(n + 3) {
    display: none;
  }

  .versus {
    grid-template-columns: 1fr 140px 1fr;
  }

  .team {
    gap: 16px;
  }

  .team__crest {
    width: 92px;
    height: 92px;
    border-radius: 25px;
    font-size: 43px;
  }

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

  .odds-panel,
  .history-panel {
    grid-column: 1 / -1;
  }

  .team-profile__hero {
    padding-right: 25px;
    padding-left: 25px;
  }

  .team-profile__flag {
    width: 96px;
    height: 96px;
    border-radius: 25px;
    font-size: 46px;
  }

  .team-profile__rating {
    width: 150px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .workspace-layout {
    grid-template-columns: 238px minmax(0, 1fr);
    gap: 12px;
  }

  .schedule-sidebar__header {
    padding: 16px 12px 13px;
  }

  .schedule-sidebar__header h2 {
    font-size: 21px;
  }

  .schedule-filters {
    grid-template-columns: 1fr;
    padding: 11px;
  }

  .schedule-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .schedule-match {
    grid-template-columns: 27px 1fr;
    padding-right: 7px;
    padding-left: 7px;
  }

  .schedule-match__teams {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding-right: 18px;
    padding-left: 18px;
  }

  .versus {
    grid-template-columns: 1fr 76px 1fr;
  }

  .team {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .team--away {
    flex-direction: column-reverse;
  }

  .team__crest {
    width: 68px;
    height: 68px;
    border-radius: 19px;
    font-size: 32px;
  }

  .team h1 {
    font-size: 30px;
  }

  .team__form,
  .team--away .team__form {
    justify-content: center;
  }

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

  .odds-panel,
  .history-panel {
    grid-column: auto;
  }

  .team-archive {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 12px;
  }

  .archive-sidebar__header {
    padding: 16px 12px 13px;
  }

  .archive-sidebar__header h2 {
    font-size: 22px;
  }

  .archive-group-filter {
    grid-template-columns: repeat(5, 1fr);
    padding-right: 10px;
    padding-left: 10px;
  }

  .archive-team-list {
    max-height: calc(100vh - 330px);
  }

  .team-profile__hero {
    min-height: 190px;
    padding: 24px 20px;
  }

  .team-profile__identity {
    gap: 14px;
  }

  .team-profile__flag {
    width: 78px;
    height: 78px;
    border-radius: 20px;
    font-size: 38px;
  }

  .team-profile__identity h1 {
    font-size: 45px;
  }

  .team-profile__rating {
    width: 125px;
    padding: 13px;
  }

  .team-profile__rating strong {
    font-size: 34px;
  }

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

  .profile-fixtures {
    grid-column: auto;
  }

  .profile-fixture-list,
  .profile-opponent-list {
    grid-template-columns: 1fr;
  }

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

  .player-card {
    display: block;
    min-height: 245px;
    padding: 7px;
  }

  .player-card__photo {
    width: 100%;
    height: 145px;
  }

  .player-card__body {
    padding: 8px 2px 0;
  }

  .player-card__body > span {
    margin-top: 5px;
  }

  .player-card__value {
    right: 9px;
    bottom: 7px;
  }

  .profile-fixture {
    min-height: 125px;
  }
}

@media (max-width: 760px) {
  .workspace-layout {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .schedule-sidebar {
    position: static;
    max-height: none;
  }

  .schedule-sidebar__header {
    padding: 17px 18px 13px;
    border-bottom: 0;
  }

  .schedule-toggle {
    display: flex;
    width: calc(100% - 28px);
    height: 38px;
    align-items: center;
    justify-content: space-between;
    margin: 0 14px 14px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--white-soft);
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    font-size: 10px;
  }

  .schedule-toggle svg {
    width: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 0.2s ease;
  }

  .schedule-toggle[aria-expanded="false"] svg {
    transform: rotate(-90deg);
  }

  .schedule-sidebar__body {
    max-height: none;
  }

  .schedule-sidebar__body.is-collapsed {
    display: none;
  }

  .schedule-list {
    max-height: 470px;
  }

  .schedule-match__teams strong {
    font-size: 10px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 108px;
    align-items: flex-start;
    padding: 14px 18px 0;
  }

  .data-status {
    display: none;
  }

  .main-nav {
    position: absolute;
    right: 12px;
    bottom: 0;
    left: 12px;
    display: flex;
    height: 43px;
    align-items: stretch;
    justify-content: center;
    gap: 27px;
  }

  .main-nav__item {
    font-size: 10px;
  }

  .header-actions {
    padding-top: 0;
  }

  .app-shell {
    width: calc(100% - 24px);
  }

  .workspace-layout {
    gap: 12px;
    padding-top: 12px;
  }

  .team-archive {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 12px;
  }

  .archive-sidebar {
    position: static;
    max-height: none;
    border-radius: 13px;
  }

  .archive-sidebar__header {
    padding: 17px 16px 14px;
  }

  .archive-team-list {
    max-height: 310px;
  }

  .team-profile__hero {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 24px 19px;
    border-radius: 14px;
  }

  .team-profile__identity {
    gap: 15px;
  }

  .team-profile__flag {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    font-size: 37px;
  }

  .team-profile__identity h1 {
    font-size: 43px;
  }

  .team-profile__rating {
    width: 100%;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 12px;
  }

  .profile-panel {
    padding: 18px 15px;
  }

  .profile-fixtures {
    grid-column: auto;
  }

  .profile-fixture-list,
  .profile-opponent-list {
    grid-template-columns: 1fr;
  }

  .squad-header {
    align-items: flex-start;
    gap: 10px;
  }

  .squad-value strong {
    font-size: 24px;
  }

  .squad-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .squad-position-filter {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .squad-position-filter::-webkit-scrollbar {
    display: none;
  }

  .squad-position-filter button {
    flex: 0 0 auto;
  }

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

  .player-card {
    display: block;
    min-height: 244px;
    padding: 7px;
  }

  .player-card__photo {
    width: 100%;
    height: 142px;
  }

  .player-card__body {
    padding: 8px 2px 0;
  }

  .player-card__body > strong {
    font-size: 9px;
  }

  .player-card__body > span {
    margin-top: 5px;
  }

  .player-card__value {
    right: 9px;
    bottom: 7px;
  }

  .player-modal__card {
    max-height: calc(100vh - 24px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .player-modal__visual {
    min-height: 235px;
    max-height: 235px;
  }

  .player-modal__visual img {
    object-position: center 20%;
  }

  .player-modal__visual > span {
    font-size: 54px;
  }

  .player-modal__content {
    padding: 24px 20px 22px;
  }

  .profile-fixture {
    min-height: 125px;
  }

  .profile-disclaimer {
    margin-bottom: 25px;
    text-align: left;
  }

  .schedule-sidebar {
    border-radius: 13px;
  }

  .schedule-sidebar__header h2 {
    font-size: 22px;
  }

  .schedule-filters {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-list {
    max-height: 390px;
  }

  .match-strip {
    padding-top: 24px;
  }

  .match-cards {
    display: flex;
    margin-right: -12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .match-cards::-webkit-scrollbar {
    display: none;
  }

  .match-card,
  .match-card:nth-child(n + 3) {
    display: block;
    min-width: 250px;
    scroll-snap-align: start;
  }

  .hero-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .hero-card__topline {
    align-items: flex-start;
  }

  .match-meta {
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
  }

  .match-meta i {
    display: none;
  }

  .versus {
    grid-template-columns: 1fr 72px 1fr;
    min-height: 225px;
  }

  .team {
    flex-direction: column;
    gap: 9px;
    text-align: center;
  }

  .team--away {
    flex-direction: column-reverse;
  }

  .team__crest {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    font-size: 34px;
  }

  .team h1 {
    margin-bottom: 8px;
    font-size: 31px;
  }

  .team__label,
  .model-label,
  .kickoff-label,
  .countdown {
    font-size: 7px;
  }

  .team__form,
  .team--away .team__form {
    justify-content: center;
  }

  .form-dot {
    width: 16px;
    height: 16px;
    font-size: 7px;
  }

  .versus__badge {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .versus__badge::before,
  .versus__badge::after {
    display: none;
  }

  .probability-board {
    padding: 15px 13px;
  }

  .model-factors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

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

  .odds-panel,
  .history-panel {
    grid-column: auto;
  }

  .panel {
    padding: 19px 16px;
  }

  .market-ring-wrap {
    grid-template-columns: 135px 1fr;
    gap: 14px;
  }

  .market-ring {
    width: 132px;
    height: 132px;
  }

  .market-ring__inner {
    width: 98px;
    height: 98px;
  }

  .h2h-summary {
    grid-template-columns: 60px 1fr 60px;
    gap: 10px;
    padding: 13px 8px;
  }

  .history-row {
    grid-template-columns: 65px 1fr 44px 1fr;
    font-size: 9px;
  }

  .recommendation-hero {
    align-items: flex-start;
    gap: 13px;
    padding: 13px;
  }

  .recommendation-score,
  .recommendation-score svg {
    width: 68px;
    height: 68px;
  }

  .recommendation-score svg {
    margin: -9px;
    transform: rotate(-90deg) scale(0.8);
  }

  .recommendation-score strong {
    font-size: 23px;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 20px 0;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .bookmaker-quote,
  .bookmaker-quote.is-handicap {
    grid-template-columns: 1fr;
  }

  .bookmaker-quote strong {
    margin-bottom: 2px;
  }

  .competition-tag {
    font-size: 8px;
  }

  .team__crest {
    width: 61px;
    height: 61px;
    font-size: 29px;
  }

  .team h1 {
    font-size: 26px;
  }

  .probability-value strong {
    font-size: 23px;
  }

  .market-ring-wrap {
    grid-template-columns: 120px 1fr;
  }

  .market-ring {
    width: 118px;
    height: 118px;
  }

  .market-ring__inner {
    width: 88px;
    height: 88px;
  }

  .market-ring__inner strong {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
