* {
  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;
}

.main-content {
  padding-top: 80px;
}

.main-content h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  background: linear-gradient(45deg, #00ff00, #00cc88);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Controls Container - Unified like other pages */
.controls-container {
  max-width: 800px;
  margin: 0 auto 30px auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.selector-group {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px 20px;
}

.selector-group label {
  color: #ccc;
  font-size: 0.9rem;
  min-width: 80px;
}

.selector-group select {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  color: white;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
  min-width: 150px;
}

select:focus {
  outline: none;
  border-color: #00ff00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Calendar Controls - matches NBA/MLB/NHL */
.calendar-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.date-input {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 10px 15px;
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
}

.date-input:focus {
  outline: none;
  border-color: #00ff00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.date-btn {
  background: linear-gradient(45deg, #00ff00, #00cc88);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.date-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
}

.selected-date {
  text-align: center;
  font-size: 1.1rem;
  color: #00ff00;
  font-weight: bold;
  margin: 20px 0;
}

/* Loading Spinner */
.loading {
  text-align: center;
  padding: 40px;
  font-size: 1.2rem;
  color: #00ff00;
}

.spinner {
  border: 4px solid rgba(0, 255, 0, 0.1);
  border-left: 4px solid #00ff00;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* NCAA Game Containers */
#ncaa-game-containers {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
}

.gc-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(170deg, #111827 0%, #0a0f1e 100%);
  border: 1.5px solid rgba(255,255,255,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.gc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #14b8a6, #22c55e);
}
.gc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20,184,166,0.12);
  border-color: rgba(20,184,166,0.25);
}
.gc-card.live-game {
  border-color: rgba(239,68,68,0.3);
}
.gc-card.live-game::before {
  background: linear-gradient(90deg, #ef4444, #f59e0b);
}
.gc-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 0;
}
.gc-datetime {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}
.gc-status-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.gc-status-pill.pre {
  background: rgba(20,184,166,0.12);
  color: #14b8a6;
}
.gc-status-pill.in {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  animation: gc-pulse 1.5s ease-in-out infinite;
}
.gc-status-pill.post {
  background: rgba(148,163,184,0.1);
  color: #94a3b8;
}
@keyframes gc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.gc-versus {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 14px 12px 10px;
  position: relative;
}
.gc-versus::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(20,184,166,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.gc-card.live-game .gc-versus::before {
  background: radial-gradient(ellipse at 50% 60%, rgba(239,68,68,0.08) 0%, transparent 60%);
}
.gc-team-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}
.gc-team-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  max-width: 100%;
  overflow: hidden;
}
.gc-team-logo {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 5px;
  background: rgba(255,255,255,0.12);
  padding: 2px;
}
.gc-team-label {
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gc-avatar {
  width: 130px;
  height: 130px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 2px solid rgba(20,184,166,0.15);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45), 0 0 16px rgba(20,184,166,0.06);
  margin-bottom: 8px;
}
.gc-card.live-game .gc-avatar {
  border-color: rgba(239,68,68,0.2);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45), 0 0 16px rgba(239,68,68,0.08);
}
.gc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gc-score {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.gc-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  flex-shrink: 0;
  width: 40px;
  position: relative;
  z-index: 1;
}
.gc-vs-text {
  font-size: 14px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  letter-spacing: 2px;
}

.gc-card .betting-section,
.gc-card .stats-section,
.gc-card .game-action-buttons,
.gc-card .hie-signal-hint {
  padding-left: 18px;
  padding-right: 18px;
}
.gc-card .game-action-buttons {
  display: flex; gap: 10px; padding-bottom: 18px;
}
.gc-card .game-action-buttons .create-bet-btn { flex: 1; }
.gc-card .game-action-buttons .add-to-parlay-btn { flex: 0 0 auto; }
.gc-card .stats-section {
  padding-bottom: 4px;
}
.gc-card .betting-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  padding-bottom: 4px;
}

.gc-rank-badge {
  font-size: 10px;
  font-weight: 800;
  color: #ffd700;
  background: rgba(255,215,0,0.12);
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 2px;
}

/* Stats section styling */
.stats-section {
  width: 100%;
  margin: 15px 0;
}

.stats-toggle-btn {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  color: #00ff00;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.stats-toggle-btn:hover {
  background: rgba(0, 255, 0, 0.2);
  transform: translateY(-1px);
}

.stats-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.stats-content {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding: 0 15px;
  }
  to {
    opacity: 1;
    max-height: 500px;
    padding: 15px;
  }
}

.loading-stats {
  text-align: center;
  color: #00cc88;
  font-style: italic;
  padding: 10px;
}

.stats-error {
  text-align: center;
  color: #ff6666;
  font-style: italic;
  padding: 10px;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.team-records h4 {
  color: #00ff00;
  margin-bottom: 10px;
  font-size: 1rem;
  text-align: center;
}

.records {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.record {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.record-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px;
}

.record strong {
  color: #00ff00;
  font-size: 0.9rem;
}

.record span {
  font-size: 1.1rem;
  color: white;
  font-weight: bold;
}

.team-stats-section h4 {
  color: #00ff00;
  margin-bottom: 10px;
  font-size: 1rem;
  text-align: center;
}

.team-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-label {
  color: #ccc;
  font-size: 0.85rem;
}

.stat-value {
  color: #00ff00;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Betting Odds Section Styles */
.betting-odds-section {
  background: rgba(0, 255, 0, 0.05);
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 12px;
  padding: 15px;
  margin: 0;
  backdrop-filter: blur(5px);
}

.betting-provider {
  font-size: 0.9rem;
  color: #00cc88;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.betting-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.betting-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.betting-item {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.betting-item:hover {
  background: rgba(0, 255, 0, 0.1);
  border-color: rgba(0, 255, 0, 0.3);
  transform: translateY(-1px);
}

.betting-label {
  font-size: 0.8rem;
  color: #ccc;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.betting-value {
  font-size: 1rem;
  color: #00ff00;
  font-weight: bold;
}

/* Betting Toggle Styles */
.betting-section {
  width: 100%;
  margin: 15px 0;
}

.betting-toggle-btn {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  color: #00ff00;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.betting-toggle-btn:hover {
  background: rgba(0, 255, 0, 0.2);
  transform: translateY(-1px);
}

.betting-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.betting-content {
  margin-top: 10px;
  animation: slideDown 0.3s ease;
}

.create-bet-btn {
  width: 100%;
  background: linear-gradient(45deg, #00ff00, #00cc88);
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.create-bet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 0, 0.4);
  background: linear-gradient(45deg, #00cc88, #00ff00);
}

.no-games {
  text-align: center;
  padding: 40px;
  color: #999;
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

.sports-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.sports-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.sports-btn:hover {
  background: rgba(0, 255, 0, 0.1);
  border-color: #00ff00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.sports-btn img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.sports-btn a {
  text-decoration: none;
}

.open-bets {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.open-bets h3 {
  color: #00ff00;
  margin-bottom: 15px;
  text-align: center;
}

.open-bets ul {
  list-style: none;
}

.open-bets li {
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 8px;
  border-radius: 8px;
  border-left: 3px solid #00ff00;
}

.back-button {
  text-align: center;
  margin-top: 50px;
}

.back-button a {
  color: #00ff00;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 15px 30px;
  border: 2px solid #00ff00;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-block;
}

.back-button a:hover {
  background: rgba(0, 255, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

/* NCAA Basketball Betting Modal Styles - Card-Based Design */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-container {
  background: linear-gradient(135deg, rgba(26, 35, 75, 0.98) 0%, rgba(15, 20, 50, 0.98) 100%);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.15);
  background: rgba(0, 0, 0, 0.2);
}

.modal-header h2 {
  color: #00ff88;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  text-align: center;
}

.modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 100, 100, 0.3);
  color: #ff6666;
}

.modal-content {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.context-info {
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.betting-form-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bet Type Cards */
.bet-type-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bet-type-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bet-type-card:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-2px);
}

.bet-type-card.selected {
  background: rgba(0, 255, 136, 0.15);
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.bet-type-card .icon {
  font-size: 1.5rem;
}

.bet-type-card .label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* Team Selection Cards */
.team-cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.team-card:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-3px);
}

.team-card.selected {
  background: rgba(0, 255, 136, 0.15);
  border-color: #00ff88;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.25);
}

.team-card .team-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.team-card .team-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.team-card .team-odds {
  font-size: 1.1rem;
  font-weight: bold;
  color: #00ff88;
}

.vs-badge {
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #00ff88;
  font-size: 0.9rem;
}

/* Over/Under Cards */
.ou-cards-container {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.ou-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 180px;
}

.ou-card:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
}

.ou-card.selected {
  background: rgba(0, 255, 136, 0.15);
  border-color: #00ff88;
}

.ou-card .ou-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.ou-card .ou-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Amount Buttons */
.amount-buttons-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.amount-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  min-width: 70px;
}

.amount-btn:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
}

.amount-btn.selected {
  background: rgba(0, 255, 136, 0.2);
  border-color: #00ff88;
  color: #00ff88;
}

.custom-amount-input {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: white;
  font-size: 1rem;
  width: 100%;
  max-width: 200px;
  text-align: center;
  transition: all 0.3s ease;
}

.custom-amount-input:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

/* Floating Bet Summary Footer */
.bet-summary-footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 1px solid rgba(0, 255, 136, 0.2);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bet-summary-text {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.bet-summary-text .highlight {
  color: #00ff88;
  font-weight: 600;
}

.bet-summary-text .potential-win {
  color: #ffd700;
  font-weight: 600;
}

.place-bet-btn {
  background: linear-gradient(135deg, #00ff88 0%, #00cc88 100%);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #0a0e27;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin: 0 auto;
}

.place-bet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.place-bet-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-select {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-select:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.form-select option {
  background: #1a1e3a;
  color: white;
  padding: 12px;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
  .modal-container {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .modal-header h2 {
    font-size: 1.2rem;
  }

  .bet-type-cards {
    flex-wrap: nowrap;
  }

  .bet-type-card {
    padding: 12px 8px;
    min-width: 80px;
  }

  .bet-type-card .icon {
    font-size: 1.2rem;
  }

  .bet-type-card .label {
    font-size: 0.75rem;
  }

  .team-cards-container {
    flex-direction: row;
    gap: 10px;
  }

  .team-card {
    padding: 15px 10px;
    max-width: 45%;
  }

  .team-card .team-logo {
    width: 50px;
    height: 50px;
  }

  .team-card .team-name {
    font-size: 0.8rem;
  }

  .vs-badge {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .team-card .team-logo {
    width: 40px;
    height: 40px;
  }

  .amount-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
    min-width: 60px;
  }
}

/* Keep existing form-input styles */
.form-input {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive for betting odds */
@media (max-width: 768px) {
  .betting-odds-section {
    padding: 12px;
  }

  .betting-provider {
    font-size: 0.8rem;
  }

  .betting-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .betting-item {
    padding: 8px;
  }

  .betting-label {
    font-size: 0.75rem;
  }

  .betting-value {
    font-size: 0.9rem;
  }

  .betting-toggle-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .betting-section {
    margin: 12px 0;
  }
}

/* Mobile Optimization - Comprehensive like other pages */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .controls-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0 10px 20px 10px;
  }

  .selector-group, .date-controls {
    width: 100%;
    justify-content: space-between;
  }

  .selector-group label {
    min-width: 60px;
    font-size: 0.8rem;
  }

  .selector-group select {
    min-width: 120px;
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .calendar-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    padding: 12px;
    max-width: 100%;
  }

  .calendar-controls .date-btn:first-child {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }

  .calendar-controls .date-input {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .calendar-controls .date-btn:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
  }

  .calendar-controls .date-btn:last-child {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  .date-btn {
    font-size: 0.7rem;
    padding: 6px 10px;
    min-height: unset;
    min-width: unset;
    white-space: nowrap;
  }

  .date-input {
    font-size: 0.8rem;
    padding: 6px 8px;
    min-height: unset;
    width: auto;
    min-width: 0;
  }

  /* Game containers mobile optimization */
  #ncaa-game-containers {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 480px;
  }

  .gc-avatar { width: 100px; height: 100px; border-radius: 12px; }
  .gc-team-label { font-size: 11px; }
  .gc-score { font-size: 22px; }
  .gc-vs-divider { padding-top: 45px; width: 30px; }
  .gc-vs-text { font-size: 12px; }
  .gc-status-bar { padding: 10px 14px 0; }
  .gc-card .betting-section,
  .gc-card .stats-section,
  .gc-card .game-action-buttons { padding-left: 14px; padding-right: 14px; }

  .main-content {
    padding: 0 10px;
  }

  .main-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {

  .main-content h2 {
    font-size: 1.4rem;
  }

  .selector-group, .date-controls {
    padding: 10px 15px;
  }

  .selector-group label {
    font-size: 0.7rem;
    min-width: 50px;
  }

  .selector-group select, .date-input {
    font-size: 0.7rem;
    padding: 5px 8px;
  }

  .date-btn {
    font-size: 0.6rem;
    padding: 5px 10px;
  }
}

/* Open Bets Section Styles */
.open-bets-modern {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  margin: 0 20px 40px 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.open-bets-modern h3 {
  color: #00ff00;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.bets-table-container {
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 0, 0.3) transparent;
}

.bets-table-container::-webkit-scrollbar {
  width: 8px;
}

.bets-table-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.bets-table-container::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #00ff00, #00cc88);
  border-radius: 10px;
}

.loading-bets {
  text-align: center;
  padding: 30px;
  color: #00ff00;
  font-style: italic;
  font-size: 1.1rem;
}

.bet-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr 140px;
  gap: 15px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bet-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff00, #00cc88, #0099ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bet-row:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 0, 0.15);
}

.bet-row:hover::before {
  opacity: 1;
}

.bet-game {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}

.game-matchup {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}

.game-details {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.game-datetime {
  font-size: 0.9rem;
  color: #00cc88;
  font-weight: 500;
}

.game-status {
  font-size: 0.85rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-status.scheduled {
  background: rgba(153, 153, 153, 0.2);
  color: #999;
}

.game-status.live {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  animation: pulse-status 2s infinite;
}

.game-status.final {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
}

@keyframes pulse-status {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.bet-creator {
  font-size: 0.8rem;
  color: #00ff00;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.message-user-btn {
  background: linear-gradient(45deg, #0099ff, #0077cc);
  color: white;
  border: none;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.message-user-btn:hover {
  background: linear-gradient(45deg, #0077cc, #0099ff);
  transform: scale(1.05);
}

.bet-type {
  color: #00cc88;
  font-size: 1rem;
  font-weight: 500;
}

.bet-amount {
  color: #ff9900;
  font-size: 1.2rem;
  font-weight: bold;
}

.bet-action {
  display: flex;
  justify-content: flex-end;
}

.join-btn {
  background: linear-gradient(45deg, #00ff00, #00cc88);
  color: #000;
  border: none;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 255, 0, 0.2);
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 255, 0, 0.4);
  background: linear-gradient(45deg, #00cc88, #00ff00);
}

.join-btn:active {
  transform: translateY(-1px);
}

.bet-row.open-bet {
  border: 2px solid #ff6600;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
  }
}

.bet-row.live-game {
  border: 2px solid #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  }
}

.bet-row.live-game .game-status {
  color: #ff0000;
  font-weight: bold;
  text-transform: uppercase;
}

.bet-row.live-game .game-status::before {
  content: "● ";
  color: #ff0000;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

/* ===========================================
   MOBILE RESPONSIVE STYLES - matches NBA page
   =========================================== */

@media (max-width: 768px) {
  body {
    padding: 0;
    margin: 0;
    font-size: 14px;
  }

  /* Main content mobile optimization */
  .main-content {
    padding: 0 10px;
  }

  .main-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  /* Controls container mobile optimization */
  .controls-container {
    flex-direction: column;
    gap: 15px;
    margin: 0 10px 20px 10px;
  }

  .selector-group {
    padding: 12px 15px;
    width: 100%;
    justify-content: center;
  }

  .selector-group label {
    font-size: 1rem;
  }

  .selector-group select {
    font-size: 0.9rem;
    padding: 8px 12px;
    min-width: 120px;
  }

  .selected-date {
    font-size: 1rem;
    margin: 15px 0;
  }

  /* Sports buttons mobile */
  .sports-buttons {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 15px 10px;
  }

  .sports-btn {
    width: 60px;
    height: 60px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sports-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sports-btn img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .main-content h2 {
    font-size: 1.3rem;
  }

  .sports-btn {
    width: 50px;
    height: 50px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sports-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sports-btn img {
    width: 35px;
    height: 35px;
  }
}
