* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  min-height: 100vh;
}

.live-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 120px;
}

/* ── Page header ── */
.live-page-header {
  padding: 28px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.live-page-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.live-page-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

/* Pulsing red live dot */
.live-dot-pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: livePulse 1.6s ease-out infinite;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.live-page-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
}

/* ── Sport filter dropdown ── */
.live-sport-dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.live-sport-sel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  cursor: pointer;
  user-select: none;
  min-width: 148px;
  transition: border-color 0.15s, color 0.15s;
}
.live-sport-sel:hover,
.live-sport-sel.open {
  border-color: rgba(0,255,136,0.4);
  color: #fff;
}
.live-sport-chevron {
  margin-left: auto;
  font-size: 11px;
  opacity: 0.55;
  transition: transform 0.18s;
  display: inline-block;
}
.live-sport-sel.open .live-sport-chevron {
  transform: rotate(180deg);
}
.live-sport-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 100%;
  background: #141824;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  z-index: 300;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}
.live-sport-menu.open {
  display: block;
}
.live-sport-opt {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
}
.live-sport-opt + .live-sport-opt {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.live-sport-opt:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.live-sport-opt.active {
  color: #00ff88;
  background: rgba(0,255,136,0.07);
}

/* ── Games wrapper ── */
#live-games-wrapper {
  display: block;
}

#live-mlb-list,
#live-nfl-list,
#live-soccer-list,
#live-ufc-list {
  max-width: 660px;
}

/* ── Sport section headers ── */
.live-sport-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 6px 0 10px;
  margin-top: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.live-sport-icon { font-size: 15px; }

#live-soccer-section { margin-top: 20px; }
#live-ufc-section { margin-top: 20px; }

/* ── Status bars ── */
#live-mlb-status,
#live-nfl-status,
#live-soccer-status,
#live-ufc-status {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

/* ── Soccer league pill on score row ── */
.lg-sport-pill {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 1px 6px;
  flex-shrink: 0;
}

/* ── Empty state ── */
.lg-empty {
  text-align: center;
  padding: 60px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.lg-empty-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.lg-empty-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

/* ── Game card ── */
.lg-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

/* Score row */
.lg-score-row {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 10px;
}
.lg-live-pip {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.lg-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  display: inline-block;
  box-shadow: 0 0 4px #ef4444;
}
.lg-live-label {
  font-size: 10px;
  font-weight: 800;
  color: #ef4444;
  letter-spacing: 0.8px;
}
.lg-team-away {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.lg-team-home {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
}
.lg-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.lg-abbr {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.lg-score-away {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-left: 4px;
}
.lg-score-home {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-right: 4px;
}
.lg-inning-col {
  text-align: center;
  flex-shrink: 0;
  padding: 0 8px;
}
.lg-inning-text {
  font-size: 11px;
  font-weight: 700;
  color: #00ff88;
}
.lg-outs-text {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-top: 1px;
}

/* Linescore */
.lg-ls-wrap {
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow-x: auto;
}
.lg-ls-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.lg-ls-table th {
  text-align: center;
  padding: 2px 4px;
  min-width: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  border-bottom: 2px solid transparent;
}
.lg-ls-table th.lg-ls-cur {
  color: #00ff88;
  font-weight: 700;
  border-bottom-color: #00ff88;
}
.lg-ls-table th.lg-ls-team-th {
  width: 32px;
  text-align: left;
  padding: 2px 0;
}
.lg-ls-table th.lg-ls-r-th {
  text-align: center;
  padding: 2px 6px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}
.lg-ls-table td {
  text-align: center;
  padding: 3px 4px;
  color: rgba(255,255,255,0.38);
}
.lg-ls-table td.lg-ls-team-td {
  padding: 3px 0;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  font-size: 10px;
  text-align: left;
}
.lg-ls-table td.lg-ls-r-td {
  text-align: center;
  padding: 3px 6px;
  color: #fff;
  font-weight: 800;
}
.lg-ls-table td.lg-ls-null { color: rgba(255,255,255,0.15); }
.lg-ls-table td.lg-ls-pos { color: #fff; font-weight: 700; }
.lg-ls-table td.lg-ls-active { background: rgba(0,255,136,0.05); }

/* Markets */
.lg-markets-wrap { padding: 0 14px; }
.lg-markets-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 700;
  font-family: Arial, sans-serif;
}
.lg-market-row {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
}
.lg-market-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.lg-market-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.lg-market-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  border-radius: 999px;
  padding: 1px 7px;
}
.lg-market-badge.open   { color: #00ff88; background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.2); }
.lg-market-badge.locked { color: #f59e0b; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); }
.lg-market-badge.settled{ color: #6b7280; background: rgba(107,114,128,0.08); border: 1px solid rgba(107,114,128,0.2); }
.lg-settled-result {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  padding-left: 2px;
}
.lg-opt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.lg-opt-btn {
  padding: 7px 4px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.08);
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: background 0.12s, border-color 0.12s;
  font-family: Arial, sans-serif;
}
.lg-opt-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.lg-opt-btn.lg-sel { background: rgba(0,255,136,0.14); border-color: rgba(0,255,136,0.5); }
.lg-opt-label {
  font-size: 10px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.lg-opt-odds { font-size: 13px; font-weight: 800; color: #00ff00; }
.lg-opt-btn.lg-sel .lg-opt-odds { color: #00ff88; }
.lg-wager-row { display: flex; gap: 6px; margin-top: 7px; }
.lg-wager-input {
  flex: 1;
  padding: 6px 10px;
  border-radius: 7px;
  font-size: 12px;
  border: 1px solid rgba(0,255,136,0.25);
  background: rgba(0,0,0,0.3);
  color: #fff;
  outline: none;
}
.lg-bet-btn {
  padding: 6px 14px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg,#00ff88,#00cc6a);
  color: #000;
  font-family: Arial, sans-serif;
}

/* ── Bet slip right rail ── */
#lg-slip-rail {
  width: 240px;
  flex-shrink: 0;
  background: rgba(13,17,48,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  align-self: flex-start;
  position: sticky;
  top: 64px;
}
.lg-slip-header {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lg-slip-title { font-weight: 800; font-size: 13px; color: #fff; }
.lg-slip-count {
  background: #00ff88;
  color: #000;
  font-weight: 800;
  font-size: 10px;
  border-radius: 999px;
  padding: 2px 7px;
}
.lg-slip-empty {
  padding: 24px 14px;
  text-align: center;
  color: rgba(255,255,255,0.28);
  font-size: 12px;
}
.lg-slip-body { padding: 12px 14px; }
.lg-slip-leg {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid rgba(0,255,136,0.12);
}
.lg-slip-leg-label { font-size: 11px; color: #fff; font-weight: 700; }
.lg-slip-leg-sub { font-size: 10px; color: rgba(255,255,255,0.38); margin-top: 1px; }
.lg-slip-leg-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.lg-slip-leg-odds { color: #00ff88; font-weight: 800; font-size: 12px; }
.lg-slip-leg-remove {
  background: none; border: none; color: rgba(255,255,255,0.3);
  cursor: pointer; font-size: 15px; line-height: 1; padding: 0; font-family: Arial, sans-serif;
}
.lg-slip-wager-section { margin-top: 8px; }
.lg-slip-wager-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.lg-slip-wager-input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 7px;
  box-sizing: border-box;
  border: 1px solid rgba(0,255,136,0.22);
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 13px;
  outline: none;
}
.lg-slip-payout {
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 7px;
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.lg-slip-payout-label { color: rgba(255,255,255,0.45); }
.lg-slip-payout-val { color: #00ff88; font-weight: 800; }
.lg-slip-place-btn {
  width: 100%;
  margin-top: 8px;
  padding: 10px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg,#00ff88,#00cc6a);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  font-family: Arial, sans-serif;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  #lg-slip-rail { display: none; }
  #live-games-wrapper { flex-direction: column; }
  .live-page-title { font-size: 1.5rem; }
  .live-content { padding-top: 16px; }
  .lg-pitch-count-wrap {
    flex-basis: 100% !important;
    justify-content: center !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    border-left: none !important;
    margin-top: 4px;
  }
}

/* ══════════════════════════════════
   NFL Drive Result market
══════════════════════════════════ */
.lg-drive-section {
  position: relative;
  border-top: 1.5px solid rgba(251,146,60,0.2);
  background: linear-gradient(180deg, rgba(251,146,60,0.05) 0%, transparent 100%);
  overflow: hidden;
}
.lg-drive-section::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #fb923c 0%, rgba(251,146,60,0.3) 100%);
  border-radius: 0 2px 2px 0;
}
.lg-drive-section.locked::before {
  background: linear-gradient(180deg, #f59e0b 0%, rgba(245,158,11,0.3) 100%);
}
.lg-drive-inner {
  padding: 9px 12px 11px 16px;
}
.lg-drive-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.lg-drive-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(251,146,60,0.85);
}
.lg-drive-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lg-drive-badge.open {
  background: rgba(0,255,136,0.12);
  color: #00ff88;
  border: 1px solid rgba(0,255,136,0.25);
}
.lg-drive-badge.locked {
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.25);
}
.lg-drive-info {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.lg-drive-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.lg-drive-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  font-family: Arial, sans-serif;
  text-align: center;
}
.lg-drive-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
.lg-drive-btn:not(:disabled):hover {
  background: rgba(251,146,60,0.1);
  border-color: rgba(251,146,60,0.35);
}
.lg-drive-btn.lg-sel {
  background: rgba(251,146,60,0.14);
  border-color: rgba(251,146,60,0.5);
}
.lg-drive-btn-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
}
.lg-drive-btn.lg-sel .lg-drive-btn-label { color: #fff; }
.lg-drive-btn-odds {
  font-size: 13px;
  font-weight: 800;
  color: #fb923c;
  line-height: 1;
}

/* ══════════════════════════════════
   Pitch-by-pitch at-bat betting
══════════════════════════════════ */
.lg-pitch-section {
  position: relative;
  border-top: 1px solid rgba(0,255,136,0.15);
  background: linear-gradient(180deg, rgba(0,255,136,0.04) 0%, rgba(0,0,0,0) 100%);
  overflow: hidden;
}
/* Accent left bar */
.lg-pitch-section::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #00ff88 0%, #00cc6a 100%);
  border-radius: 0 2px 2px 0;
}
.lg-pitch-section.locked::before {
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}
.lg-pitch-inner {
  padding: 9px 14px 11px 17px;
}

/* Header row */
.lg-pitch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.lg-pitch-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* Batter info row */
.lg-pitch-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  flex-wrap: wrap;
}
.lg-pitch-batter-name {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lg-pitch-bat-order {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0;
  flex-shrink: 0;
}
.lg-pitch-batter-name-text {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.1px;
}
.lg-pitch-sep {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.lg-pitch-p-label {
  font-size: 9px;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 1px 4px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.lg-pitch-pitcher-name {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
/* Count dots */
.lg-pitch-count-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 18px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.lg-pitch-count-group {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lg-pitch-count-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-right: 1px;
}
.lg-ab-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: inline-block;
  transition: background 0.2s, border-color 0.2s;
}
.lg-ab-dot.ball.active  { background: #22c55e; border-color: #22c55e; box-shadow: 0 0 4px rgba(34,197,94,0.6); }
.lg-ab-dot.strike.active{ background: #f59e0b; border-color: #f59e0b; box-shadow: 0 0 4px rgba(245,158,11,0.6); }
.lg-ab-dot.out.active   { background: #ef4444; border-color: #ef4444; box-shadow: 0 0 4px rgba(239,68,68,0.5); }

/* Market grid */
.lg-pitch-mkts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

/* 3-way result tile spans full width */
.lg-pitch-result-tile {
  grid-column: 1 / -1;
}

/* Hit / Strikeout / Home Run buttons in one row */
.lg-pitch-result-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.lg-pitch-result-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: background 0.12s, border-color 0.12s, transform 0.08s;
  text-align: center;
}
.lg-pitch-result-btn:disabled,
.lg-pitch-result-btn.disabled { opacity: 0.3; cursor: not-allowed; }
.lg-pitch-result-btn:not(:disabled):not(.disabled):hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}
.lg-pitch-result-btn:not(:disabled):not(.disabled):active { transform: translateY(0); }
.lg-pitch-result-btn .lg-pitch-btn-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.lg-pitch-result-btn .lg-pitch-btn-odds {
  font-size: 14px;
  font-weight: 900;
  color: #00ff88;
  letter-spacing: -0.3px;
}
.lg-pitch-result-btn.lg-pitch-btn-sel {
  background: rgba(0,255,136,0.1) !important;
  border-color: rgba(0,255,136,0.45) !important;
}
.lg-pitch-result-btn.lg-pitch-btn-sel .lg-pitch-btn-label { color: #fff; }
.lg-pitch-result-btn.lg-pitch-btn-sel .lg-pitch-btn-odds  { color: #00ff88; }
.lg-pitch-tile {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 8px 9px 7px;
  transition: border-color 0.15s;
}
.lg-pitch-tile-head {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lg-pitch-tile-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.55);
}
.lg-pitch-title-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.6);
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.lg-pitch-tile-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.9px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* Bet buttons */
.lg-pitch-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 9px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  margin-bottom: 4px;
  font-family: Arial, sans-serif;
  transition: background 0.12s, border-color 0.12s, transform 0.08s;
}
.lg-pitch-btn:last-child { margin-bottom: 0; }
.lg-pitch-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.lg-pitch-btn:not(:disabled):hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}
.lg-pitch-btn:not(:disabled):active { transform: translateY(0); }

/* YES tint */
.lg-pitch-btn.yes-btn { border-left: 2px solid rgba(0,255,136,0.25); }
.lg-pitch-btn.yes-btn:not(:disabled):hover { border-left-color: rgba(0,255,136,0.5); }
/* NO tint */
.lg-pitch-btn.no-btn  { border-left: 2px solid rgba(239,68,68,0.2); }
.lg-pitch-btn.no-btn:not(:disabled):hover { border-left-color: rgba(239,68,68,0.45); }

.lg-pitch-btn-sel {
  background: rgba(0,255,136,0.1) !important;
  border-color: rgba(0,255,136,0.4) !important;
  border-left-color: rgba(0,255,136,0.7) !important;
}
.lg-pitch-btn-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.lg-pitch-btn-odds {
  font-size: 13px;
  font-weight: 900;
  color: #00ff88;
  letter-spacing: -0.3px;
}
.lg-pitch-btn.no-btn .lg-pitch-btn-odds { color: #f87171; }
.lg-pitch-btn-sel .lg-pitch-btn-label { color: #fff; }
.lg-pitch-btn-sel .lg-pitch-btn-odds  { color: #00ff88; }
.lg-pitch-btn.no-btn.lg-pitch-btn-sel .lg-pitch-btn-odds { color: #00ff88; }
