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

.card {
  background: var(--dark-slate);
  border: 1px solid var(--dark-steel);
  transition: var(--transition-smooth);
}

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

.table {
  color: var(--light-pearl);
  border-color: var(--dark-steel);
}

.table thead {
  background: var(--dark-obsidian);
  border-bottom: 2px solid var(--accent-electric);
}

.table tbody tr {
  border-bottom: 1px solid var(--dark-steel);
}

.table tbody tr:hover {
  background-color: var(--dark-slate);
}

.game-category {
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--dark-slate) 0%, var(--dark-obsidian) 100%);
  border-left: 4px solid var(--accent-electric);
}

.feature-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-fire);
  border-radius: 20px;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.provider-logo {
  width: 100%;
  height: 60px;
  background: var(--dark-obsidian);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent-turquoise);
  border: 1px solid var(--dark-steel);
}