:root{ 
  --green-dark:#0B3D2E;
  --green-main:#198754;
  --green-light:#e6f4ea;
  --bg:#f6f6f6;
  --dark-bg:#0f131a;
  --dark-card:#1a1f27;
  --live-green:#28d760;
  --muted:#9aa0a6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  padding-bottom: 120px; /* space for bottom nav + betslip */
}

/* =========================
   LEAGUE SLIDER
========================= */
.sports-slider {
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  background: #fff;
}
.league-card {
  min-width: 120px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.league-card img {
  width: 36px;
  height: 36px;
}

/* =========================
   QUICK ACTIONS
========================= */
.quick-actions {
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  background: #fff;
}
.quick-actions a {
  text-decoration: none;
  color: #111;
}
.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
}
.icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* =========================
   FILTERS
========================= */
.sporty-filters {
  display: flex;
  gap: 6px;
  padding: 10px;
}
.filter {
  flex: 1;
  background: #fff;
  padding: 10px 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.filter.active {
  border-top: 3px solid var(--green-dark);
  color: var(--green-dark);
}

/* =========================
   LIVE & UPCOMING
========================= */
.live-section {
  background: var(--dark-bg);
  padding: 10px;
}
.live-title {
  color: #fff;
  font-weight: 800;
  margin: 6px 4px 10px;
}
.live-card {
  background: var(--dark-card);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  color: #fff;
}
.live-top {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px;
}
.live-time {
  color: var(--live-green);
  font-weight: 700;
}
.live-body {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.teams {
  flex: 1;
}
.team {
  margin: 4px 0;
}
.odds {
  display: flex;
  gap: 6px;
}
.odd-box {
  background: #2a2f36;
  padding: 10px 12px;
  border-radius: 6px;
  min-width: 64px;
  text-align: center;
  text-decoration: none;
}
.odd-box span {
  color: var(--live-green);
  font-weight: 700;
}
.odd-box.selected {
  background: var(--green-dark);
  color: #fff;
}

/* UPCOMING */
.live-section.upcoming {
  background: var(--green-dark);
}
.live-section.upcoming .live-card {
  background: #fff;
  color: #000;
}
.live-section.upcoming .odd-box {
  background: var(--green-main);
}
.live-section.upcoming .odd-box span {
  color: #fff;
}

/* =========================
   WINNERS
========================= */
.winners-section {
  background: #fff;
  padding: 16px 14px;
  margin-top: 10px;
}
.winners-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.winners-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}
.winner-card {
  min-width: 240px;
  background: linear-gradient(135deg, #2d3e47, #1a252d);
  color: #fff;
  border-radius: 12px;
  padding: 16px;
}

/* ===============================
   BETBUZZY FOOTER – FIXED & MATCHED
================================ */

.site-footer {
  width: 100%;
  background: #0B3D2E;
  color: #cfd3da;
  margin-top: 20px;
}

/* ===== 18+ BAR ===== */
.footer-age {
  background: #eef0f2;
  color: #555;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 13px;
}

.age-icon {
  background: #999;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.age-text {
  font-weight: 700;
  font-size: 14px;
}

.footer-copy {
  margin-left: auto;
  font-size: 12px;
  color: #666;
}

/* ===== FOOTER BODY ===== */
.footer-body {
  background: linear-gradient(180deg, #0f3d2e, #071f17);
  padding: 36px 16px 140px; /* space for bottom nav */
  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: 700;
  color: #17c964;
}

.divider {
  color: #4ade80;
}

.league-logo {
  height: 36px;
}

/* ===== TAGLINE ===== */
.footer-tagline {
  font-size: 18px;
  font-weight: 600;
  margin: 18px 0 22px;
  color: #ffffff;
}

/* ===== PAYMENT METHODS ===== */
.footer-subtitle {
  font-size: 14px;
  color: #aab2bd;
  margin-bottom: 10px;
}

.footer-payments {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-payments img {
  height: 28px;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
}

/* ===== LINKS ===== */
.footer-links {
  margin-bottom: 18px;
}

.footer-links a {
  color: #17c964;
  margin: 0 8px;
  font-size: 14px;
  text-decoration: underline;
}

/* ===== LEGAL TEXT ===== */
.footer-legal {
  font-size: 13px;
  color: #aab2bd;
  line-height: 1.5;
  margin: 0;
}
/* ===============================
   BOTTOM NAV – FIXED & CLEAN
================================ */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(180deg, #0b3d2e, #071f17);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}

/* NAV LINKS */
.bottom-nav a {
  flex: 1;
  text-decoration: none;
  color: #9aa0a6;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.2s ease;
}

/* ICON */
.bottom-nav a i,
.bottom-nav a img {
  font-size: 20px;
  height: 20px;
  color: #9aa0a6;
  transition: all 0.2s ease;
}

/* ACTIVE */
.bottom-nav a.active {
  color: #17c964;
}

.bottom-nav a.active i,
.bottom-nav a.active img {
  color: #17c964;
  transform: translateY(-2px);
}

/* HOVER (DESKTOP SAFE) */
.bottom-nav a:hover {
  color: #ffffff;
}

/* ===============================
   PAGE OFFSET (IMPORTANT)
================================ */

#page-content {
  padding-bottom: 150px; /* footer + nav + betslip */
}
/* =========================
   FORCE SELECTED ODD (SPORTYBET)
========================= */

/* LIVE + UPCOMING + GENERAL */
.live-section .odd-box.selected,
.live-section.upcoming .odd-box.selected,
.odd-box.selected {
  background-color: #0B3D2E !important; /* deep green */
  color: #ffffff !important;
}

/* Odds number */
.live-section .odd-box.selected span,
.live-section.upcoming .odd-box.selected span,
.odd-box.selected span {
  color: #ffffff !important;
  font-weight: 800;
}

/* Pressed / locked feel */
.odd-box {
  transition: background-color 0.15s ease,
              transform 0.1s ease;
}

.odd-box.selected {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}

.odd-box:active {
  transform: scale(0.97);
}
/* =========================
   LIVE / UPCOMING TABS
========================= */
.sporty-tabs {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: #fff;
}

.sporty-tab {
  flex: 1;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111;
  cursor: pointer;
  transition: all .15s ease;
}

/* ACTIVE TAB */
.sporty-tab.active {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}

/* PRESS EFFECT */
.sporty-tab:active {
  transform: scale(0.97);
}
/* =========================
   LIVE / UPCOMING TABS
========================= */
.bets-tabs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #ffffff;
}

.bets-tab {
  flex: 1;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  color: #111;
  cursor: pointer;
  transition: all 0.15s ease;
}

.bets-tab.active {
  background: #0B3D2E;
  color: #ffffff;
  border-color: #0B3D2E;
}

.bets-tab:active {
  transform: scale(0.97);
}
.league-name{
  font-size:12px;
  font-weight:700;
  color:#4ade80;
  margin-bottom:4px;
}

.live-score{
  margin-left:auto;
  font-weight:800;
  color:#28d760;
}
.more-markets-row{
  text-align:center;
  margin:8px 0;
}

.more-markets-btn{
  background:#fff;
  border:1.5px solid #0B3D2E;
  color:#0B3D2E;
  font-weight:700;
  padding:6px 14px;
  border-radius:6px;
  cursor:pointer;
}
.more-toggle{
  display:flex;
  justify-content:space-between;
  padding:10px;
  font-weight:700;
  cursor:pointer;
  background:#f3f4f6;
  border-top:1px solid #eee;
}

.more-markets{
  display:none;
  padding:10px;
  background:#fafafa;
}

.more-markets.open{
  display:block;
}
.more-market-btn{
  display:inline-block;
  margin-top:6px;
  padding:6px 10px;
  background:#1e88e5;
  color:#fff;
  border-radius:4px;
  font-size:13px;
  text-decoration:none;
}

.market-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:15px;
}
.back-btn{
  display:inline-block;
  margin-bottom:10px;
  color:#1e88e5;
  font-weight:500;
  text-decoration:none;
}
/* =========================
   MATCH PAGE
========================= */
.match-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #0b3d2e;
  color: #fff;
  font-weight: 600;
}

.match-header a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.match-container {
  padding: 12px;
}

.match-card {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  overflow: hidden;
}

.match-teams {
  padding: 12px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

.market-title {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  background: #f4f6f8;
  border-top: 1px solid #eee;
}

.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: 6px;
  background: #f9f9f9;
  border: 1px solid #ddd;
}

/* Correct score text visibility */
.market-grid .odd-box small {
  color: #fff;
  font-weight: 600;
}

/* Make background darker so white pops */
.market-grid .odd-box {
  background: #1e1e1e;
  border: 1px solid #333;
}


.market-odds .odd-box span {
  font-weight: 700;
  font-size: 15px;
  color: #111;
}

.market-odds .odd-box.selected {
  background: #0b3d2e;
  color: #fff;
}

.market-odds .odd-box.selected span,
.market-odds .odd-box.selected small {
  color: #fff;
}
/* =========================
   MATCH PAGE HEADER (PRO)
========================= */
.market-header.premium {
  background: linear-gradient(135deg, #0b3d2e, #145a44);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.market-header.premium .back-icon {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.market-header.premium .market-title {
  font-size: 15px;
  font-weight: 600;
}

.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: linear-gradient(135deg, #0b3d2e, #0f5132);
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-btn-pro {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.back-btn-pro:hover {
  background: rgba(255,255,255,0.25);
}

.back-icon {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

.match-title-pro {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.vs-pro {
  margin: 0 6px;
  opacity: 0.8;
}
/* =========================
   MARKET TEXT VISIBILITY
========================= */

/* Make ALL market labels white */
.market-card .odd-box small,
.market-grid .odd-box small {
  color: #fff !important;
  font-weight: 600;
}

/* Make odds pop */
.market-card .odd-box span,
.market-grid .odd-box span {
  color: #fff !important;
  font-weight: 700;
}

/* Dark professional background for market boxes */
.market-card .odd-box,
.market-grid .odd-box {
  background: #1f2933;
  border: 1px solid #2f3b47;
}

/* Hover effect */
.market-card .odd-box:hover,
.market-grid .odd-box:hover {
  background: #263445;
}

/* Selected state */
.market-card .odd-box.selected,
.market-grid .odd-box.selected {
  background: #0b3d2e;
  border-color: #0b3d2e;
}
/* =========================
   UPCOMING MATCH – CLEAN UI
========================= */
.live-section.upcoming .live-card{
  background: linear-gradient(180deg,#1b222a,#141a20);
  border-radius: 12px;
  margin: 10px;
  padding: 12px;
  color: #fff;
}

.live-section.upcoming .live-top{
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.live-section.upcoming .teams{
  font-size: 15px;
  font-weight: 800;
  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: #202833;
  color: #22c55e;
  border-radius: 8px;
  padding: 12px 0;
  text-align: center;
  font-weight: 900;
}

/* MORE MARKETS BUTTON */
.more-toggle{
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.more-toggle span{
  background: #2563eb;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
/* =========================
   FIX ODDS NOT CLICKABLE
========================= */
.live-card,
.live-section,
.teams,
.live-top {
  position: relative;
  z-index: 1;
}

.odds {
  position: relative;
  z-index: 5;
}

.odd-box {
  position: relative;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
}
/* =========================
   UPCOMING MATCH UI (PRO)
========================= */
.live-section.upcoming .live-card {
  background: linear-gradient(180deg, #1c2229, #14191f);
  border-radius: 10px;
  margin: 10px;
  padding: 12px;
  color: #fff;
}

.live-section.upcoming .live-top {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.live-section.upcoming .teams {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.live-section.upcoming .odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.live-section.upcoming .odd-box {
  background: #2a3139;
  color: #22c55e;
  padding: 12px 0;
  text-align: center;
  border-radius: 6px;
  font-weight: 900;
}

.live-section.upcoming .odd-box:hover {
  background: #0b3d2e;
  color: #fff;
}
/* =========================
   LIVE MATCH UI (PRO)
========================= */
.live-section:not(.upcoming) .live-card {
  background: linear-gradient(180deg, #1b2026, #12161b);
  border-radius: 10px;
  margin: 10px;
  padding: 12px;
  color: #fff;
}

.live-section:not(.upcoming) .live-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #22c55e;
  margin-bottom: 8px;
}

.live-section:not(.upcoming) .teams {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.live-section:not(.upcoming) .teams strong {
  color: #22c55e;
  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: #2d333a;
  color: #22c55e;
  padding: 12px 0;
  text-align: center;
  border-radius: 6px;
  font-weight: 900;
}
.match-section {
  background: #0b3d2e;
  padding: 10px;
}

.section-title {
  color: #fff;
  font-weight: 800;
  padding: 8px;
}

.match-row {
  background: #1a1f24;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.match-left {
  color: #fff;
}

.match-meta {
  font-size: 12px;
  opacity: .8;
  margin-bottom: 6px;
}

.match-teams div {
  font-weight: 700;
  margin-bottom: 4px;
}

.match-odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.odd-box {
  background: #e6f4ea;
  color: #064c2b;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 900;
}

.more-market-btn {
  margin-top: 10px;
  text-align: center;
  background: #0b6e3f;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}
/* =========================
   DIFFERENTIATE UPCOMING MATCHES
   (LIGHT THEME)
========================= */

/* UPCOMING section background */
#upcoming.match-section {
  background: #f5f7f6; /* light neutral */
}

/* Upcoming match cards */
#upcoming .match-row {
  background: #ffffff;
  color: #111;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Meta text (time / league) */
#upcoming .match-meta {
  color: #6b7280;
}

/* Team names */
#upcoming .match-teams div {
  color: #111;
  font-weight: 700;
}

/* Odds boxes */
#upcoming .odd-box {
  background: #eef6f1;
  color: #0b6e3f;
  border: 1px solid #d1e7dd;
}

/* Selected odd (keep brand green) */
#upcoming .odd-box.selected {
  background: #0b6e3f !important;
  color: #ffffff !important;
}

/* More markets button */
#upcoming .more-market-btn {
  background: #0b6e3f;
  color: #ffffff;
}
/* UPCOMING MATCHES TITLE */
#upcoming .section-title {
  color: #000000;
  font-weight: 900;
}
.team-row{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
}

.team-logo{
  width:20px;
  height:20px;
  object-fit:contain;
  opacity:.9;
}
.match-odds,
.match-odds .odd-box {
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.footer-legal-links {
  margin: 14px 0;
  text-align: center;
  font-size: 14px;
}

.footer-legal-links a {
  color: #0b6e3f; /* DARK GREEN */
  text-decoration: none;
  font-weight: 600;
  margin: 0 6px;
}

.footer-legal-links a:hover {
  color: #22c55e; /* lighter green hover */
  text-decoration: underline;
}

.footer-legal-links span {
  color: #6b7280;
}
/* LIVE ACTION WRAPPER */
.live-action{
  text-decoration:none;
  color:#000; /* BLACK TEXT */
}

/* LIVE ICON */
.live-icon{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  font-weight:700;
  color:#000; /* BLACK */
}

/* LIVE TEXT */
.live-text{
  font-size:14px;
  font-weight:800;
  color:#000; /* BLACK */
}

/* BLINKING DOT */
.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;
}

/* BLINK ANIMATION */
@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);
  }
}
/* ALL QUICK ACTION TEXT */
.quick-actions .action{
  font-weight:800;       /* BOLD LIKE LIVE */
  color:#000;            /* BLACK TEXT */
}

/* ICON TEXT ALIGNMENT */
.quick-actions .action div,
.quick-actions .action span{
  font-weight:800;
  color:#000;
}

/* REMOVE UNDERLINES COMPLETELY */
.quick-actions a{
  text-decoration:none;
  color:#000;
}
/* =========================
   SPORTY SCROLLING WINNERS
========================= */

.sporty-winners-wrapper{
  overflow:hidden;
  margin:14px 0;
  background:#ffffff;
}

.sporty-winners-track{
  display:flex;
  gap:14px;
  width:max-content;
  animation:sportyScroll 60s linear infinite;
}

.sporty-winner-card{
  min-width:260px;
  background:#2f343d;
  color:#ffffff;
  border-radius:14px;
  padding:14px 16px;
  position:relative;
  overflow:hidden;
}

.winner-text{
  position:relative;
  z-index:2;
}

.winner-phone{
  font-weight:700;
  font-size:14px;
  opacity:.95;
}

.winner-amount{
  margin:6px 0;
  font-size:20px;
  font-weight:900;
  color:#2ee56b;
}

.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:#ffffff;
}

.index-league-tabs::-webkit-scrollbar{
  display:none;
}

.index-league-tabs .league-tab{
  padding:8px 14px;
  border-radius:20px;
  background:#eef6f1;
  color:#0b6e3f;
  font-weight:800;
  font-size:13px;
  white-space:nowrap;
  cursor:pointer;
}

.index-league-tabs .league-tab.active{
  background:#0b6e3f;
  color:#ffffff;
}
/* ===== CASINO QUICK ACTION ===== */
.casino-action{
  background:linear-gradient(135deg,#7c3aed,#ca8a04);
  color:#fff;
  font-weight:800;
  position:relative;
  overflow:hidden;
}

.casino-action::after{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:rgba(255,255,255,0.15);
  transform:skewX(-20deg);
  animation:casinoShine 3s infinite;
}

@keyframes casinoShine{
  0%{left:-100%}
  50%{left:120%}
  100%{left:120%}
}

.casino-icon{
  font-size:22px;
}
to {
  transform: translateX(-50%);
}

