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

/* Адаптация под темную тему */
.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

.game-category {
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.provider-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  border-radius: 50px;
  margin: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.game-feature {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--accent);
  margin-bottom: 1rem;
}

.stats-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  color: #000;
}

.stats-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000 !important;
  margin-bottom: 0.5rem;
}

.stats-box p {
  color: #000 !important;
}

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