@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #111418; /* Dark gray for desktop margins */
  --bg-app: #181d23; /* Dark gray app background */
  --bg-card: #222831; /* Card background */
  --bg-header: #ffd600;
  --bg-top-nav: #1e252d;
  --bg-league-header: #2d343f;
  --bg-odds-btn: #2d343f;
  --bg-odds-btn-hover: #3d4653;
  --bg-odds-btn-active: #ffd600;
  --text-odds-active: #111111;
  --bg-green-badge: #35a519;
  
  --text-primary: #f0f0f0;
  --text-secondary: #a0aab2;
  --text-light: #ffffff;
  
  --border-color: rgba(255, 255, 255, 0.05);
  --border-card: rgba(255, 255, 255, 0.08);
  
  --header-height: 56px;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.4); }

/* Main Layout */
.main-content {
  background-color: var(--bg-app);
  max-width: 600px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  padding-bottom: 280px; /* Leave space for floating buttons and bottom nav */
}

/* Header */
.site-header {
  background-color: var(--bg-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Auth Buttons */
.btn-login {
  background: transparent;
  border: 1px solid #111;
  color: #111;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.btn-register {
  background: #35a519;
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

/* Top Navigation */
.top-nav {
  background-color: var(--bg-top-nav);
  display: flex;
  overflow-x: auto;
  padding: 0;
  margin: 0;
  scrollbar-width: none;
}
.top-nav::-webkit-scrollbar { display: none; }
.top-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: #a5b9ba;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  min-width: 70px;
  position: relative;
}
.top-nav-item.active {
  color: #ffffff;
  border-bottom-color: #ffd600;
  background-color: rgba(0,0,0,0.1);
}
.top-nav-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.top-nav-badge {
  position: absolute;
  top: 4px;
  right: 12px;
  background-color: #ef4444;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 10px;
  border: 2px solid var(--bg-top-nav);
}

/* Secondary Toolbar */
.sec-toolbar {
  background-color: #2b3035;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 12px;
  color: #ffffff;
  overflow-x: auto;
  border-bottom: 1px solid #444;
}
.sec-toolbar::-webkit-scrollbar { display: none; }
.sec-tool {
  font-size: 1.1rem;
  color: #a5b9ba;
  cursor: pointer;
  white-space: nowrap;
}
.sec-tool:hover { color: #fff; }
.sec-tool-text {
  font-size: 0.75rem;
  font-weight: 700;
}

/* Sub filter bar */
.sub-filter-bar {
  background-color: #353a40;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 12px;
  border-bottom: 2px solid #205357;
  overflow-x: auto;
}
.sub-filter-bar select {
  background: #2b3035;
  color: #fff;
  border: 1px solid #444;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}
.sub-filter-tab {
  color: #a5b9ba;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.sub-filter-tab.active {
  color: #ffd600;
}

/* Match List */
.matches-container {
  padding: 0;
}

/* League Header */
.league-header {
  background-color: var(--bg-league-header);
  color: #ffffff;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  border-top: 1px solid #6b9c9f;
  border-bottom: 1px solid #4f7375;
}

/* Match Card */
.match-card {
  background-color: var(--bg-card);
  border-bottom: 2px solid var(--border-card);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Row 1: Teams */
.match-teams-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.star-icon {
  color: #ccc;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 2px;
}
.star-icon:hover { color: #ffd600; }
.team-names {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.play-icon {
  color: #999;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Row 2: Odds Grid */
.match-odds-row {
  display: flex;
  gap: 8px;
}
.mbs-badge {
  background-color: var(--bg-green-badge);
  color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 44px;
  font-weight: 800;
  line-height: 1.1;
}
.mbs-num { font-size: 0.9rem; }
.mbs-text { font-size: 0.55rem; }

.odds-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.odds-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.odds-label {
  font-size: 0.55rem;
  text-align: center;
  color: var(--text-secondary);
  font-weight: 700;
  white-space: nowrap;
}
.odds-btn {
  background-color: var(--bg-odds-btn);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.1s;
}
.odds-btn:hover {
  background-color: var(--bg-odds-btn-hover);
}
.odds-btn.selected {
  background-color: var(--bg-odds-btn-active);
  color: var(--text-odds-active);
}
.odds-btn.disabled {
  background-color: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}

.more-odds-btn {
  background-color: #4a90e2; /* slightly different color for more odds */
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  height: 30px;
  font-weight: 800;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bet Slip Panel */
.bet-slip-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  background: var(--bg-card);
  border-top: 2px solid var(--bg-header);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
}
.bet-slip-header {
  background: var(--bg-top-nav);
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bet-slip-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bet-count {
  background: #ef4444;
  color: #fff;
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
}
.bet-slip-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bet-slip-actions .btn-text {
  background: none;
  border: none;
  color: #ffd600;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.bet-slip-actions .btn-icon {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.bet-slip-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-secondary);
  background: var(--bg-app);
}
.empty-slip-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.8;
}
.bet-slip-body {
  max-height: 50vh;
  overflow-y: auto;
  padding: 12px;
  background: var(--bg-app);
}
.bet-slip-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 10px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  position: relative;
  color: var(--text-primary);
}
.bet-slip-footer {
  padding: 12px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
}
.btn-remove-bet {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  color: #ef4444;
  font-size: 1.2rem;
  cursor: pointer;
}

/* General Utilities */
.text-center { text-align: center; }
.loading-state { padding: 40px; text-align: center; color: #fff; }
.spinner {
  width: 30px; height: 30px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: #ffd600;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

.bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background: #1e252d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  height: 60px;
  z-index: 1000;
}
.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a0aab2;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.nav-item.active {
  color: #ffd600;
}

.search-container {
  background: #353a40;
  padding: 8px 12px;
}
.search-container input {
  width: 100%;
  padding: 8px 12px 8px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid #555;
  background: #2b3035;
  color: #fff;
  font-family: inherit;
}
.search-container input::placeholder { color: #999; }
/* Header Right & Wallet Badge */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wallet-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 214, 0, 0.4);
  padding: 6px 14px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wallet-badge:hover {
  background: rgba(255, 214, 0, 0.1);
  border-color: #ffd600;
  box-shadow: 0 0 12px rgba(255, 214, 0, 0.2);
}
.wallet-badge i {
  font-size: 1.1rem;
  color: #ffd600;
}
#wallet-balance {
  color: #ffd600;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.header-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #1b4f4a;
  border: 2px solid #ffd600;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 214, 0, 0.4);
}
.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: rgba(255, 214, 0, 0.5);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.d-flex { display: flex; }
.gap-2 { gap: 8px; }

/* Promo Slide Fallback */
.promo-slide {
  background-color: #222831;
}

/* Page Headers */
.page-header {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 16px;
  background-color: var(--bg-card);
}
.page-header h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  color: var(--text-primary);
}

/* Stat Card & Profile Card */
.stat-card, .profile-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 16px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 16px 16px 16px;
    color: var(--text-primary);
}

/* Base Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
  text-decoration: none;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Primary Button (Yellow) */
.btn-primary {
  background-color: var(--bg-header);
  color: #111111;
  box-shadow: 0 4px 10px rgba(255, 214, 0, 0.2);
}
.btn-primary:hover:not(:disabled) {
  background-color: #f0c800;
  box-shadow: 0 6px 15px rgba(255, 214, 0, 0.3);
  transform: translateY(-1px);
}
.btn-primary:active:not(:disabled) {
  transform: translateY(1px);
}

/* Secondary Button */
.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Block Button */
.btn-block {
  display: flex;
  width: 100%;
}
/* Utility */
.spinner-sm {
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #111;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 8px;
}

/* Promo Slider */
.promo-slider-container {
  position: relative;
  overflow: hidden;
  background: var(--bg-app);
}
.promo-slider {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
  height: 220px;
}
.promo-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-color: var(--bg-card);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  pointer-events: none;
}
.promo-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.promo-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}
.promo-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(17, 20, 24, 0.95) 0%, rgba(17, 20, 24, 0.4) 50%, transparent 100%);
  z-index: 1;
}
.promo-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}
.promo-content h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 800;
}
.promo-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
  line-height: 1.4;
}
.promo-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.promo-btn-primary {
  padding: 8px 18px;
  background: var(--bg-header);
  color: #111;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 214, 0, 0.2);
  transition: transform 0.2s;
}
.promo-btn-primary:hover {
  transform: translateY(-2px);
}
.promo-btn-secondary {
  padding: 8px 18px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.promo-btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}
.promo-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}
.promo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.promo-dot.active {
  background: var(--bg-header);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(255, 214, 0, 0.5);
}
.stat-card h3, .profile-card h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}
.text-success { color: #35a519 !important; }
.text-danger { color: #ef4444 !important; }

/* Payment Tabs */
.payment-tabs {
  display: flex;
  margin: 0 16px 16px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 4px;
}
.payment-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.payment-tab.active {
  background: var(--bg-top-nav);
  color: #fff;
}

/* Stat Items (Profile) */
.stat-row {
  display: flex;
  gap: 16px;
  margin: 0 16px 16px 16px;
}
.stat-item {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 16px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.si-value { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.si-label { font-size: 0.8rem; color: var(--text-secondary); }

/* Quick Actions (Profile) */
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quick-action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-weight: 600;
  transition: background 0.3s;
}
.quick-action-link:hover { background: rgba(255,255,255,0.06); }
.quick-action-link.danger { color: #ef4444; }

/* Info Rows (Profile) */
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-card);
}
.info-row:last-child { border-bottom: none; }
.info-row-label { color: var(--text-secondary); font-weight: 600; font-size: 0.9rem; }
.info-row-value { color: var(--text-primary); font-weight: 700; font-size: 0.9rem; }

/* ============================================================
   MATCH DETAIL MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.show {
  display: flex;
}

.md-content {
  background: #1e2028;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 540px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.md-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.md-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
}

.md-title #md-score {
  color: #ffd600;
  font-size: 1.1rem;
  font-weight: 800;
}

.md-close {
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: #aaa;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.md-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.md-tabs {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  background: #191c23;
}

.md-tab {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 6px 16px;
  color: #aaa;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.md-tab.active,
.md-tab:hover {
  background: #ffd600;
  color: #111;
  border-color: #ffd600;
}

.md-body {
  overflow-y: auto;
  padding: 14px 16px 24px;
  flex: 1;
}

.md-body::-webkit-scrollbar { width: 4px; }
.md-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* Odds Groups inside modal */
.md-body .odds-group {
  margin-bottom: 16px;
}

.md-body .odds-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffd600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding: 6px 10px;
  background: rgba(255,214,0,0.08);
  border-radius: 6px;
  border-left: 3px solid #ffd600;
}

.md-body .odds-row {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
}

.md-body .odds-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: all 0.2s;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.md-body .odds-btn:hover {
  background: rgba(255,214,0,0.12);
  border-color: #ffd600;
}

.md-body .odds-btn.selected {
  background: rgba(255,214,0,0.18);
  border-color: #ffd600;
}

.md-body .odds-btn .odds-label {
  font-size: 0.72rem;
  color: #aaa;
}

.md-body .odds-btn .odds-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffd600;
}

/* Modal odds-group-content grids */
.odds-group-content {
  display: grid;
  gap: 6px;
}
.odds-group-content.cols-2 { grid-template-columns: repeat(2, 1fr); }
.odds-group-content.cols-3 { grid-template-columns: repeat(3, 1fr); }

.odds-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  transition: all 0.2s;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
}
.odds-btn:hover {
  background: rgba(255,214,0,0.12);
  border-color: #ffd600;
}
.odds-btn.selected {
  background: rgba(255,214,0,0.2);
  border-color: #ffd600;
}
.odds-btn.disabled {
  opacity: 0.4;
  cursor: default;
}
.odds-btn .odds-label {
  font-size: 0.72rem;
  color: #aaa;
  line-height: 1.2;
}
.odds-btn .odds-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffd600;
}
