/* Core Stylesheet - World Cup Wager Web App */

:root {
  --bg-color: #0b0f17;
  --panel-bg: rgba(17, 24, 39, 0.55);
  --panel-border: rgba(255, 255, 255, 0.06);
  --panel-glow: rgba(16, 185, 129, 0.05);
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  /* Palette Colors */
  --accent-green: #10b981; /* neon-ish emerald green */
  --accent-green-rgb: 16, 185, 129;
  --accent-gold: #f59e0b; /* shiny golden trophy amber */
  --accent-gold-rgb: 245, 158, 11;
  --accent-blue: #3b82f6; /* info blue */
  
  --outcome-correct: #10b981;
  --outcome-exact: #f59e0b;
  --outcome-wrong: #ef4444;
  --outcome-pending: #4b5563;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow: hidden;
  height: 100vh;
  position: relative;
}

/* Ambient glowing blobs behind the content */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
  animation: float-glow 20s infinite alternate ease-in-out;
}

.bg-glow-1 {
  width: 400px;
  height: 400px;
  background-color: var(--accent-green);
  top: -100px;
  left: -100px;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background-color: var(--accent-gold);
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

.bg-glow-3 {
  width: 300px;
  height: 300px;
  background-color: var(--accent-blue);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  animation-delay: -10s;
}

@keyframes float-glow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, 40px) scale(1.1);
  }
}

/* Base Container */
.app-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Header */
.app-header {
  margin-bottom: 24px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 20px 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trophy-badge {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}

.icon-gold {
  color: var(--accent-gold);
}

.icon-green {
  color: var(--accent-green);
}

.gradient-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 30%, #a7f3d0 70%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 400;
  margin-top: 2px;
}

.quick-stats {
  display: flex;
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
  padding: 10px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-width: 110px;
}

.button-stat {
  cursor: pointer;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: var(--transition-smooth);
}

.button-stat:hover {
  background: rgba(16, 185, 129, 0.12);
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.3);
}

.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}

.link-value {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-green);
}

.inline-icon {
  width: 16px;
  height: 16px;
}

/* Glassmorphism Panel styles */
.glass-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Slide-Down Sync Panel */
.sync-panel {
  margin-bottom: 24px;
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 4px solid var(--accent-green);
}

.hidden {
  display: none !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-icon {
  color: var(--accent-green);
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

/* Forms styling */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-group input {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.input-group input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.15);
}

.input-help {
  font-size: 11px;
  color: var(--text-muted);
}

.panel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-green);
  border: 1px solid var(--accent-green);
  color: #06090e;
}

.btn-primary:hover {
  background: #0ea572;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.sync-spinner-active {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sync-log-area {
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 12px;
  font-family: monospace;
  font-size: 12px;
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.log-title {
  font-weight: bold;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.log-entry {
  margin-bottom: 4px;
}

.log-info { color: #3b82f6; }
.log-success { color: var(--accent-green); }
.log-error { color: #ef4444; }

/* Main Grid Layout */
.main-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  align-items: stretch;
  flex: 1;
  min-height: 0;
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  body {
    overflow: auto;
    height: auto;
  }
  .app-container {
    height: auto;
    display: block;
    overflow: visible;
  }
  .main-layout {
    grid-template-columns: 1fr;
    align-items: start;
    height: auto;
  }
  .glass-panel {
    display: block;
    height: auto;
  }
  .leaderboard-table-container {
    height: auto;
    overflow-y: visible;
  }
  .matches-list {
    height: auto;
    max-height: 500px;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: nowrap;
  gap: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Search bar */
.search-box {
  position: relative;
  min-width: 240px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.search-box input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
  padding: 10px 14px 10px 36px;
  border-radius: 12px;
  color: var(--text-primary);
  width: 100%;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.search-box input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.1);
}

/* Leaderboard Table styling */
.leaderboard-table-container {
  overflow-x: hidden;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.leaderboard-table th {
  padding: 14px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 600;
}

.leaderboard-table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 14.5px;
  vertical-align: middle;
}

.leaderboard-table tbody tr {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.leaderboard-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: scale(1.002);
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.col-rank { width: 80px; }
.col-player { font-weight: 500; }
.col-stats { width: 140px; }
.col-score { width: 120px; font-weight: 700; }

/* Rank Badge styling */
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.rank-gold {
  background: linear-gradient(135deg, #ffe082 0%, #f59e0b 100%);
  color: #6d4c00;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.rank-silver {
  background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
  color: #1e293b;
  box-shadow: 0 0 10px rgba(148, 163, 184, 0.3);
}

.rank-bronze {
  background: linear-gradient(135deg, #ffcc80 0%, #b7791f 100%);
  color: #3b2300;
  box-shadow: 0 0 10px rgba(183, 121, 31, 0.3);
}

/* User display in table */
.player-name-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 38px;
  min-width: 0;
  position: relative;
}

.player-display-name {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  transform: translateY(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-username {
  color: var(--text-secondary);
  font-size: 12.5px;
  font-style: italic;
  opacity: 0;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.2;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.leaderboard-table tbody tr:hover .player-display-name {
  transform: translateY(-7px);
  transition-delay: 1s;
}

.leaderboard-table tbody tr:hover .player-username {
  opacity: 0.8;
  transform: translateY(0);
  transition-delay: 1s;
}

.total-score-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-green);
}

.scoring-note {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Sidebar Matches List */
.matches-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.match-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition-smooth);
}

.match-item:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.match-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.match-stage {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.match-time {
  color: var(--text-secondary);
}

.match-vs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
}

.team-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  overflow: hidden;
}

.match-vs .team-wrapper {
  width: 40%;
}

.team-right-wrapper {
  justify-content: flex-end;
}

.team-name {
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.country-flag-img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  flex-shrink: 0;
}

.match-scores-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: 8px;
  min-width: 60px;
}

.score-display {
  font-size: 15px;
  font-weight: 800;
}

.score-pending {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
}

.score-separator {
  color: var(--text-muted);
  font-size: 12px;
}

/* Picks Side Drawer (Slide-out) */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 900;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.picks-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100vw;
  height: 100vh;
  background: rgba(11, 15, 23, 0.85);
  border-left: 1px solid var(--panel-border);
  backdrop-filter: blur(25px);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.player-info-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-green) 0%, #065f46 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.drawer-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.drawer-email {
  color: var(--text-secondary);
  font-size: 11.5px;
}

.drawer-score-strip {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 14px 10px;
}

.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strip-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

#drawer-total-score { color: var(--accent-green); }
#drawer-exact-count { color: var(--accent-gold); }
#drawer-outcome-count { color: var(--accent-blue); }

.strip-lbl {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.strip-divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.05);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.drawer-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Predictions list inside drawer */
.predictions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prediction-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

/* Color indicator based on score status */
.prediction-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
}

.prediction-card.status-exact::after { background-color: var(--outcome-exact); }
.prediction-card.status-outcome::after { background-color: var(--outcome-correct); }
.prediction-card.status-incorrect::after { background-color: var(--outcome-wrong); }
.prediction-card.status-pending::after { background-color: var(--outcome-pending); }

.pred-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
}

.pred-stage {
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
}

.pred-points-badge {
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.points-exact {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.points-outcome {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.points-incorrect {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.points-pending {
  background: rgba(75, 85, 99, 0.15);
  color: var(--text-secondary);
  border: 1px solid rgba(75, 85, 99, 0.2);
}

.pred-teams-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-family: var(--font-display);
  font-size: 13.5px;
}

.pred-team-name {
  font-weight: 600;
}

.pred-team-right {
  text-align: right;
}

.pred-scores-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 16px;
  border-radius: 8px;
  margin: 0 12px;
}

.pred-score-label {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.pred-score-val {
  font-size: 14px;
  font-weight: 800;
}

.pred-score-val.predicted {
  color: #93c5fd; /* Soft blue for predictions */
}

.pred-score-val.actual {
  color: var(--text-primary);
}

.pred-vs-arrow {
  color: var(--text-muted);
  font-size: 10px;
}

/* Scrollbar tweaks */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Picks ratio bar for match prediction breakdown */
.picks-ratio-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
  padding-top: 10px;
}

.picks-ratio-bar {
  display: flex;
  height: 6px;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.ratio-segment {
  height: 100%;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.segment-favored {
  background-color: var(--accent-green);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.25);
}

.segment-unfavored {
  background-color: var(--outcome-wrong);
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.25);
}

.segment-tie {
  background-color: #9ca3af; /* Light grey segment */
  box-shadow: 0 0 6px rgba(156, 163, 175, 0.2);
}

.picks-ratio-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
}

.ratio-lbl-a.favored, .ratio-lbl-b.favored, .team-name.favored {
  color: #34d399; /* Light green for favored */
}

.ratio-lbl-a.unfavored, .ratio-lbl-b.unfavored, .team-name.unfavored {
  color: #f87171; /* Light red for unfavored */
}

.ratio-lbl-tie {
  color: #d1d5db; /* Light grey label */
  font-size: 10.5px;
}

/* Warning Alert Banner */
.warning-banner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fca5a5;
  font-size: 13.5px;
  line-height: 1.5;
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 10;
}

.warning-banner i {
  color: #ef4444;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.warning-banner-title {
  font-weight: 700;
  color: #f87171;
  margin-right: 4px;
}

