:root {
  --bg-start: #031f2f;
  --bg-end: #083d43;
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --text: #f3fbff;
  --muted: #a5c5cd;
  --accent: #52ffe0;
  --accent-soft: rgba(82,255,224,0.15);
  --danger: #ff7c7c;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at top, #0c3b43, #031f2f 70%);
  overflow-x: hidden;
}

#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.app {
  position: relative;
  z-index: 1;
  padding: 3rem clamp(1.2rem, 4vw, 4rem) 4rem;
  max-width: 960px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.4rem, 8vw, 4rem);
  margin: 0.6rem 0 0.2rem;
}

.tagline {
  color: var(--muted);
  margin: 0 auto 0.4rem;
  max-width: 560px;
  line-height: 1.5;
}

.date,
.updated {
  color: var(--accent);
  font-weight: 500;
  margin: 0.2rem 0;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  background: var(--glass);
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.tab-btn {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background: rgba(82, 255, 224, 0.1);
  color: var(--accent);
}

.tab-btn.active {
  background: var(--accent);
  color: #042e33;
  box-shadow: 0 4px 12px rgba(82, 255, 224, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.nba-view-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.nba-toggle-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nba-toggle-btn.active {
  background: var(--accent);
  color: #042e33;
  box-shadow: 0 4px 12px rgba(82, 255, 224, 0.3);
}

.nba-view[hidden] {
  display: none;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  margin-bottom: 1.5rem;
}

.status {
  color: var(--muted);
}

.refresh {
  background: var(--accent);
  color: #042e33;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.refresh:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(82,255,224,0.35);
}

.games-grid {
  display: grid;
  gap: 1rem;
}

.game {
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: rgba(3, 31, 47, 0.7);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 20px 60px rgba(2, 12, 18, 0.45);
}
.game.has-prediction {
  border-color: rgba(82, 255, 224, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game.has-prediction:hover,
.game.has-prediction:focus-within {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 25px 70px rgba(82, 255, 224, 0.18);
}

.predicted-team {
  border-radius: 16px;
  background: rgba(82, 255, 224, 0.08);
  border: 1px solid rgba(82, 255, 224, 0.3);
  padding: 0.4rem 0.6rem;
  box-shadow: inset 0 0 25px rgba(82, 255, 224, 0.08);
}

.predicted-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(82, 255, 224, 0.16);
  border: 1px solid rgba(82, 255, 224, 0.4);
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-hint {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.85;
}

.game.has-prediction .modal-hint {
  color: var(--accent);
}

.tip {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.team {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  flex-shrink: 0;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.team .abbr {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.team .abbr.predicted-winner {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.team .name {
  font-size: 0.9rem;
  color: var(--muted);
}

.vs {
  font-size: 1rem;
  color: var(--muted);
}

.prediction-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(82, 255, 224, 0.12), rgba(82, 255, 224, 0.05));
  border: 1px solid rgba(82, 255, 224, 0.2);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.prediction-icon {
  font-size: 1.2rem;
}

.prediction-text {
  color: var(--accent);
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.meta div::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  background: var(--accent);
  margin-right: 0.45rem;
}

.empty-state {
  text-align: center;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--muted);
}

@media (max-width: 640px) {
  .controls {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
  }

  .teams {
    flex-direction: column;
    align-items: stretch;
  }

  .team {
    justify-content: flex-start;
  }

  .vs {
    text-align: center;
    padding: 0.5rem 0;
  }

  .meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-logo {
    width: 40px;
    height: 40px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: linear-gradient(145deg, rgba(8, 61, 67, 0.95), rgba(3, 31, 47, 0.98));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-matchup {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-tipoff {
  color: var(--muted);
  font-size: 0.9rem;
}

.modal-prediction {
  text-align: center;
  padding: 1.5rem;
  background: var(--glass);
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.prediction-winner {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.prediction-confidence {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.prediction-bar {
  display: flex;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.bar-home {
  background: var(--accent);
  transition: width 0.3s ease;
}

.bar-away {
  background: var(--muted);
  transition: width 0.3s ease;
}

.modal-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.team-sentiment {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.team-label {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--accent);
}

.sentiment-score {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sentiment-details {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.modal-upset-alert {
  padding: 1rem;
  background: rgba(255, 124, 124, 0.15);
  border: 1px solid rgba(255, 124, 124, 0.4);
  border-radius: 12px;
  color: var(--danger);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  display: none;
}

.modal-upset-alert.active {
  display: block;
}

.modal-footer {
  text-align: center;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

/* Game card hover effect */
.game {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.game.has-prediction::after {
  content: '📊 Click for details';
  display: block;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
  color: var(--accent);
  text-align: center;
}

/* Parlay Styles */
.parlay-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.parlay-header {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  margin-bottom: 1rem;
}

.parlay-header h2 {
  margin: 0 0 0.5rem 0;
  color: #ffd700;
  font-size: 1.8rem;
}

.parlay-odds {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.5rem 0;
}

.parlay-probability {
  color: var(--muted);
  font-size: 1.1rem;
}

.parlay-card {
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: rgba(3, 31, 47, 0.7);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(2, 12, 18, 0.45);
  position: relative;
  overflow: hidden;
}

.parlay-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
}

.parlay-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.parlay-rank {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.rank-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #042e33;
}

.parlay-confidence {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(82, 255, 224, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.parlay-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.player-info h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.5rem;
  color: var(--text);
}

.player-team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
}

.team-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.parlay-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.parlay-context {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.95rem;
  color: var(--muted);
}

.opponent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.venue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer {
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 2rem;
}

/* Confidence badge */
.confidence-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.confidence-badge .rank {
  background: var(--accent);
  color: #042e33;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.confidence-badge .conf {
  background: rgba(82, 255, 224, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
}

/* Make game cards position relative for badge */
.game {
  position: relative;
}

/* Player Props Section */
.player-props-section {
  margin-top: 1.5rem;
}

.props-content {
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: rgba(3, 31, 47, 0.7);
  padding: 1.5rem;
}

.props-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.props-count {
  font-size: 0.9rem;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.props-grid {
  display: grid;
  gap: 0.75rem;
}

.props-controls {
  margin-bottom: 1rem;
}

.props-grid {
  display: grid;
  gap: 0.75rem;
}

.prop-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  align-items: center;
}

.prop-player-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prop-player-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(82, 255, 224, 0.1);
  flex-shrink: 0;
}

.prop-player-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.prop-player {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.prop-player-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.prop-player-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.prop-pick {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  min-width: 120px;
}

.prop-recommendation {
  font-weight: 700;
  font-size: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.prop-recommendation.OVER {
  background: rgba(82, 255, 224, 0.2);
  color: var(--accent);
}

.prop-recommendation.UNDER {
  background: rgba(255, 124, 124, 0.2);
  color: var(--danger);
}

.prop-recommendation.PASS {
  background: rgba(165, 197, 205, 0.2);
  color: var(--muted);
}

.prop-line {
  font-size: 0.85rem;
  color: var(--muted);
}

.prop-confidence {
  font-size: 0.75rem;
  color: var(--accent);
}

.prop-vibes {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.15rem 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  white-space: nowrap;
}

.prop-sentiment {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.85;
}

.prop-reason {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.9;
}

.prop-stats {
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--glass-border);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .prop-card {
    grid-template-columns: 1fr;
  }
  
  .prop-pick {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* Performance Tab */
.perf-header {
  text-align: center;
  margin-bottom: 2rem;
}

.perf-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--text);
}

.perf-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.perf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.perf-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
}

.perf-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--accent);
}

.perf-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(165, 197, 205, 0.1);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-value {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
}

.stat-value.highlight {
  color: var(--accent);
  font-size: 1.3rem;
}

.perf-breakdown {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.breakdown-title {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.breakdown-row span:first-child {
  color: var(--muted);
}

.breakdown-row span:last-child {
  color: var(--text);
  font-weight: 500;
}

.perf-recent {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.perf-recent h3 {
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  color: var(--text);
}

.recent-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.recent-day {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
}

.recent-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.recent-result {
  font-weight: 700;
  font-size: 1.1rem;
}

.recent-result.rate-good {
  color: var(--accent);
}

.recent-result.rate-bad {
  color: var(--danger);
}

.empty-text {
  color: var(--muted);
  font-style: italic;
}

.perf-disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Today's Picks Summary */
.picks-summary {
  background: linear-gradient(135deg, rgba(82, 255, 224, 0.1), rgba(82, 255, 224, 0.05));
  border: 1px solid rgba(82, 255, 224, 0.25);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.picks-summary h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.picks-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.pick-game {
  font-size: 0.9rem;
  color: var(--muted);
  min-width: 140px;
}

.pick-selection {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.pick-winner {
  font-size: 1rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.pick-confidence {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 100px;
  justify-content: flex-end;
}

.conf-bar {
  width: 60px;
  height: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  overflow: hidden;
}

.conf-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ffd700);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.conf-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 45px;
  text-align: right;
}

.pick-rank {
  background: var(--accent);
  color: #042e33;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  min-width: 28px;
  text-align: center;
}

@media (max-width: 640px) {
  .pick-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .pick-confidence {
    width: 100%;
    justify-content: flex-start;
  }
}
