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

/* Адаптация к теме */
.bg-dark {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border);
}

.bg-light {
  background-color: var(--surface) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
}

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

.bonus-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: white;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.bonus-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-warm);
  margin: 1rem 0;
}

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

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

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255,255,255,0.05);
}

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

.requirements-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.requirements-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.promo-highlight {
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  margin: 2rem 0;
}

.promo-highlight h3 {
  color: white;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .bonus-value {
    font-size: 2rem;
  }
}