/* Theme adaptation for dark site */
.bg-light {
  background-color: #1a2332 !important;
  color: #e8edf2 !important;
}

.card {
  border: 1px solid rgba(79, 209, 197, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(79, 209, 197, 0.3);
}

.table {
  color: #e8edf2;
  border-color: rgba(79, 209, 197, 0.2);
}

.table-dark {
  --bs-table-bg: #0f1419;
  --bs-table-striped-bg: #1a2332;
  --bs-table-border-color: rgba(79, 209, 197, 0.2);
}

.table thead {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  border-bottom: 2px solid rgba(79, 209, 197, 0.3);
  color: #ffffff;
}

.table tbody tr:hover {
  background-color: rgba(79, 209, 197, 0.1);
}

.badge {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.sport-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4fd1c5;
}

.odds-box {
  background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
  border: 2px solid rgba(79, 209, 197, 0.3);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.odds-box:hover {
  border-color: #4fd1c5;
  box-shadow: 0 0 20px rgba(79, 209, 197, 0.4);
}

.feature-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4fd1c5;
  font-weight: bold;
}