:root {
  --blue-dark: #143858;
  --blue-main: #2b5c86;
  --blue-soft: #eaf2f8;
  --blue-light: #f3f7fb;

  --bg: #f6f8fb;
  --card: #ffffff;
  --border: #e3ebf2;

  --dark-bg: #0f2233;
  --dark-card: #182c3f;
  --dark-card-2: #20374d;

  --live-blue: #4da3ff;
  --accent: #2ecc71;

  --text: #0f2233;
  --muted: #7b8794;
  --white: #ffffff;

  --shadow-soft: 0 8px 22px rgba(20, 56, 88, 0.08);
  --shadow-premium: 0 14px 34px rgba(20, 56, 88, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(43, 92, 134, 0.08), transparent 34%),
    var(--bg);
  color: var(--text);
  padding-bottom: 120px;
}

/* =========================
   LEAGUE SLIDER
========================= */

.sports-slider {
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.sports-slider::-webkit-scrollbar {
  display: none;
}

.league-card {
  min-width: 120px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue-dark);
  box-shadow: var(--shadow-soft);
}

.league-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* =========================
   QUICK ACTIONS
========================= */

.quick-actions {
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.quick-actions a {
  text-decoration: none;
  color: var(--text);
}

.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 900;
  color: var(--text);
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.9), transparent 32%),
    linear-gradient(135deg, var(--blue-soft), #ffffff);
  color: var(--blue-dark);
  border: 1px solid rgba(20, 56, 88, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(20, 56, 88, 0.10);
}

/* =========================
   FILTERS
========================= */

.sporty-filters {
  display: flex;
  gap: 7px;
  padding: 10px;
  background: var(--bg);
}

.filter {
  flex: 1;
  background: var(--card);
  padding: 10px 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 850;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(20, 56, 88, 0.04);
}

.filter.active {
  border-color: rgba(20, 56, 88, 0.28);
  color: var(--blue-dark);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--blue-light) 100%);
  box-shadow:
    inset 0 3px 0 var(--blue-dark),
    0 8px 18px rgba(20, 56, 88, 0.08);
}

/* =========================
   LIVE & UPCOMING
========================= */

.live-section {
  background:
    radial-gradient(circle at top left, rgba(77, 163, 255, 0.10), transparent 32%),
    linear-gradient(180deg, var(--dark-bg), #0b1b2a);
  padding: 10px;
}

.live-title {
  color: var(--white);
  font-weight: 950;
  margin: 6px 4px 10px;
  letter-spacing: -0.2px;
}

.live-card {
  background:
    linear-gradient(180deg, var(--dark-card), #12283b);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  color: var(--white);
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}

.live-top {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  display: flex;
  gap: 8px;
}

.live-time {
  color: var(--live-blue);
  font-weight: 900;
}

.live-body {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.teams {
  flex: 1;
}

.team {
  margin: 4px 0;
  font-weight: 750;
}

.odds {
  display: flex;
  gap: 6px;
}

.odd-box {
  background:
    linear-gradient(180deg, #f8fbff 0%, var(--blue-soft) 100%);
  color: var(--blue-dark);
  padding: 10px 12px;
  border-radius: 9px;
  min-width: 64px;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(20, 56, 88, 0.10);
  font-weight: 900;
  transition:
    background-color 0.15s ease,
    transform 0.1s ease,
    box-shadow 0.15s ease;
  position: relative;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
}

.odd-box span {
  color: var(--blue-main);
  font-weight: 950;
}

.odd-box.selected {
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main)) !important;
  color: var(--white) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.20),
    0 8px 18px rgba(20, 56, 88, 0.22);
}

.odd-box.selected span {
  color: var(--white) !important;
  font-weight: 950;
}

.odd-box:active {
  transform: scale(0.97);
}

/* UPCOMING */

.live-section.upcoming {
  background: var(--bg);
}

.live-section.upcoming .live-card {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.live-section.upcoming .odd-box {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.live-section.upcoming .odd-box span {
  color: var(--blue-dark);
}

/* =========================
   WINNERS
========================= */

.winners-section {
  background: var(--card);
  padding: 16px 14px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.winners-title {
  font-size: 20px;
  font-weight: 950;
  color: var(--blue-dark);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.winners-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.winners-scroll::-webkit-scrollbar {
  display: none;
}

.winner-card {
  min-width: 240px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(135deg, var(--blue-dark), #0f2233);
  color: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-premium);
}

/* ===============================
   TITANSBET FOOTER
================================ */

.site-footer {
  width: 100%;
  background: var(--blue-dark);
  color: #cfd8e3;
  margin-top: 20px;
}

/* ===== 18+ BAR ===== */

.footer-age {
  background: #eef3f8;
  color: #5f6b78;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 13px;
  border-top: 1px solid var(--border);
}

.age-icon {
  background: var(--blue-dark);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.age-text {
  font-weight: 850;
  font-size: 14px;
  color: var(--text);
}

.footer-copy {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}

/* ===== FOOTER BODY ===== */

.footer-body {
  background:
    radial-gradient(circle at top, rgba(77, 163, 255, 0.12), transparent 36%),
    linear-gradient(180deg, var(--blue-dark), #071724);
  padding: 36px 16px 140px;
  text-align: center;
}

/* ===== PARTNERS ===== */

.footer-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.partner-text {
  font-weight: 850;
  color: #8ec5ff;
}

.divider {
  color: rgba(255,255,255,0.38);
}

.league-logo {
  height: 36px;
}

/* ===== TAGLINE ===== */

.footer-tagline {
  font-size: 18px;
  font-weight: 750;
  margin: 18px 0 22px;
  color: var(--white);
}

/* ===== PAYMENT METHODS ===== */

.footer-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 10px;
}

.footer-payments {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-payments img {
  height: 28px;
  background: var(--white);
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* ===== LINKS ===== */

.footer-links {
  margin-bottom: 18px;
}

.footer-links a {
  color: #8ec5ff;
  margin: 0 8px;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 750;
}

/* ===== LEGAL TEXT ===== */

.footer-legal {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
  margin: 0;
}

/* ===============================
   BOTTOM NAV
================================ */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(20, 56, 88, 0.12);
  box-shadow: 0 -10px 28px rgba(20, 56, 88, 0.12);
  z-index: 1000;
}

.bottom-nav a {
  flex: 1;
  text-decoration: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.bottom-nav a i,
.bottom-nav a img {
  font-size: 20px;
  height: 20px;
  color: var(--muted);
  transition: all 0.2s ease;
}

.bottom-nav a.active {
  color: var(--blue-dark);
  font-weight: 950;
}

.bottom-nav a.active i,
.bottom-nav a.active img {
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.bottom-nav a:hover {
  color: var(--blue-main);
}

/* ===============================
   PAGE OFFSET
================================ */

#page-content {
  padding-bottom: 150px;
}

/* =========================
   LIVE / UPCOMING TABS
========================= */

.sporty-tabs,
.bets-tabs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.sporty-tab,
.bets-tab {
  flex: 1;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 900;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--blue-light);
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s ease;
}

.sporty-tab.active,
.bets-tab.active {
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
  border-color: var(--blue-dark);
  box-shadow: 0 8px 18px rgba(20, 56, 88, 0.18);
}

.sporty-tab:active,
.bets-tab:active {
  transform: scale(0.97);
}

.league-name {
  font-size: 12px;
  font-weight: 850;
  color: #8ec5ff;
  margin-bottom: 4px;
}

.live-score {
  margin-left: auto;
  font-weight: 950;
  color: var(--live-blue);
}

/* =========================
   MORE MARKETS
========================= */

.more-markets-row {
  text-align: center;
  margin: 8px 0;
}

.more-markets-btn {
  background: var(--white);
  border: 1.5px solid var(--blue-dark);
  color: var(--blue-dark);
  font-weight: 850;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.more-toggle {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  font-weight: 850;
  cursor: pointer;
  background: var(--blue-light);
  border-top: 1px solid var(--border);
}

.more-markets {
  display: none;
  padding: 10px;
  background: #fbfdff;
}

.more-markets.open {
  display: block;
}

.more-market-btn {
  display: inline-block;
  margin-top: 10px;
  text-align: center;
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(20, 56, 88, 0.16);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.back-btn {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue-main);
  font-weight: 750;
  text-decoration: none;
}

/* =========================
   MATCH PAGE
========================= */

.match-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
  font-weight: 750;
}

.match-header a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
}

.match-container {
  padding: 12px;
}

.match-card {
  background: var(--card);
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  overflow: hidden;
}

.match-teams {
  padding: 12px;
  font-weight: 850;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.market-title {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 800;
  background: var(--blue-light);
  border-top: 1px solid var(--border);
  color: var(--blue-dark);
}

.market-odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.market-odds.two {
  grid-template-columns: repeat(2, 1fr);
}

.market-odds .odd-box {
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  background: var(--blue-light);
  border: 1px solid var(--border);
}

.market-odds .odd-box span {
  font-weight: 900;
  font-size: 15px;
  color: var(--blue-dark);
}

.market-odds .odd-box.selected {
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
}

.market-odds .odd-box.selected span,
.market-odds .odd-box.selected small {
  color: var(--white);
}

/* Market text visibility */

.market-card .odd-box small,
.market-grid .odd-box small {
  color: var(--white) !important;
  font-weight: 750;
}

.market-card .odd-box span,
.market-grid .odd-box span {
  color: var(--white) !important;
  font-weight: 900;
}

.market-card .odd-box,
.market-grid .odd-box {
  background:
    linear-gradient(180deg, var(--dark-card-2), var(--dark-card));
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}

.market-card .odd-box:hover,
.market-grid .odd-box:hover {
  background: var(--blue-main);
}

.market-card .odd-box.selected,
.market-grid .odd-box.selected {
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main)) !important;
  border-color: var(--blue-main);
}

/* =========================
   MATCH PAGE HEADER PRO
========================= */

.market-header.premium {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 32%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-premium);
}

.market-header.premium .back-icon {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
}

.market-header.premium .market-title {
  font-size: 15px;
  font-weight: 750;
  color: var(--white);
  background: transparent;
  border: 0;
  padding: 0;
}

.market-header.premium .vs {
  margin: 0 6px;
  opacity: 0.8;
}

/* =========================
   MATCH PAGE TOP BAR
========================= */

.match-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 32%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-premium);
}

.back-btn-pro {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.back-btn-pro:hover {
  background: rgba(255,255,255,0.24);
}

.back-icon {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.match-title-pro {
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
}

.vs-pro {
  margin: 0 6px;
  opacity: 0.8;
}

/* =========================
   UPCOMING MATCH UI
========================= */

.live-section.upcoming .live-card {
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 14px;
  margin: 10px;
  padding: 12px;
  color: var(--text);
  border: 1px solid var(--border);
}

.live-section.upcoming .live-top {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.live-section.upcoming .teams {
  font-size: 15px;
  font-weight: 850;
  line-height: 1.4;
  margin-bottom: 10px;
}

.live-section.upcoming .odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.live-section.upcoming .odd-box {
  background: var(--blue-soft);
  color: var(--blue-dark);
  border-radius: 10px;
  padding: 12px 0;
  text-align: center;
  font-weight: 950;
  border: 1px solid rgba(20, 56, 88, 0.10);
}

.live-section.upcoming .odd-box:hover {
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
}

.more-toggle {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.more-toggle span {
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

/* =========================
   LIVE MATCH UI
========================= */

.live-section:not(.upcoming) .live-card {
  background:
    linear-gradient(180deg, var(--dark-card), #101f2f);
  border-radius: 14px;
  margin: 10px;
  padding: 12px;
  color: var(--white);
}

.live-section:not(.upcoming) .live-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--live-blue);
  margin-bottom: 8px;
}

.live-section:not(.upcoming) .teams {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
}

.live-section:not(.upcoming) .teams strong {
  color: var(--live-blue);
  margin-left: 6px;
}

.live-section:not(.upcoming) .odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.live-section:not(.upcoming) .odd-box {
  background: var(--dark-card-2);
  color: #dcecff;
  padding: 12px 0;
  text-align: center;
  border-radius: 9px;
  font-weight: 950;
}

.live-card,
.live-section,
.teams,
.live-top {
  position: relative;
  z-index: 1;
}

.odds {
  position: relative;
  z-index: 5;
}

/* =========================
   MATCH SECTION
========================= */

.match-section {
  background:
    linear-gradient(180deg, var(--blue-dark), #0b1b2a);
  padding: 10px;
}

.section-title {
  color: var(--white);
  font-weight: 950;
  padding: 8px;
}

.match-row {
  background:
    linear-gradient(180deg, var(--dark-card), #101f2f);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.match-left {
  color: var(--white);
}

.match-meta {
  font-size: 12px;
  opacity: .78;
  margin-bottom: 6px;
}

.match-teams div {
  font-weight: 850;
  margin-bottom: 4px;
}

.match-odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.match-odds,
.match-odds .odd-box {
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 5;
}

/* =========================
   UPCOMING LIGHT MATCHES
========================= */

#upcoming.match-section {
  background: var(--bg);
}

#upcoming .match-row {
  background: var(--card);
  color: var(--text);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

#upcoming .match-left {
  color: var(--text);
}

#upcoming .match-meta {
  color: var(--muted);
}

#upcoming .match-teams div {
  color: var(--text);
  font-weight: 850;
}

#upcoming .odd-box {
  background: var(--blue-soft);
  color: var(--blue-dark);
  border: 1px solid rgba(20, 56, 88, 0.10);
}

#upcoming .odd-box.selected {
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main)) !important;
  color: var(--white) !important;
}

#upcoming .more-market-btn {
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
}

#upcoming .section-title {
  color: var(--text);
  font-weight: 950;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
}

.team-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: .9;
}

/* =========================
   FOOTER LEGAL LINKS
========================= */

.footer-legal-links {
  margin: 14px 0;
  text-align: center;
  font-size: 14px;
}

.footer-legal-links a {
  color: var(--blue-main);
  text-decoration: none;
  font-weight: 800;
  margin: 0 6px;
}

.footer-legal-links a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.footer-legal-links span {
  color: var(--muted);
}

/* =========================
   LIVE QUICK ACTION
========================= */

.live-action {
  text-decoration: none;
  color: var(--text);
}

.live-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 850;
  color: var(--text);
}

.live-text {
  font-size: 14px;
  font-weight: 950;
  color: var(--text);
}

.live-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e11d48;
  box-shadow: 0 0 6px rgba(225,29,72,0.9);
  animation: liveBlink 1.2s infinite ease-in-out;
}

@keyframes liveBlink {
  0% {
    opacity: 1;
    box-shadow: 0 0 4px rgba(225,29,72,0.6);
  }

  50% {
    opacity: 0.4;
    box-shadow: 0 0 12px rgba(225,29,72,1);
  }

  100% {
    opacity: 1;
    box-shadow: 0 0 4px rgba(225,29,72,0.6);
  }
}

.quick-actions .action {
  font-weight: 900;
  color: var(--text);
}

.quick-actions .action div,
.quick-actions .action span {
  font-weight: 900;
  color: var(--text);
}

.quick-actions a {
  text-decoration: none;
  color: var(--text);
}

/* =========================
   SCROLLING WINNERS
========================= */

.sporty-winners-wrapper {
  overflow: hidden;
  margin: 14px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sporty-winners-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: sportyScroll 60s linear infinite;
}

@keyframes sportyScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sporty-winner-card {
  min-width: 260px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 34%),
    linear-gradient(135deg, var(--blue-dark), #0f2233);
  color: var(--white);
  border-radius: 16px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.winner-text {
  position: relative;
  z-index: 2;
}

.winner-phone {
  font-weight: 800;
  font-size: 14px;
  opacity: .95;
}

.winner-amount {
  margin: 6px 0;
  font-size: 20px;
  font-weight: 950;
  color: #8ec5ff;
}

.winner-label {
  font-size: 13px;
  opacity: .9;
}

.winner-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -12px;
  font-size: 64px;
  opacity: .08;
}

/* =========================
   INDEX UPCOMING LEAGUE TABS
========================= */

.index-league-tabs {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  overflow-x: auto;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.index-league-tabs::-webkit-scrollbar {
  display: none;
}

.index-league-tabs .league-tab {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid rgba(20, 56, 88, 0.08);
}

.index-league-tabs .league-tab.active {
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(20, 56, 88, 0.16);
}

/* =========================
   CASINO QUICK ACTION
========================= */

.casino-action {
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
  font-weight: 900;
  position: relative;
  overflow: hidden;
}

.casino-action::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.18);
  transform: skewX(-20deg);
  animation: casinoShine 3s infinite;
}

@keyframes casinoShine {
  0% {
    left: -100%;
  }

  50% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

.casino-icon {
  font-size: 22px;
}

/* =========================
   RESPONSIVE CLEANUP
========================= */

@media (max-width: 420px) {
  .league-card {
    min-width: 112px;
  }

  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-copy {
    display: none;
  }
}

@media (max-width: 360px) {
  .sports-slider {
    padding: 10px;
  }

  .league-card {
    min-width: 104px;
    font-size: 11px;
  }

  .quick-actions {
    padding: 10px 0;
  }

  .icon {
    width: 34px;
    height: 34px;
  }

  .bottom-nav {
    height: 60px;
  }

  .bottom-nav a {
    font-size: 10px;
  }

  .footer-body {
    padding-bottom: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot,
  .sporty-winners-track,
  .casino-action::after {
    animation: none;
  }

  .odd-box,
  .sporty-tab,
  .bets-tab,
  .bottom-nav a,
  .bottom-nav a i,
  .bottom-nav a img {
    transition: none;
  }
}