/* Sports page — geometry from millennialbet-sports (1440) / -mobile (390) */

/* ============ intro ============ */
.sports-intro { background: var(--ink); }
.sports-intro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 353px;
  padding-block: 64px;
}
.sports-intro__left { display: flex; flex-direction: column; gap: 16px; width: 620px; flex: none; }
.sports-intro__title { display: flex; flex-direction: column; }
.sports-intro__title-lead {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 81.6px;
  letter-spacing: -4px;
  color: var(--white);
}
.sports-intro__title-sub {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1px;
  color: var(--red);
}

.sport-index { display: flex; flex-direction: column; gap: 12px; width: 520px; flex: none; }
.sport-index__row { display: flex; gap: 8px; }
.sport-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 39px;
  padding: 12px 20px;
  background: var(--surface);
  border-radius: var(--r-8);
  box-shadow: inset 0 0 0 1px var(--line-dark);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 15.23px;
  color: var(--white);
  transition: background var(--t), box-shadow var(--t), color var(--t);
}
.sport-chip:hover { box-shadow: inset 0 0 0 1px var(--red); color: var(--red); }
.sport-chip--on { background: var(--red); box-shadow: inset 0 0 0 1px var(--red); color: var(--white); }
.sport-chip--on:hover { background: var(--red-dark); color: var(--white); }
.sport-chip--sm { min-height: 38px; padding: 12px 16px; font-size: 13px; line-height: 14.14px; color: var(--slate); }
.sport-chip--outline { box-shadow: inset 0 0 0 1px var(--red); color: var(--red-text); }

/* ============ board ============ */
.board__inner { display: flex; align-items: flex-start; gap: 48px; padding-block: 80px; }
.board__main { display: flex; flex-direction: column; gap: 32px; flex: 1; min-width: 0; }
.board__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.board__meta { display: flex; align-items: center; gap: 16px; }
.board__sort { font-size: 13px; line-height: 17px; color: var(--grey); }

.board__list {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-16);
  box-shadow: inset 0 0 0 1px var(--line-light);
  overflow: hidden;
}
.board-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 98px;
  padding: 24px;
  box-shadow: inset 0 -1px 0 var(--line-light);
}
.board-row:last-child { box-shadow: none; }
.board__empty {
  padding: 32px 24px;
  font-size: 15px;
  line-height: 24px;
  color: var(--grey);
}
.board__empty a {
  color: var(--red-text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.board-row__main { display: flex; flex-direction: column; gap: 6px; width: 380px; flex: none; }
.board-row__meta { display: flex; align-items: center; gap: 8px; }
.board-row__sport {
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 13.06px;
  color: var(--red-text);
}
.board-row__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--grey); flex: none; }
.board-row__when { font-size: 12px; font-weight: 500; line-height: 16px; color: var(--grey); }
.board-row__teams {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 20px;
  color: var(--ink-soft);
}
.board-row__more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  width: 120px;
  flex: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
  color: var(--red-text);
  transition: opacity var(--t);
}
.board-row__more:hover { text-decoration: underline; text-underline-offset: 3px; }
.board-row__odds { display: flex; align-items: center; gap: 12px; flex: none; }

.odd--named {
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
  padding: 8px 16px;
  border: 0;
  border-radius: var(--r-8);
  background: var(--bone);
  box-shadow: inset 0 0 0 1px var(--line-light);
}
.odd--named .odd__label {
  font-size: 11px;
  font-weight: 500;
  line-height: 14.3px;
  color: var(--grey);
  text-transform: uppercase;
}
.odd--named .odd__price {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 20px;
  color: var(--ink-soft);
}
.odd--named:hover { box-shadow: inset 0 0 0 1px var(--red); }
.odd--named.is-picked { background: var(--red); box-shadow: none; }
.odd--named.is-picked .odd__label,
.odd--named.is-picked .odd__price { color: var(--white); }

/* ============ featured competition ============ */
.featured__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 652px;
  padding-block: 96px;
}
.featured__info { display: flex; flex-direction: column; gap: 32px; width: 520px; flex: none; }
.featured__titles { display: flex; flex-direction: column; gap: 12px; }
.featured__title {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 87.04px;
  letter-spacing: -2px;
  color: var(--white);
}
.featured__sub { font-size: 18px; font-weight: 500; line-height: 23.4px; color: var(--slate); }
.featured__match { display: flex; flex-direction: column; gap: 12px; }
.featured__match-name { font-size: 20px; font-weight: 700; line-height: 26px; color: var(--white); }
.featured__match-when { font-size: 15px; line-height: 20px; color: var(--slate); }
.featured__link {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 16.32px;
  color: var(--red-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.featured__link:hover { color: var(--white); }

.featured__photo {
  position: relative;
  width: 720px;
  height: 460px;
  flex: none;
  border-radius: var(--r-24);
  box-shadow: inset 0 0 0 1px var(--line-dark);
}
.featured__photo picture, .featured__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-24);
}
.market-panel {
  position: absolute;
  left: -60px;
  top: 334px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 340px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--r-16);
  box-shadow: inset 0 0 0 1.5px var(--red), 0 16px 32px -4px rgba(0, 0, 0, .6);
}
.market-panel__title {
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 13.06px;
  letter-spacing: 1px;
  color: var(--slate);
}
.market-panel__odds { display: flex; gap: 8px; }
.odd--dark {
  flex: 1;
  min-width: 0;
  gap: 2px;
  padding: 8px;
  border-radius: var(--r-6);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-dark);
}
.odd--dark .odd__label { font-size: 11px; font-weight: 600; line-height: 14.3px; color: var(--slate); }
.odd--dark .odd__price { font-family: var(--font-display); font-size: 16px; line-height: 17.41px; color: var(--white); }
.odd--dark:hover { box-shadow: inset 0 0 0 1px var(--red); }
.odd--dark.is-picked { background: var(--red); box-shadow: none; }
.odd--dark.is-picked .odd__label, .odd--dark.is-picked .odd__price { color: var(--white); }
.market-panel__more { font-size: 12px; font-weight: 700; line-height: 16px; color: var(--red-text); }

/* ============ sport strip ============ */
.sport-strip__inner { display: flex; gap: 24px; padding: 40px 0 80px; }
.strip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 240px;
  padding: 24px;
  border-radius: var(--r-16);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  transition: transform var(--t), box-shadow var(--t);
}
.strip-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 10, 15, .35) 0%, rgba(9, 10, 15, .8) 100%);
}
.strip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-panel); }
.strip-card__name { font-family: var(--font-display); font-size: 24px; line-height: 26.11px; }
.strip-card__link { font-family: var(--font-display); font-size: 13px; line-height: 14.14px; color: var(--red-text); }

/* ============ mobile ============ */
@media (max-width: 1199px) {
  .sports-intro__inner { flex-direction: column; align-items: stretch; gap: 24px; min-height: 0; padding-block: 32px; }
  .sports-intro__left { width: auto; }
  .sports-intro__title-lead { font-size: 52px; line-height: 44px; letter-spacing: -2px; }
  .sports-intro__title-sub { font-size: 28px; line-height: 30px; }
  .sport-index { width: auto; }
  .sport-index__row { flex-wrap: wrap; }
  .sport-chip { min-height: 44px; font-size: 13px; }

  .board__inner { flex-direction: column; gap: 24px; padding-block: 32px; }
  .board__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .board-row { flex-direction: column; align-items: stretch; gap: 16px; min-height: 0; padding: 16px; }
  .board-row__main { width: auto; }
  .board-row__odds { gap: 8px; }
  .odd--named { flex: 1; min-width: 0; }

  .featured__inner { flex-direction: column; align-items: stretch; gap: 32px; min-height: 0; padding-block: 32px; }
  .featured__info { width: auto; gap: 20px; }
  .featured__title { font-size: 48px; line-height: 52px; }
  .featured__photo { width: auto; height: 280px; }
  .market-panel { position: static; width: auto; margin-top: -40px; }

  .sport-strip__inner { flex-direction: column; gap: 16px; padding: 0 0 32px; }
  .strip-card { min-height: 180px; padding: 20px; }
}
