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

/* Адаптация к темной теме */
.bg-light {
  background-color: var(--dark-lighter) !important;
  color: var(--text) !important;
}

.card {
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.bonus-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.bonus-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

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

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

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

.table tbody tr {
  border-bottom: 1px solid var(--border);
}

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

.terms-box {
  background-color: var(--dark-card);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-radius: 0.5rem;
}

.promo-code {
  background: var(--dark-lighter);
  padding: 0.75rem 1.5rem;
  border: 2px dashed var(--accent);
  border-radius: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin: 1rem 0;
}

.progress-step {
  background: var(--dark-lighter);
  padding: 1.5rem;
  border-radius: 0.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.progress-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

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