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

/* Адаптация к темной теме */
.bg-light {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-lighter) 100%) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.bg-dark,
.bg-dark * {
  color: #ffffff !important;
}

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

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

.table-dark {
  --bs-table-bg: var(--dark-card);
  --bs-table-striped-bg: var(--dark-lighter);
  --bs-table-border-color: var(--border-color);
}

.table-dark td,
.table-dark th {
  color: #000000 !important;
}

.table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-bottom: 2px solid var(--accent);
}

.game-category {
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  background: var(--dark-card);
  border: 1px solid var(--border-color);
}

.game-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--dark-lighter);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.game-stat h3 {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "🎮";
  position: absolute;
  left: 0;
  top: 0.75rem;
}

.jackpot-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.jackpot-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}