.athletes-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px 40px 80px;
  color: #0e0e0c;
}

.athletes-hero {
  background:
    radial-gradient(circle at 90% 20%, rgba(26,78,156,.18), transparent 34%),
    #0e0e0c;
  color: white;
  border-radius: 20px;
  padding: 46px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
}

.athletes-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

.athletes-hero h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(70px, 9vw, 120px);
  line-height: .9;
  margin-top: 12px;
}

.athletes-hero p {
  max-width: 620px;
  color: rgba(255,255,255,.58);
  line-height: 1.6;
}

.athletes-hero-stat {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 22px 30px;
  min-width: 160px;
}

.athletes-hero-stat strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 58px;
  line-height: 1;
  color: #f5b300;
}

.athletes-hero-stat span {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

.athletes-tools {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.athletes-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.athletes-search input {
  border: 1.5px solid #e0ddd5;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  outline: none;
}

.athletes-search input:focus {
  border-color: #c8200e;
}

.athletes-search button {
  border: none;
  background: #c8200e;
  color: white;
  border-radius: 14px;
  padding: 0 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.athletes-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.athletes-pill {
  text-decoration: none;
  color: #5a5850;
  border: 1px solid #e0ddd5;
  background: #f8f7f2;
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.athletes-pill.active,
.athletes-pill:hover {
  background: #0e0e0c;
  color: white;
  border-color: #0e0e0c;
}

.athletes-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 14px;
}

.athlete-card {
  text-decoration: none;
  color: #0e0e0c;
  border: 1.5px solid #e0ddd5;
  background: white;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: .18s ease;
}

.athlete-card:hover {
  transform: translateY(-2px);
  border-color: #cccab8;
  box-shadow: 0 12px 30px rgba(0,0,0,.07);
}

.athlete-card__avatar {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  background: #0e0e0c;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.athlete-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.athlete-card__avatar span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 34px;
}

.athlete-card__number {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c8200e;
}

.athlete-card h3 {
  margin-top: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.athlete-card p {
  margin-top: 6px;
  font-size: 13px;
  color: #5a5850;
}

.athlete-card__disciplines {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.athlete-card__disciplines span {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 8px;
  background: #f8f7f2;
  border: 1px solid #e0ddd5;
  color: #5a5850;
}

.athlete-card__disciplines .discipline-bike {
  color: #c8200e;
}

.athlete-card__disciplines .discipline-car {
  color: #1a4e9c;
}

.athlete-card__disciplines .discipline-kart {
  color: #d49a00;
}

.athlete-card__arrow {
  font-size: 22px;
  color: #8a887e;
}

@media (max-width: 800px) {
  .athletes-page {
    padding: 28px 20px 60px;
  }

  .athletes-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }

  .athletes-search {
    grid-template-columns: 1fr;
  }

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

  .athlete-card__arrow {
    display: none;
  }
}

.athletes-hero{
  position:relative;
  overflow:hidden;
  background:#0e0e0c;
  border-radius:22px;
  padding:44px;
  margin-bottom:28px;
}

.athletes-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at left bottom, rgba(212,154,0,.18), transparent 40%),
    radial-gradient(circle at right top, rgba(255,255,255,.04), transparent 40%);
}

.athletes-hero-wm{
  position:absolute;
  right:-40px;
  top:-20px;
  font-size:260px;
  font-weight:900;
  line-height:.8;
  color:rgba(255,255,255,.03);
  text-transform:uppercase;
  pointer-events:none;
}

.athletes-hero-inner{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
}

.athletes-title{
  display:flex;
  flex-direction:column;
  line-height:.85;
  margin:12px 0;
}

.athletes-title .white{
  color:white;
}

.athletes-title .gold{
  color:#D49A00;
}

.athletes-title span{
  font-size:clamp(68px,8vw,130px);
  font-weight:900;
}

.athletes-subtitle{
  max-width:520px;
  color:rgba(255,255,255,.62);
  line-height:1.6;
}

.athletes-hero-stat-card{
  min-width:220px;
  padding:24px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.ahs-label{
  font-size:12px;
  text-transform:uppercase;
  color:rgba(255,255,255,.45);
}

.ahs-number{
  font-size:62px;
  font-weight:900;
  color:#D49A00;
  line-height:1;
  margin:10px 0;
}

.ahs-meta{
  color:rgba(255,255,255,.5);
  font-size:14px;
}

.athletes-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(26, 78, 156, 0.22), transparent 34%),
    radial-gradient(circle at 8% 80%, rgba(26, 138, 60, 0.16), transparent 36%),
    #0e0e0c;
  color: #fff;
  border-radius: 0 0 22px 22px;
  padding: 58px 56px 48px;
  min-height: 420px;
}

.athletes-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(
    180deg,
    #c8200e 0% 25%,
    #1a8a3c 25% 50%,
    #d49a00 50% 75%,
    #1a4e9c 75% 100%
  );
}

.athletes-hero__wm {
  position: absolute;
  right: -40px;
  top: -28px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 310px;
  line-height: 0.8;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
  white-space: nowrap;
}

.athletes-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 54px;
  align-items: end;
}

.athletes-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 18px;
}

.athletes-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(78px, 8.5vw, 124px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  margin: 0;
}

.athletes-title span {
  display: block;
}

.athletes-title__white {
  color: #fff;
}

.athletes-title__gold {
  color: #f5b300;
}

.athletes-subtitle {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255,255,255,0.58);
  font-size: 16px;
  line-height: 1.6;
}

.athletes-hero__stat-card {
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

.athletes-stat-label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.athletes-hero__stat-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 72px;
  line-height: 1;
  color: #f5b300;
}

.athletes-hero__stat-card span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.52);
}

@media (max-width: 900px) {
  .athletes-hero {
    padding: 42px 24px;
    min-height: auto;
  }

  .athletes-hero__inner {
    grid-template-columns: 1fr;
  }

  .athletes-hero__wm {
    font-size: 160px;
  }
}

.athletes-calendar-hero::before {
  content: "ATHLETES";
}

.athletes-calendar-hero .calendar-hero__title .accent {
  color: #f5b300;
}

.athletes-calendar-hero .calendar-hero__title .ghost {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.16);
}

/* ATHLETES FLAGSHIP HERO OVERRIDES */

.athletes-page {
  max-width: none;
  padding: 0 0 80px;
}

.athletes-page .calendar-hero {
  border-radius: 0;
  margin: 0;
  width: 100%;
}

.athletes-page .calendar-hero::before {
  content: "ATHLETES";
}

.athletes-page .calendar-hero__inner,
.athletes-page .calendar-hero-stats {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.athletes-page .calendar-hero__title .accent {
  color: #f5b300;
}

.athletes-page .calendar-hero__title .ghost {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.16);
}

.athletes-tools,
.athletes-grid {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.athletes-tools {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .athletes-tools,
  .athletes-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.athletes-pagination {
  max-width: 1440px;
  margin: 34px auto 80px;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.athletes-page-link {
  text-decoration: none;
  background: #0e0e0c;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.athletes-page-status {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a887e;
}

.athlete-card__standing {
  margin-top: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.athlete-card__standing span {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(212,154,0,.1);
  border: 1px solid rgba(212,154,0,.25);
  color: #9a6b00;
}

.athlete-card__machine {
  font-size: 12px;
  font-weight: 700;
  opacity: .8;
  margin-bottom: 6px;
}

.athlete-card__standing {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.standing-rank {
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 11px;
}

.standing-points {
  background: #d4a100;
  color: #111;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
}

.standing-wins {
  background: rgba(0,0,0,.06);
  color: #111;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 10px;
}

.standing-move.up {
  background: rgba(0,180,80,.1);
  color: #0b8f40;
  padding: 6px 8px;
  border-radius: 999px;
  font-weight: 800;
}

.standing-move.down {
  background: rgba(220,20,60,.1);
  color: #c1121f;
  padding: 6px 8px;
  border-radius: 999px;
  font-weight: 800;
}

.athletes-sort-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.athletes-sort-tab {
  text-decoration: none;
  border-radius: 999px;
  padding: 9px 15px;
  background: #fff;
  border: 1px solid #e0ddd5;
  color: #5a5850;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.athletes-sort-tab.active,
.athletes-sort-tab:hover {
  background: #0e0e0c;
  color: #fff;
  border-color: #0e0e0c;
}

.athletes-featured {
  max-width: 1440px;
  margin: 34px auto 0;
  padding: 0 40px;
}

.athletes-featured h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 34px;
  letter-spacing: .02em;
  margin-bottom: 14px;
}


.athletes-featured-row::-webkit-scrollbar {
  height: 8px;
}

.athletes-featured-row::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.12);
  border-radius: 999px;
}

.athletes-feature-card {
  min-width: 320px;
  border-radius: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(245,179,0,.18), transparent 35%),
    linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  color: white;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}

.athletes-feature-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}

.athletes-feature-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: #f5b300;
  color: #111;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
}

.athletes-feature-card small {
  color: #8a887e;
  font-size: 12px;
}

.athletes-feature-card.is-hot {
  border-color: rgba(200,32,14,.25);
}

.athletes-feature-card.is-mover {
  border-color: rgba(26,138,60,.25);
}

.feature-athlete-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
}

.athletes-feature-card.is-leader {
  border-left: 4px solid #f5b300;
}

.athletes-feature-card.is-hot {
  border-left: 4px solid #ff4d00;
}

.athletes-feature-card.is-mover {
  border-left: 4px solid #1db954;
}

.athletes-featured-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.athletes-feature-card {
  min-width: 320px;
  border-radius: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(245,179,0,.18), transparent 35%),
    linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
}

.feature-athlete-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.feature-athlete-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
}

.athletes-feature-card span {
  display: inline-flex;
  width: fit-content;
  background: #f5b300;
  color: #111;
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.athletes-feature-card small {
  display: block;
  color: rgba(255,255,255,.52);
  margin-top: 4px;
}

.athletes-feature-card.is-leader { border-left: 4px solid #f5b300; }
.athletes-feature-card.is-hot { border-left: 4px solid #ff4d00; }
.athletes-feature-card.is-mover { border-left: 4px solid #1db954; }


