/* Защита от горизонтального скролла */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

/* Адаптация под светлую тему */
.bg-dark {
  background: linear-gradient(135deg, var(--dark-blue), var(--dark)) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255,255,255,0.1);
}

.bg-light {
  background-color: rgba(255,255,255,0.05) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255,255,255,0.1);
}

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

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

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

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

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

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

.game-category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--accent);
}

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

.feature-highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.provider-logo {
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}