/* Theme Adaptation - Dark Site */
h1 {
  margin-top: 2rem;
}

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

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.table-dark {
  --bs-table-bg: var(--dark-soft);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary) !important;
}

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

.table thead th {
  color: var(--text-primary);
}

.table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table tbody td {
  color: var(--text-primary);
}

.game-category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.provider-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}