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

/* Адаптация под светлую тему */
.bg-dark {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-coral)) !important;
  color: var(--text-light) !important;
  border: none !important;
}

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

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

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--accent-yellow);
  color: var(--dark-navy);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-coral);
  color: var(--text-light);
  transform: scale(1.05);
}

.bonus-badge {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--dark-navy);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.table-responsive {
  margin-bottom: 2rem;
}

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

.table thead {
  background: var(--primary-teal);
  color: var(--text-light);
  border-bottom: 2px solid rgba(0,0,0,0.1);
}

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

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

.lead {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.promo-highlight {
  background: var(--surface-light);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-coral);
  border-radius: 8px;
  margin-bottom: 2rem;
}

h1 {
  color: var(--primary-teal);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

h2 {
  color: var(--primary-coral);
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  color: var(--button-primary);
  font-weight: 600;
}

.bonus-terms {
  background: var(--surface-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.bonus-terms ul {
  margin-bottom: 0;
}

.bonus-terms li {
  margin-bottom: 0.5rem;
}

/* Step card titles - pink color */
.bg-dark .card-title {
  color: var(--primary-coral);
}