.bg-light {
  background-color: #1a1d29 !important;
  color: #e8e9ed !important;
}

.bg-dark {
  background-color: #0d0f14 !important;
  color: #e8e9ed !important;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

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

.table {
  color: #e8e9ed;
  border-color: rgba(255, 255, 255, 0.1);
}

.table-dark {
  --bs-table-bg: #1a1d29;
  --bs-table-striped-bg: #242838;
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
  --bs-table-color: #e8e9ed;
}

.table thead {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-bottom: 2px solid var(--color-accent);
  color: #fff;
}

.table tbody tr {
  transition: var(--transition);
}

.table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.sport-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.odds-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--gradient-primary);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 2rem;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.bet-type-card {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
}

.cta-highlight {
  background: var(--gradient-hero);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}