.bg-light {
  background-color: #f8f9fa !important;
  color: #212529 !important;
}

.bg-dark {
  background-color: var(--dark) !important;
  color: var(--light) !important;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: #ffffff !important;
}

.bg-dark p,
.bg-dark li,
.bg-dark span,
.bg-dark small,
.bg-dark strong {
  color: rgba(255, 255, 255, 0.92) !important;
}

h1 {
  font-size: 2.25rem;
  line-height: 1.25;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.card {
  border: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.table {
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.1);
}

.table thead {
  background: var(--primary);
  color: white;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.badge-sport {
  background: var(--gradient-1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
}

.odds-box {
  background: var(--gradient-2);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 24px;
  color: white;
}