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

/* Адаптация к светлой теме */
.bg-dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: var(--surface-light) !important;
  border: none !important;
}

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

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--surface-light);
  margin-bottom: 1rem;
}

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

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

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

.table td, .table th {
  padding: 1rem;
  vertical-align: middle;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.promo-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  padding: 2rem;
  border-radius: 12px;
  color: var(--surface-light);
  margin-bottom: 2rem;
}

.terms-box {
  background: var(--surface);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
}