/* ======================================================================
   PLAYERSMINUTES — VISUAL SETTINGS
   Start here to change the site's colours, typography and overall spacing.
   Bootstrap provides the responsive grid, forms, modals and mobile menu.
   ====================================================================== */
:root {
  --blue: #246bfd;
  --blue-dark: #1555d7;
  --navy: #16243c;
  --muted: #788395;
  --line: #e7ebf2;
  --canvas: #f7f9fc;
  --pale-blue: #edf4ff;
  --sidebar: 224px;
  --header: 76px;
  --bs-primary: #246bfd;
  --bs-body-font-family: "DM Sans", sans-serif;
  --bs-body-color: #16243c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--canvas);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
.brand {
  font-family: "Manrope", sans-serif;
}
h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.65px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #91b6ff;
  outline-offset: 4px;
}
button {
  cursor: pointer;
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
  fill: none;
}
p {
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
  padding: 11px 18px;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.btn-primary {
  --bs-btn-bg: var(--blue);
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-bg: var(--blue-dark);
  --bs-btn-hover-border-color: var(--blue-dark);
  --bs-btn-active-bg: var(--blue-dark);
  --bs-btn-active-border-color: var(--blue-dark);
  box-shadow: 0 4px 8px #246bfd13;
}
.btn-primary:hover {
  transform: translateY(-1px);
}
.btn-outline-secondary {
  --bs-btn-color: #576277;
  --bs-btn-border-color: #dfe5ee;
  --bs-btn-hover-bg: #edf3fc;
  --bs-btn-hover-color: var(--navy);
  --bs-btn-hover-border-color: #b4c9ee;
  background: white;
}
.btn .icon {
  width: 17px;
  height: 17px;
}
.skip-link {
  position: fixed;
  z-index: 2000;
  top: -80px;
  left: 12px;
  padding: 12px 20px;
  background: white;
  color: var(--blue);
}
.skip-link:focus {
  top: 8px;
}
.status-dot,
.blue-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #2aae87;
  border-radius: 50%;
  flex-shrink: 0;
}
.blue-dot {
  background: var(--blue);
}
.icon {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Anchor offscreen accessible table labels inside the scroll container. */
.table-responsive {
  position: relative;
}
@media (max-width: 480px) {
  .topbar .brand {
    font-size: 17px;
    gap: 6px;
  }
  .topbar .brand img {
    width: 27px;
    height: 27px;
  }
  .topbar-right {
    gap: 7px;
  }
}
/* Fixed desktop navigation. Breakpoints below turn the sidebar into a drawer. */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px 0 26px;
  background: white;
  border-bottom: 1px solid var(--line);
  z-index: 1030;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.8px;
  white-space: nowrap;
}
.brand-blue {
  color: var(--blue);
}
.brand-period {
  color: var(--blue);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8490a0;
  font-size: 11px;
}
.topbar .btn {
  padding: 10px 18px;
}
.mobile-menu {
  display: none;
}
.sidebar {
  position: fixed !important;
  top: var(--header) !important;
  left: 0;
  width: var(--sidebar) !important;
  bottom: 0;
  background: white !important;
  border-right: 1px solid var(--line);
  z-index: 1020;
}
.sidebar .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 34px 16px 22px;
  height: 100%;
  overflow-y: auto;
}
.nav-label {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 1.65px;
  color: #9aa4b3;
  margin: 0 14px 14px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 5px;
  border-radius: 7px;
  color: #69778a;
  font-size: 12px;
  font-weight: 550;
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-item .icon {
  width: 18px;
  height: 18px;
}
.nav-item:hover {
  background: #f6f8fc;
  color: var(--blue);
}
.nav-item.active {
  background: var(--pale-blue);
  color: var(--blue);
  font-weight: 700;
}
.active-dot {
  width: 5px;
  height: 5px;
  margin-left: auto;
  background: var(--blue);
  border-radius: 50%;
}
.league-label {
  margin-top: 36px;
}
.league-nav button {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  border: 0;
  background: transparent;
  color: #6c788b;
  font-size: 12px;
  padding: 11px 14px;
  text-align: left;
  border-radius: 7px;
}
.league-nav button:hover,
.league-nav button.selected {
  background: #f6f8fc;
  color: var(--navy);
}
.league-nav button.selected {
  color: #fff;
  background: linear-gradient(135deg, #246bfd, #164fc9);
  box-shadow: 0 7px 18px #246bfd35;
  font-weight: 750;
}
.league-nav button.selected .icon {
  color: #fff;
}
.league-nav .icon {
  margin-left: auto;
  width: 13px;
  height: 13px;
}
.country-flag {
  width: 18px;
  height: 13px;
  display: inline-block;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #00000007;
  flex-shrink: 0;
}
.flag-england {
  background:
    linear-gradient(90deg, transparent 42%, #df4c64 42% 57%, transparent 57%),
    linear-gradient(transparent 40%, #df4c64 40% 60%, transparent 60%), #fff;
}
.flag-spain {
  background: linear-gradient(#d95b60 25%, #f6d371 25% 75%, #d95b60 75%);
}
.flag-italy {
  background: linear-gradient(90deg, #68b99a 33%, white 33% 66%, #e4777d 66%);
}
.flag-germany {
  background: linear-gradient(#465060 33%, #dd6569 33% 66%, #edc968 66%);
}
.flag-france {
  background: linear-gradient(90deg, #647ebe 33%, white 33% 66%, #e4777d 66%);
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 48px;
}
.sidebar-promo {
  padding: 18px 15px;
  background: linear-gradient(125deg, #f0f5ff, #f7f9ff);
  border: 1px solid #e7eefc;
  border-radius: 10px;
  margin: 0 2px 18px;
}
.promo-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  background: white;
  color: var(--blue);
  border: 1px solid #e2ebfc;
  border-radius: 8px;
  margin-bottom: 14px;
}
.promo-icon .icon {
  width: 17px;
  height: 17px;
}
.sidebar-promo h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.sidebar-promo p {
  font-size: 11px;
  color: #8b96a8;
  line-height: 1.8;
  margin: 8px 0 15px;
}
.sidebar-promo button {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  border: 0;
  background: none;
  padding: 0;
}
.sidebar-promo button .icon {
  width: 15px;
  height: 15px;
}
.sidebar-footnote {
  display: block;
  color: #a4aeba;
  text-align: center;
  font-size: 8px;
  margin-top: 15px;
}
.main-content {
  margin: var(--header) 0 0 var(--sidebar);
}
.page-content {
  max-width: 1480px;
  margin: auto;
  padding: 28px 38px 0;
}
.breadcrumb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #9aa5b5;
  margin: 0 0 22px;
}
.breadcrumb-row strong {
  color: #6c7a90;
  font-weight: 500;
}
.breadcrumb-slash {
  color: #c7ced9;
  margin: 0 11px;
}
.season-stamp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #8d99ac;
}
.season-stamp .icon {
  width: 13px;
  height: 13px;
}
/* Hero artwork: lightweight, scalable pitch diagram and a ticket motif. */
.hero {
  position: relative;
  min-height: 298px;
  background: #edf4ff;
  border: 1px solid #e0ebfd;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 37px 38px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 1.8px;
  color: #5d83bf;
}
.eyebrow > span:not(.icon) {
  width: 5px;
  height: 5px;
  background: #5990f0;
  border-radius: 50%;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 16px 0 14px;
  color: #1b3258;
}
.hero h1 > span {
  color: var(--blue);
}
.hero p {
  font-size: 12px;
  line-height: 1.8;
  color: #7b8da8;
  margin-bottom: 20px;
}
.hero-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
}
.hero-link .icon {
  width: 17px;
}
.hero-art {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 45%;
}
.pitch {
  position: absolute;
  width: 350px;
  height: 224px;
  border: 1px solid #b8d0f3;
  right: -45px;
  top: 39px;
  transform: rotate(-14deg);
  border-radius: 3px;
  background: repeating-linear-gradient(
    90deg,
    #e4eefe55 0 42px,
    #d8e7ff44 42px 84px
  );
}
.pitch-half {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 1px solid #b8d0f3;
}
.pitch-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 75px;
  height: 75px;
  transform: translate(-50%, -50%);
  border: 1px solid #b8d0f3;
  border-radius: 50%;
}
.pitch-box {
  position: absolute;
  top: 25%;
  height: 50%;
  width: 50px;
  border: 1px solid #b8d0f3;
}
.box-left {
  left: -1px;
}
.box-right {
  right: -1px;
}
.pitch-player {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #92b8f5;
  border: 3px solid #f2f7ff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #a8c8fd26;
}
.player-one {
  left: 72%;
  top: 25%;
}
.player-two {
  left: 62%;
  top: 67%;
}
.player-three {
  left: 90%;
  top: 45%;
}
.player-four {
  left: 40%;
  top: 40%;
}
.player-five {
  left: 12%;
  top: 70%;
}
.floating-label {
  position: absolute;
  right: 49px;
  top: 27px;
  transform: rotate(5deg);
  background: white;
  padding: 10px 15px;
  box-shadow: 0 4px 16px #1a56ae0b;
  border: 1px solid #e0e9fa;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 7px;
  letter-spacing: 1.1px;
  color: #6581ab;
  white-space: nowrap;
}
.minute-ticket {
  position: absolute;
  left: 14px;
  top: 62px;
  width: 230px;
  padding: 20px 21px 13px;
  background: white;
  box-shadow: 0 18px 45px #285eb61c;
  border: 1px solid #dfe9f9;
  border-radius: 12px;
  transform: rotate(-7deg);
}
.ticket-top {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 8px;
  line-height: 1.7;
  color: #93a1b5;
}
.ticket-top strong {
  font-weight: 550;
  color: #5c708c;
}
.ticket-clock {
  display: grid;
  place-items: center;
  background: var(--pale-blue);
  width: 33px;
  height: 33px;
  border-radius: 9px;
  color: var(--blue);
}
.ticket-clock .icon {
  width: 20px;
  height: 20px;
}
.ticket-star {
  margin-left: auto;
  color: #719bff;
  font-size: 18px;
}
.ticket-number {
  display: flex;
  align-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 78px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -5px;
  color: var(--blue);
  margin: 7px 0;
}
.ticket-number > span:first-child {
  font-size: 55px;
  align-self: flex-start;
  margin-top: 2px;
}
.ticket-number .ticket-caption {
  font-family: "DM Sans", sans-serif;
  letter-spacing: 1px;
  font-size: 7px;
  line-height: 1.8;
  color: #9aa9bf;
  font-weight: 500;
  margin-left: auto;
}
.ticket-bars {
  display: flex;
  gap: 4px;
  align-items: end;
  height: 30px;
  margin-bottom: 12px;
}
.ticket-bars i {
  width: 6px;
  flex: 1;
  background: #a8c7ff;
  border-radius: 2px 2px 0 0;
  height: 65%;
}
.ticket-bars i:nth-child(3n) {
  height: 85%;
  background: #4a86fb;
}
.ticket-bars i:nth-child(3n + 1) {
  height: 45%;
  background: #d3e3fe;
}
.ticket-bars i:nth-child(4n) {
  height: 100%;
  background: var(--blue);
}
.ticket-bars i:nth-child(5n) {
  height: 75%;
}
.ticket-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed #dce5f1;
  font-size: 6px;
  font-weight: 650;
  letter-spacing: 1.6px;
  color: #92a2b9;
}
.ticket-bottom .icon {
  width: 13px;
  height: 13px;
  color: #809dc5;
}
.art-plus {
  position: absolute;
  right: 38px;
  bottom: 34px;
  font-size: 32px;
  font-weight: 300;
  color: #89b2fb;
}
/* League selection and the main statistics workspace. */
.league-section {
  padding: 30px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 17px;
}
.section-heading h2 {
  font-size: 16px;
  letter-spacing: -0.4px;
  margin: 0;
}
.section-heading > span {
  color: #919cad;
  font-size: 10px;
}
.league-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 11px;
}
.league-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 9px;
  text-align: left;
  position: relative;
  transition: 0.18s;
}
.league-card:hover {
  border-color: #9abaff;
  transform: translateY(-2px);
}
.league-card.selected {
  border-color: #246bfd;
  background: linear-gradient(145deg, #eaf2ff, #fff);
  box-shadow:
    0 0 0 2px #246bfd22,
    0 9px 24px #246bfd20;
  transform: translateY(-2px);
}
.league-card.selected strong {
  color: #174ea8;
}
.league-card strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.league-card small {
  display: block;
  font-size: 9px;
  color: #97a2b3;
  margin-top: 4px;
}
.league-emblem {
  width: 31px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  font-family: "Manrope", sans-serif;
  letter-spacing: -3px;
}
.league-emblem .icon {
  width: 29px;
  height: 29px;
  stroke-width: 1.9;
}
.emblem-pl {
  color: #583067;
}
.emblem-laliga {
  color: #f36967;
  font-size: 22px;
  letter-spacing: -5px;
  padding-right: 6px;
}
.emblem-serie {
  color: #1677e2;
  font-size: 32px;
  transform: skew(-6deg);
}
.emblem-bundes {
  color: #de3c4a;
}
.emblem-ligue {
  color: #263c8c;
  font-size: 36px;
}
.league-card-arrow {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 10px;
  color: #c1cbd9;
}
.league-card.selected .league-card-arrow {
  color: #fff;
  background: var(--blue);
  font-size: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.league-card.selected .league-card-arrow::after {
  content: "\2713";
  font-size: 12px;
  font-weight: 800;
}
.explorer {
  padding-top: 7px;
}
.explorer-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 21px;
}
.small-eyebrow {
  font-size: 7px;
  letter-spacing: 1.65px;
  color: #7c98bf;
}
.explorer-heading h2 {
  font-size: 24px;
  margin: 10px 0 7px;
  letter-spacing: -0.85px;
}
.explorer-heading p {
  font-size: 11px;
  color: #8a96a8;
  margin: 0;
}
.export-button {
  font-size: 10px;
  padding: 9px 12px;
}
.export-button .icon {
  width: 14px;
  height: 14px;
}
.filters {
  margin-bottom: 19px;
}
.filters label,
.contact-form label,
#subscribe-form > label {
  display: block;
  font-size: 10px;
  font-weight: 650;
  margin-bottom: 8px;
  color: #63728a;
}
.form-select,
.form-control {
  font-size: 12px;
  color: #53617a;
  border: 1px solid #e0e6ef;
  border-radius: 7px;
  min-height: 43px;
  box-shadow: 0 2px 3px #1d355402;
  background-color: #fff;
}
.form-control::placeholder {
  color: #aab3c0;
  font-size: 11px;
}
.form-control:focus,
.form-select:focus {
  border-color: #86adff;
  box-shadow: 0 0 0 3px #246bfd13;
}
.club-select-wrap {
  position: relative;
}
.club-select-wrap select {
  padding-left: 54px;
  font-weight: 650;
  color: #34455f;
}
.mini-shield {
  position: absolute;
  top: 6px;
  left: 13px;
  width: 29px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #df5258;
  font-size: 6px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  font-weight: 800;
  z-index: 1;
  overflow: hidden;
}
.mini-shield img,
.club-badge img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.competition-tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 0 0 0;
  margin-bottom: 15px;
}
.competition-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 11px 14px 14px;
  font-size: 10px;
  font-weight: 550;
  color: #8b97a9;
}
.competition-tabs button.selected {
  color: var(--blue);
  border-bottom-color: var(--blue);
  font-weight: 700;
}
.competition-tabs .icon {
  width: 14px;
  height: 14px;
}
.champions-star {
  font-size: 21px;
  line-height: 14px;
}
.data-notice {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  font-size: 9px;
  color: #8a98ad;
  line-height: 1.6;
}
.data-notice .icon {
  width: 13px;
  height: 13px;
}
.data-notice.live {
  color: #238b72;
}
.data-notice.error {
  color: #bd4444;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 22px;
}
.stat-card {
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: 10px;
  padding: 17px 17px 19px;
  background: white;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  min-height: 123px;
}
.stat-card:nth-child(1) {
  border-top-color: #4d83ec;
  background: linear-gradient(145deg, #f6f9ff 0%, #fff 60%);
}
.stat-card:nth-child(2) {
  border-top-color: #9c7ae3;
  background: linear-gradient(145deg, #faf7ff 0%, #fff 60%);
}
.stat-card:nth-child(3) {
  border-top-color: #39a68b;
  background: linear-gradient(145deg, #f4fbf8 0%, #fff 60%);
}
.stat-card:nth-child(4) {
  border-top-color: #e0a44a;
  background: linear-gradient(145deg, #fffbf3 0%, #fff 60%);
}
.stat-card > div {
  min-width: 0;
}
.stat-label {
  display: block;
  color: #8895a8;
  font-size: 10px;
  margin-bottom: 11px;
}
.stat-card strong {
  font-family: "Manrope", sans-serif;
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #243855;
  white-space: nowrap;
}
.stat-card strong.stat-player-name {
  font-size: 17px;
  letter-spacing: -0.6px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stat-caption {
  display: block;
  font-size: 8px;
  color: #9ea9b9;
  margin-top: 8px;
  line-height: 1.5;
}
.stat-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  flex-shrink: 0;
}
.stat-icon .icon {
  width: 17px;
  height: 17px;
}
.blue {
  color: #4280ed;
  background: #eef4ff;
}
.purple {
  color: #9c7ae3;
  background: #f5f0ff;
}
.green {
  color: #39a68b;
  background: #ecf8f3;
}
.orange {
  color: #deaa52;
  background: #fff7e9;
}
/* Statistics table: scrolls within its own panel on narrow screens. */
.players-panel {
  background: white;
  border: 1px solid #d7e3f7;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(40, 82, 145, 0.08);
}
.players-toolbar {
  padding: 19px 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: linear-gradient(90deg, #f5f9ff, #fff 72%);
}
.players-title {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.players-title h3 {
  font-size: 13px;
  letter-spacing: -0.2px;
  margin: 0;
  white-space: nowrap;
}
.club-badge {
  display: grid;
  place-items: center;
  width: 31px;
  height: 35px;
  clip-path: polygon(3% 0, 97% 0, 92% 70%, 50% 100%, 8% 70%);
  background: #df5258;
  color: white;
  font-size: 7px;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.count-badge {
  display: inline-block;
  background: #f1f4f9;
  color: #95a0b1;
  font-size: 8px;
  padding: 4px 7px;
  border-radius: 5px;
  white-space: nowrap;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 204px;
  flex-shrink: 0;
}
.search-field .icon {
  width: 14px;
  height: 14px;
  color: #9ca9bc;
}
.search-field input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 10px;
  background: transparent;
  min-width: 0;
}
.search-field input::placeholder {
  color: #a7b0c0;
}
.search-field:focus-within {
  border-color: #86adff;
  box-shadow: 0 0 0 2px #246bfd0d;
}
.search-shortcut {
  font-size: 9px;
  border: 1px solid #e5eaf2;
  color: #a8b3c3;
  padding: 0 4px;
  border-radius: 3px;
}
.players-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
}
.players-table th {
  font-size: 9px;
  font-weight: 500;
  color: #8b97ab;
  padding: 12px 12px;
  background: #f3f7fd;
  border-top: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
}
.players-table th button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
}
.players-table th button > span {
  font-size: 11px;
  color: #c0cad8;
  margin-left: 4px;
}
.players-table th .active-sort,
.players-table th .active-sort span {
  color: var(--blue);
  font-weight: 700;
}
.players-table th:nth-child(4) {
  background: #e8f1ff;
}
.players-table td {
  padding: 13px 12px;
  border-bottom: 1px solid #f0f3f7;
  font-size: 11px;
  color: #62718a;
}
.players-table tbody tr:nth-child(even) {
  background: #f9fbff;
}
.players-table tbody tr:last-child td {
  border-bottom: 0;
}
.players-table tbody tr:hover {
  background: #eef5ff;
}
.players-table .rank-col {
  width: 39px;
  padding-left: 22px;
}
.players-table td.rank-col {
  color: #a8b3c3;
  font-size: 9px;
}
.players-table th.number-col,
.players-table td.number-col {
  text-align: right;
}
.player-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.player-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 37px;
  background: var(--avatar-bg, #f0f3fa);
  border-radius: 8px 8px 8px 3px;
  color: var(--avatar-color, #7b8faf);
  font-size: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  flex-shrink: 0;
}
.player-avatar:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 7px;
  height: 7px;
  border: 2px solid white;
  border-radius: 50%;
  background: #8dacbf;
  z-index: 2;
}
.player-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: white;
}
.player-name-button {
  display: block;
  text-align: left;
  color: #2e405b;
  font-size: 11px;
  font-weight: 700;
  background: none;
  border: 0;
  padding: 0;
  line-height: 1.6;
}
.player-name-button:hover {
  color: var(--blue);
}
.player-nationality {
  display: block;
  font-size: 8px;
  color: #a0abbd;
  margin-top: 1px;
}
.position-pill {
  display: inline-block;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 500;
  padding: 4px 7px;
  min-width: 62px;
  text-align: center;
}
.position-defender {
  color: #5284c8;
  background: #edf4ff;
}
.position-midfielder {
  color: #aa86d1;
  background: #f5f0fd;
}
.position-attacker {
  color: #d3935d;
  background: #fff5ea;
}
.position-goalkeeper {
  color: #4d9e8b;
  background: #ecf7f2;
}
.minutes-number {
  font-weight: 750 !important;
  font-family: "Manrope", sans-serif;
  color: #2d62ba !important;
  font-size: 12px !important;
  background: rgba(66, 128, 237, 0.09);
}
.minutes-number small {
  font-size: 8px;
  color: #7d9fce;
  font-weight: 500;
  margin-left: 3px;
}
.goal-number {
  color: #25876f !important;
  font-weight: 750;
}
.assist-number {
  color: #8665c1 !important;
  font-weight: 750;
}
.split-bar {
  display: flex;
  width: 105px;
  height: 5px;
  gap: 2px;
  border-radius: 4px;
  overflow: hidden;
  background: #f1f4f8;
}
.split-bar span {
  height: 100%;
  min-width: 0;
}
.league-color {
  background: #5389ef;
}
.champions-color {
  background: #a58ae6;
}
.europa-color {
  background: #efaa63;
}
.conference-color {
  background: #6dc7a6;
}
.other-color {
  background: #b9c4d5;
}
.row-arrow {
  padding: 4px;
  border: 0;
  background: transparent;
  color: #b9c5d5;
}
.row-arrow .icon {
  width: 13px;
  height: 13px;
}
.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 21px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: #9aa6b8;
}
.pagination-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 9px;
}
.pagination-controls button {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  width: 26px;
  height: 26px;
  color: #7287a7;
}
.pagination-controls button:disabled {
  color: #c7d0dd;
  background: #fafbfd;
}
.empty-state {
  text-align: center !important;
  padding: 42px 20px !important;
  white-space: normal;
  color: #8c9bb1 !important;
}
.empty-state button {
  color: var(--blue);
  background: none;
  border: 0;
  text-decoration: underline;
}
.table-notes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 8px;
  color: #9da8b9;
  margin-top: 13px;
}
.legend {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.legend > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.legend i {
  width: 5px;
  height: 5px;
  border-radius: 2px;
}
.table-notes > .legend + span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.table-notes .icon {
  width: 12px;
  height: 12px;
}
.comparison-panel {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid #dfe7f4;
  border-radius: 13px;
  background: linear-gradient(145deg, #f7faff, #fff 58%);
}
.comparison-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 22px;
}
.comparison-heading h3 {
  margin: 7px 0 4px;
  font-size: 21px;
  color: #263d60;
}
.comparison-heading p {
  margin: 0;
  max-width: 540px;
  color: #8a98ad;
  font-size: 10px;
  line-height: 1.65;
}
.comparison-competition {
  width: 190px;
  flex: 0 0 auto;
  font-size: 9px;
  color: #71819a;
}
.comparison-competition .form-select {
  margin-top: 7px;
}
.comparison-controls {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) 42px minmax(0, 1.6fr);
  align-items: stretch;
  gap: 13px;
}
.comparison-side {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 17px;
}
.comparison-side-label {
  display: block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.comparison-side label {
  display: block;
  color: #74839a;
  font-size: 9px;
  font-weight: 650;
}
.comparison-side label .form-select {
  margin-top: 7px;
}
.comparison-side > p {
  margin: 10px 0 0;
  color: #9aa7b9;
  font-size: 9px;
}
.comparison-target-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.versus-badge {
  align-self: center;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font:
    800 10px "Manrope",
    sans-serif;
  box-shadow: 0 6px 18px #246bfd2b;
}
.comparison-results {
  margin-top: 17px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  overflow: hidden;
}
.comparison-loading {
  margin: 0;
  padding: 30px;
  color: #8d9bb0;
  font-size: 11px;
  text-align: center;
}
.comparison-error {
  color: #bd4444;
}
.comparison-player-heads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 18px 22px;
  background: #fafcff;
  border-bottom: 1px solid var(--line);
}
.comparison-player-heads > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.comparison-player-heads > div:last-child {
  flex-direction: row-reverse;
  text-align: right;
}
.comparison-player-heads span {
  min-width: 0;
}
.comparison-player-heads strong,
.comparison-player-heads small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.comparison-player-heads strong {
  color: #2d4261;
  font-size: 12px;
}
.comparison-player-heads small {
  margin-top: 3px;
  color: #98a5b7;
  font-size: 8px;
}
.comparison-metric {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  min-height: 42px;
  padding: 8px 22px;
  border-bottom: 1px solid #f0f3f7;
}
.comparison-metric:last-child {
  border-bottom: 0;
}
.comparison-metric > span {
  color: #8d9aaf;
  font-size: 9px;
  text-align: center;
}
.comparison-metric > strong {
  color: #53647c;
  font:
    700 12px "Manrope",
    sans-serif;
}
.comparison-metric > strong:last-child {
  text-align: right;
}
.comparison-metric > strong.metric-winner {
  color: var(--blue);
}
/* Supporting content, subscription and contact forms. */
.newsletter-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #edf4ff;
  border: 1px solid #e1ebfc;
  border-radius: 11px;
  padding: 25px 30px;
  margin-top: 35px;
}
.newsletter-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 59px;
  height: 59px;
  flex-shrink: 0;
  border: 1px solid #d4e4ff;
  background: #e5efff;
  border-radius: 15px;
  transform: rotate(-7deg);
  color: var(--blue);
}
.newsletter-art > .icon {
  width: 30px;
  height: 30px;
  stroke-width: 1.1;
}
.newsletter-art > span {
  position: absolute;
  top: -6px;
  right: -5px;
  font-size: 20px;
  color: #7a9ff4;
}
.newsletter-banner .eyebrow {
  font-size: 7px;
  letter-spacing: 1.4px;
}
.newsletter-banner h2 {
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #264574;
  margin: 9px 0 5px;
}
.newsletter-banner p {
  font-size: 10px;
  color: #8496b1;
  margin: 0;
}
.newsletter-banner .btn {
  margin-left: auto;
  white-space: nowrap;
  font-size: 11px;
  padding: 12px 18px;
}
.how-section {
  padding: 40px 0 30px;
}
.how-section .section-heading {
  margin-bottom: 26px;
}
.step-number {
  font-size: 10px;
  font-weight: 700;
  color: #6693e8;
  border-bottom: 2px solid #dae7ff;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 14px;
}
.how-section article h3 {
  font-size: 12px;
  letter-spacing: -0.15px;
  margin-bottom: 10px;
}
.how-section article p {
  font-size: 11px;
  line-height: 1.9;
  color: #8d99aa;
  max-width: 310px;
  margin: 0;
}
.methodology {
  border: 1px solid var(--line);
  padding: 15px 18px;
  background: white;
  border-radius: 8px;
  margin-top: 25px;
  color: #8190a6;
  font-size: 11px;
}
.methodology summary {
  font-weight: 550;
  color: #62738e;
}
.methodology p {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.9;
}
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 55px;
  margin: 8px 0 42px;
  padding: 42px;
  border: 1px solid #dfe9fa;
  border-radius: 12px;
  background:
    radial-gradient(circle at 3% 8%, rgba(36, 107, 253, 0.09), transparent 32%),
    #f8fbff;
}
.about-intro h2 {
  max-width: 390px;
  margin: 14px 0 16px;
  color: #213858;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -1px;
}
.about-intro > p {
  max-width: 460px;
  margin: 0;
  color: #71819a;
  font-size: 11px;
  line-height: 1.9;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 650;
  text-decoration: none;
}
.about-link:hover {
  color: #164ebf;
}
.about-link .icon {
  width: 14px;
  height: 14px;
}
.about-values {
  display: grid;
  gap: 12px;
}
.about-values article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 18px;
  border: 1px solid #e4ebf7;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.88);
}
.about-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #edf4ff;
  color: var(--blue);
}
.about-icon .icon {
  width: 20px;
  height: 20px;
}
.about-values h3 {
  margin: 1px 0 6px;
  color: #334b6c;
  font-size: 12px;
}
.about-values p {
  margin: 0;
  color: #8491a4;
  font-size: 10px;
  line-height: 1.75;
}
.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 65px;
  border-top: 1px solid var(--line);
  padding: 35px 0 42px;
}
.contact-copy h2 {
  font-size: 28px;
  line-height: 1.25;
  margin: 13px 0 16px;
  letter-spacing: -1px;
}
.contact-copy p {
  font-size: 11px;
  color: #8e9bad;
  max-width: 270px;
  line-height: 1.9;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8ea0ba;
  font-size: 9px;
  margin-top: 23px;
}
.contact-detail .icon {
  width: 15px;
  height: 15px;
}
.contact-form .form-control {
  font-size: 12px;
  padding: 11px 12px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.form-privacy {
  font-size: 9px;
  color: #9aa6b8;
  margin: 13px 0;
}
.inline-link {
  border: 0;
  background: none;
  padding: 0;
  font-size: inherit;
  color: #7395cc;
  text-decoration: underline;
}
.contact-form .btn {
  font-size: 10px;
  padding: 10px 17px;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 1.6;
  color: #7086a7;
  white-space: pre-line;
}
.form-status:empty {
  margin: 0;
}
.form-status.error {
  color: #bf494f;
}
.form-status.success {
  color: #288e74;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 25px 0 30px;
}
.footer .brand {
  font-size: 15px;
  letter-spacing: -0.6px;
  gap: 7px;
}
.footer > span {
  font-size: 8px;
  color: #a5afbe;
}
.footer > div {
  display: flex;
  gap: 19px;
  align-items: center;
  color: #8e9caf;
  font-size: 9px;
}
.footer button {
  border: 0;
  background: none;
  font-size: inherit;
  color: inherit;
  padding: 0;
}
.footer .back-to-top {
  min-height: 44px;
  padding: 9px 13px 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: #246bfd;
  border: 2px solid #246bfd;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  box-shadow: 0 7px 20px #246bfd35;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}
.footer .back-to-top strong {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #246bfd;
  background: #fff;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}
.footer .back-to-top:hover {
  color: #fff;
  background: #1457e6;
  border-color: #1457e6;
  box-shadow: 0 9px 24px #246bfd4d;
  transform: translateY(-2px);
}
.footer .back-to-top:focus-visible {
  outline: 3px solid #93b4ff;
  outline-offset: 3px;
}
.modal-content {
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 20px 70px #162b5422;
}
.modal-header {
  padding: 22px 25px;
  border-bottom-color: var(--line);
}
.modal-body {
  padding: 25px;
}
.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}
.subscribe-body {
  padding: 40px;
}
.modal-feature-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: var(--pale-blue);
  color: var(--blue);
  margin-bottom: 24px;
}
.modal-feature-icon .icon {
  width: 25px;
  height: 25px;
}
.subscribe-body h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 15px 0;
}
.subscribe-body > p {
  color: #8c99ac;
  font-size: 13px;
  margin-bottom: 25px;
}
.subscribe-body .form-control {
  min-height: 47px;
}
.subscribe-body .form-check {
  margin: 18px 0 22px;
  font-size: 11px;
  color: #8a98aa;
  line-height: 1.7;
}
.subscribe-body .form-check-input {
  margin-top: 4px;
}
.subscribe-footnote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: #9cabbf;
  margin-top: 20px;
}
.subscribe-footnote .icon {
  width: 13px;
  height: 13px;
}
.privacy-body p {
  font-size: 13px;
  color: #7c8ca3;
  line-height: 1.85;
}
.player-modal-dialog {
  max-width: 650px;
}
.breakdown-profile {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 24px;
}
.breakdown-profile .player-avatar {
  width: 50px;
  height: 55px;
  font-size: 16px;
}
.breakdown-profile h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.breakdown-profile p {
  font-size: 12px;
  color: #8d9bb0;
  margin: 0;
}
.breakdown-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}
.breakdown-summary > span {
  padding: 13px 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: white;
}
.breakdown-summary small {
  display: block;
  margin-bottom: 5px;
  color: #75849a;
  font-size: 10px;
  font-weight: 600;
}
.breakdown-summary strong {
  display: block;
  font:
    800 20px "Manrope",
    sans-serif;
  letter-spacing: -0.5px;
}
.breakdown-summary .summary-minutes {
  color: #246bfd;
  background: #f1f6ff;
}
.breakdown-summary .summary-apps {
  color: #7661c9;
  background: #f6f3ff;
}
.breakdown-summary .summary-starts {
  color: #258f82;
  background: #effaf7;
}
.breakdown-summary .summary-goals {
  color: #17815f;
  background: #effaf4;
}
.breakdown-summary .summary-assists {
  color: #8a55bd;
  background: #f8f1fd;
}
.breakdown-summary .summary-average {
  color: #b7771d;
  background: #fff8eb;
}
.breakdown-section-label {
  margin: 0 0 5px;
  color: #405878;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: #7385a0;
}
.breakdown-row > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breakdown-row i {
  width: 8px;
  height: 8px;
  border-radius: 3px;
}
.breakdown-row strong {
  color: #365780;
  text-align: right;
}
.breakdown-row strong small,
.breakdown-total strong small {
  display: block;
  margin-top: 3px;
  color: #8c9cb2;
  font-size: 9px;
  font-weight: 550;
  line-height: 1.6;
}
.meta-apps {
  color: #6552b8;
}
.meta-starts {
  color: #258f82;
}
.meta-goals {
  color: #17815f;
}
.meta-assists {
  color: #8a55bd;
}
.breakdown-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pale-blue);
  padding: 15px;
  border-radius: 8px;
  font-size: 12px;
  color: #4c7bc7;
  margin-top: 17px;
}
.breakdown-total strong {
  font-size: 22px;
  text-align: right;
}
.breakdown-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 11px;
}
.breakdown-stat-grid > span {
  padding: 11px 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #94a1b3;
  font-size: 8px;
  text-align: center;
}
.breakdown-stat-grid > span:nth-child(1) {
  border-color: #cfe0ff;
  background: #f4f8ff;
}
.breakdown-stat-grid > span:nth-child(2) {
  border-color: #cdece4;
  background: #f2faf8;
}
.breakdown-stat-grid > span:nth-child(3) {
  border-color: #f1dfb8;
  background: #fff9ee;
}
.breakdown-stat-grid > span:nth-child(4) {
  border-color: #f0cece;
  background: #fff5f5;
}
.breakdown-stat-grid > span:nth-child(1) strong {
  color: #246bfd;
}
.breakdown-stat-grid > span:nth-child(2) strong {
  color: #258f82;
}
.breakdown-stat-grid > span:nth-child(3) strong {
  color: #b7771d;
}
.breakdown-stat-grid > span:nth-child(4) strong {
  color: #bd4444;
}
.breakdown-stat-grid strong {
  display: block;
  margin-bottom: 3px;
  color: #3f5879;
  font-size: 14px;
}
.compare-modal-player {
  width: 100%;
  margin-top: 13px;
  font-size: 11px;
}
.breakdown-note {
  font-size: 10px;
  color: #9ba9bb;
  margin: 17px 0 0;
}
.site-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  padding: 13px 22px;
  background: #203c67;
  color: white;
  border-radius: 9px;
  box-shadow: 0 8px 35px #162b5426;
  z-index: 2000;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  max-width: 90%;
  text-align: center;
}
.site-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.noscript-notice {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: #fff1d0;
  color: #845500;
  text-align: center;
  z-index: 2000;
}
/* Laptop, tablet and mobile adjustments. Keep these after the main styles. */
@media (min-width: 1600px) {
  .page-content {
    padding-left: 50px;
    padding-right: 50px;
  }
  .hero {
    min-height: 335px;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-art {
    right: 50px;
  }
  .minute-ticket {
    top: 65px;
    left: 45px;
    transform: rotate(-7deg) scale(1.08);
  }
  .league-card strong {
    font-size: 12px;
  }
  .league-card {
    padding: 20px 17px;
  }
  .players-table td {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (max-width: 1250px) {
  :root {
    --sidebar: 205px;
  }
  .topbar {
    padding-left: 20px;
  }
  .brand {
    font-size: 19px;
  }
  .page-content {
    padding: 25px 25px 0;
  }
  .hero {
    padding: 30px;
    min-height: 290px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-art {
    right: -5px;
    width: 42%;
  }
  .minute-ticket {
    left: 0;
    top: 73px;
    width: 205px;
    padding: 16px;
  }
  .ticket-number {
    font-size: 68px;
  }
  .ticket-number .ticket-caption {
    font-size: 6px;
  }
  .floating-label {
    right: 10px;
    font-size: 6px;
  }
  .league-grid {
    gap: 8px;
  }
  .league-card {
    gap: 7px;
    padding: 14px 8px;
  }
  .league-card strong {
    font-size: 9px;
  }
  .league-emblem {
    width: 25px;
  }
  .stats-grid {
    gap: 9px;
  }
  .stat-card {
    padding: 16px 12px;
  }
  .stat-icon {
    width: 27px;
    height: 27px;
  }
  .stat-label {
    font-size: 9px;
  }
  .stat-card strong {
    font-size: 23px;
  }
  .stat-card strong.stat-player-name {
    font-size: 14px;
  }
  .stat-caption {
    font-size: 7px;
  }
  .players-table th,
  .players-table td {
    padding-left: 9px;
    padding-right: 9px;
  }
  .players-table .rank-col {
    padding-left: 16px;
  }
  .breakdown-col {
    display: none;
  }
  .players-table td.split-cell {
    display: none;
  }
  .competition-tabs button {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 9px;
  }
  .contact-section {
    gap: 35px;
  }
  .table-notes > .legend + span {
    display: none;
  }
  .newsletter-banner {
    gap: 17px;
    padding: 23px;
  }
  .newsletter-banner h2 {
    font-size: 17px;
  }
  .newsletter-banner .eyebrow {
    font-size: 6px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --header: 68px;
    --sidebar: 250px;
  }
  .topbar {
    padding: 0 23px;
  }
  .sidebar {
    top: 0 !important;
    z-index: 1045;
    border-right: 0;
  }
  .sidebar .offcanvas-body {
    padding-top: 22px;
  }
  .sidebar .offcanvas-header {
    padding: 24px 22px 10px;
  }
  .mobile-menu {
    display: inline-flex;
  }
  .topbar-right {
    gap: 12px;
  }
  .main-content {
    margin-left: 0;
  }
  .page-content {
    max-width: 950px;
    padding: 24px 28px 0;
  }
  .hero-art {
    width: 43%;
    right: 5px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .league-card strong {
    font-size: 10px;
  }
  .league-card {
    padding: 16px 10px;
  }
  .stats-grid {
    gap: 12px;
  }
  .stat-card {
    padding: 17px 14px;
  }
  .stat-caption {
    font-size: 8px;
  }
  .stat-card strong.stat-player-name {
    font-size: 16px;
  }
  .stat-icon {
    width: 30px;
    height: 30px;
  }
  .sidebar-bottom {
    margin-top: 30px;
  }
  .topbar-note {
    font-size: 10px;
  }
  .league-nav button {
    font-size: 13px;
  }
  .nav-item {
    font-size: 13px;
  }
  .table-notes {
    font-size: 8px;
  }
}
@media (max-width: 767px) {
  .topbar {
    padding: 0 18px;
  }
  .topbar-note {
    display: none;
  }
  .topbar .btn {
    padding: 9px 12px;
    font-size: 11px;
  }
  .topbar .brand {
    font-size: 19px;
  }
  .topbar .brand img {
    width: 30px;
    height: 30px;
  }
  .page-content {
    padding: 21px 20px 0;
  }
  .breadcrumb-row {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .season-stamp {
    display: none;
  }
  .hero {
    padding: 28px;
    min-height: 275px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero p {
    font-size: 11px;
    max-width: 290px;
  }
  .hero-art {
    right: -20px;
    width: 38%;
    opacity: 0.75;
  }
  .minute-ticket {
    width: 175px;
    top: 84px;
    padding: 13px;
    left: 6px;
  }
  .ticket-top {
    font-size: 6px;
    gap: 6px;
  }
  .ticket-clock {
    width: 27px;
    height: 27px;
  }
  .ticket-number {
    font-size: 61px;
  }
  .ticket-caption {
    display: none;
  }
  .ticket-bars {
    height: 22px;
    gap: 3px;
  }
  .ticket-bars i {
    width: 4px;
  }
  .ticket-bottom {
    font-size: 5px;
    letter-spacing: 1px;
  }
  .floating-label {
    top: 28px;
    right: 35px;
    font-size: 5px;
    padding: 9px;
  }
  .pitch {
    width: 280px;
    height: 200px;
    right: -80px;
  }
  .art-plus {
    right: 45px;
    bottom: 15px;
  }
  .hero .eyebrow {
    font-size: 6px;
    letter-spacing: 1.3px;
  }
  .league-section {
    padding: 25px 0;
  }
  .section-heading h2 {
    font-size: 14px;
  }
  .section-heading > span {
    font-size: 9px;
  }
  .league-grid {
    display: flex;
    gap: 9px;
    overflow: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
  }
  .league-card {
    flex: 0 0 149px;
    padding: 14px 10px;
  }
  .league-emblem {
    width: 28px;
  }
  .explorer-heading h2 {
    font-size: 22px;
  }
  .explorer-heading p {
    font-size: 10px;
  }
  .export-button {
    font-size: 9px;
    padding: 8px 10px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat-card {
    min-height: 112px;
    padding: 16px;
  }
  .stat-label {
    font-size: 10px;
  }
  .stat-card strong {
    font-size: 27px;
  }
  .stat-card strong.stat-player-name {
    font-size: 18px;
  }
  .stat-caption {
    font-size: 9px;
  }
  .stat-icon {
    width: 33px;
    height: 33px;
  }
  .competition-tabs {
    gap: 0;
  }
  .competition-tabs button {
    font-size: 10px;
    padding: 12px;
  }
  .data-notice {
    font-size: 8px;
  }
  .players-toolbar {
    padding: 17px 15px;
    flex-wrap: wrap;
  }
  .players-title h3 {
    font-size: 12px;
  }
  .search-field {
    width: 100%;
  }
  .search-field input {
    font-size: 11px;
  }
  .search-shortcut {
    display: none;
  }
  .players-table {
    min-width: 620px;
  }
  .players-table td {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .table-notes {
    line-height: 1.5;
  }
  .comparison-panel {
    padding: 20px;
  }
  .comparison-heading {
    align-items: start;
  }
  .comparison-controls {
    grid-template-columns: 1fr;
  }
  .versus-badge {
    margin: -3px auto;
  }
  .legend {
    gap: 9px;
  }
  .newsletter-banner {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 22px;
  }
  .newsletter-art {
    width: 45px;
    height: 48px;
    border-radius: 11px;
  }
  .newsletter-art > .icon {
    width: 25px;
    height: 25px;
  }
  .newsletter-banner .eyebrow {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .newsletter-banner h2 {
    font-size: 16px;
  }
  .newsletter-banner p {
    font-size: 10px;
  }
  .newsletter-banner .btn {
    grid-column: 2;
    justify-self: start;
    margin: 0;
    font-size: 10px;
    padding: 10px 14px;
  }
  .how-section {
    padding-top: 30px;
  }
  .how-section article {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 12px;
  }
  .step-number {
    grid-row: 1/3;
    margin: 0;
    align-self: start;
    width: 24px;
  }
  .how-section article h3 {
    font-size: 13px;
    margin: 2px 0 8px;
  }
  .how-section article p {
    max-width: none;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
  }
  .about-intro h2,
  .about-intro > p {
    max-width: none;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 28px;
  }
  .contact-copy h2 {
    font-size: 28px;
  }
  .contact-copy h2 br {
    display: none;
  }
  .contact-copy p {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .contact-detail {
    margin-top: 10px;
  }
  .contact-form label {
    font-size: 11px;
  }
  .contact-form .btn {
    font-size: 12px;
  }
  .form-privacy {
    font-size: 10px;
  }
  .footer {
    flex-wrap: wrap;
    padding: 22px 0;
    gap: 18px;
  }
  .footer > span {
    order: 3;
    width: 100%;
    text-align: center;
  }
  .footer .brand {
    font-size: 15px;
  }
  .footer > div {
    margin-left: auto;
  }
  .subscribe-body {
    padding: 32px;
  }
}
@media (max-width: 480px) {
  .page-content {
    padding: 18px 15px 0;
  }
  .hero {
    padding: 26px 23px;
    min-height: 294px;
  }
  .hero h1 {
    font-size: 41px;
    max-width: 230px;
    letter-spacing: -1.8px;
    margin-top: 15px;
  }
  .hero p {
    max-width: 230px;
    font-size: 10px;
    margin-bottom: 19px;
  }
  .desktop-break {
    display: none;
  }
  .hero-art {
    width: 33%;
    right: -35px;
    opacity: 0.5;
  }
  .minute-ticket {
    width: 136px;
    top: 126px;
    left: 12px;
    transform: rotate(-12deg);
    padding: 10px;
  }
  .ticket-top {
    font-size: 5px;
  }
  .ticket-top .ticket-star {
    display: none;
  }
  .ticket-clock {
    width: 20px;
    height: 20px;
    border-radius: 5px;
  }
  .ticket-clock .icon {
    width: 14px;
    height: 14px;
  }
  .ticket-number {
    font-size: 49px;
    margin: 5px 0;
  }
  .ticket-number > span:first-child {
    font-size: 30px;
  }
  .ticket-bottom {
    font-size: 4px;
    letter-spacing: 0.7px;
    padding-top: 7px;
  }
  .ticket-bars {
    height: 16px;
    margin-bottom: 6px;
  }
  .floating-label {
    display: none;
  }
  .pitch {
    right: -110px;
    top: 58px;
  }
  .art-plus {
    display: none;
  }
  .hero-link {
    font-size: 10px;
  }
  .section-heading > span {
    font-size: 8px;
  }
  .section-heading h2 {
    font-size: 13px;
  }
  .league-card {
    flex-basis: 142px;
  }
  .explorer-heading {
    align-items: start;
  }
  .explorer-heading h2 {
    font-size: 20px;
    max-width: 240px;
    line-height: 1.3;
  }
  .explorer-heading p {
    font-size: 9px;
    max-width: 210px;
  }
  .export-button {
    font-size: 0;
    padding: 9px;
    margin-top: 20px;
  }
  .export-button .icon {
    width: 16px;
    height: 16px;
  }
  .small-eyebrow {
    font-size: 6px;
  }
  .filters {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }
  .stats-grid {
    gap: 10px;
  }
  .stat-card {
    padding: 14px 12px;
  }
  .stat-card strong {
    font-size: 25px;
  }
  .stat-card strong.stat-player-name {
    font-size: 15px;
    line-height: 29px;
  }
  .stat-label {
    font-size: 9px;
  }
  .stat-caption {
    font-size: 7px;
  }
  .stat-icon {
    width: 27px;
    height: 27px;
    border-radius: 8px;
  }
  .stat-icon .icon {
    width: 15px;
    height: 15px;
  }
  .data-notice {
    align-items: start;
    font-size: 8px;
  }
  .data-notice .icon {
    margin-top: 1px;
  }
  .players-toolbar {
    gap: 12px;
    padding: 14px 13px;
  }
  .players-title {
    gap: 7px;
  }
  .players-title h3 {
    font-size: 12px;
  }
  .table-footer {
    padding: 13px;
    font-size: 8px;
  }
  .table-notes {
    font-size: 7px;
  }
  .comparison-panel {
    margin-top: 27px;
    padding: 15px;
  }
  .comparison-heading {
    display: block;
  }
  .comparison-heading h3 {
    font-size: 18px;
  }
  .comparison-competition {
    width: 100%;
    margin-top: 15px;
  }
  .comparison-target-grid {
    grid-template-columns: 1fr;
  }
  .comparison-player-heads {
    padding: 13px;
    gap: 8px;
  }
  .comparison-player-heads .player-avatar {
    display: none;
  }
  .comparison-metric {
    padding: 8px 13px;
  }
  .breakdown-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-banner {
    padding: 20px 16px;
    gap: 12px;
    margin-top: 26px;
  }
  .newsletter-banner h2 {
    font-size: 16px;
    line-height: 1.35;
  }
  .newsletter-banner .eyebrow {
    font-size: 5px;
    letter-spacing: 0.9px;
  }
  .newsletter-banner p {
    font-size: 9px;
  }
  .newsletter-banner .btn {
    font-size: 10px;
  }
  .contact-copy h2 {
    font-size: 24px;
  }
  .subscribe-body {
    padding: 30px 25px;
  }
  .subscribe-body h2 {
    font-size: 29px;
  }
  .modal-dialog {
    margin: 12px;
  }
  .legend {
    row-gap: 7px;
  }
  .form-status {
    font-size: 11px;
  }
}
/* On phones, put the player's minutes directly in view. Extra statistics
   remain available in the CSV; competition details open from the player. */
@media (max-width: 575px) {
  .players-table {
    min-width: 0;
  }
  .players-table .rank-col,
  .players-table .position-col,
  .players-table .starts-col,
  .players-table .average-col {
    display: none;
  }
  .players-table th,
  .players-table td {
    padding-left: 9px;
    padding-right: 9px;
  }
  .player-name-button {
    max-width: 110px;
    white-space: normal;
  }
  .player-cell {
    gap: 8px;
  }
  .player-avatar {
    width: 30px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .topbar .brand {
    font-size: 17px;
    gap: 6px;
  }
  .topbar .brand img {
    width: 27px;
    height: 27px;
  }
  .topbar-right {
    gap: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* ======================================================================
   READABLE TYPE SCALE
   Keep everyday copy comfortably legible on phones and larger screens.
   Decorative artwork retains its compact labels above; the rules below
   enlarge navigation, controls, statistics, supporting copy and forms.
   ====================================================================== */
body {
  font-size: 16px;
}
.btn {
  font-size: 15px;
}
.topbar-note {
  font-size: 13px;
}
.nav-label,
.small-eyebrow,
.eyebrow {
  font-size: 11px;
}
.nav-item,
.league-nav button {
  font-size: 14px;
}
.sidebar-promo h3 {
  font-size: 15px;
}
.sidebar-promo p,
.sidebar-promo button {
  font-size: 13px;
}
.sidebar-footnote {
  font-size: 11px;
}
.breadcrumb-row,
.season-stamp {
  font-size: 12px;
}
.hero p {
  font-size: 15px;
}
.hero-link {
  font-size: 14px;
}
.section-heading h2 {
  font-size: 20px;
}
.section-heading > span {
  font-size: 13px;
}
.league-card strong {
  font-size: 13px;
}
.league-card small {
  font-size: 11px;
}
.explorer-heading p,
.comparison-heading p {
  font-size: 14px;
}
.export-button,
.competition-tabs button {
  font-size: 13px;
}
.filters label,
.contact-form label,
#subscribe-form > label,
.comparison-side label,
.comparison-competition {
  font-size: 14px;
}
.form-select,
.form-control,
.contact-form .form-control {
  font-size: 15px;
}
.form-control::placeholder {
  font-size: 14px;
}
.data-notice,
.table-footer,
.pagination-controls,
.table-notes {
  font-size: 12px;
}
.stat-label {
  font-size: 13px;
}
.stat-caption {
  font-size: 11px;
}
.players-title h3 {
  font-size: 16px;
}
.count-badge,
.club-badge {
  font-size: 10px;
}
.search-field input {
  font-size: 14px;
}
.search-shortcut {
  font-size: 11px;
}
.players-table th,
.players-table th button > span {
  font-size: 12px;
}
.players-table td,
.player-name-button {
  font-size: 14px;
}
.players-table td.rank-col,
.player-nationality,
.position-pill,
.minutes-number small {
  font-size: 11px;
}
.minutes-number {
  font-size: 15px !important;
}
.comparison-side-label {
  font-size: 11px;
}
.comparison-side > p,
.comparison-player-heads small,
.comparison-metric > span {
  font-size: 12px;
}
.comparison-loading,
.comparison-player-heads strong,
.comparison-metric > strong {
  font-size: 14px;
}
.newsletter-banner .eyebrow,
.step-number {
  font-size: 11px;
}
.newsletter-banner p,
.newsletter-banner .btn,
.how-section article p,
.methodology,
.methodology p,
.about-intro > p,
.about-values p,
.contact-copy p,
.form-privacy,
.form-status {
  font-size: 14px;
}
.how-section article h3,
.about-values h3 {
  font-size: 16px;
}
.about-link {
  font-size: 14px;
}
.contact-detail,
.contact-form .btn {
  font-size: 13px;
}
.footer > span,
.footer > div {
  font-size: 12px;
}
.subscribe-body > p,
.subscribe-body .form-check,
.privacy-body p,
.breakdown-profile p,
.breakdown-row,
.breakdown-summary,
.breakdown-note,
.modal-status {
  font-size: 14px;
}

@media (max-width: 575px) {
  .breakdown-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .breakdown-row {
    align-items: flex-start;
    gap: 12px;
  }
  .about-section {
    padding: 24px 18px;
  }
  .about-intro h2 {
    font-size: 25px;
  }
  .about-values article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 15px 13px;
  }
  .about-icon {
    width: 38px;
    height: 38px;
  }
  .players-table td,
  .player-name-button {
    font-size: 13px;
  }
  .players-table th,
  .minutes-number small,
  .player-nationality,
  .position-pill {
    font-size: 10px;
  }
  .minutes-number {
    font-size: 14px !important;
  }
}
