/* Theme adaptation for dark site */
.bg-light {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.08) 0%, rgba(75, 0, 130, 0.08) 100%) !important;
  border: 1px solid rgba(138, 43, 226, 0.2);
  color: var(--text-primary) !important;
}

.bg-dark {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(75, 0, 130, 0.15) 100%) !important;
  border: 1px solid rgba(138, 43, 226, 0.3);
  color: var(--text-primary) !important;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.table {
  color: var(--text-primary);
  border-color: rgba(138, 43, 226, 0.2);
}

.table thead {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(75, 0, 130, 0.2) 100%);
  border-bottom: 2px solid rgba(138, 43, 226, 0.4);
}

.table tbody tr {
  border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

.table tbody tr:hover {
  background: rgba(138, 43, 226, 0.05);
}

.game-category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-glow);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.provider-logo-placeholder {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(75, 0, 130, 0.1) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid rgba(138, 43, 226, 0.2);
}