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

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

.bg-light {
  background-color: #f8f9fa !important;
  color: var(--text) !important;
  border: 1px solid rgba(0,0,0,0.08);
}

.card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

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

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

.table thead {
  background: var(--primary);
  color: #ffffff;
  border-bottom: 2px solid var(--primary-dark);
}

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

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

.bonus-highlight {
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.1) 0%, transparent 100%);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.terms-section {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  margin-top: 3rem;
}

.btn-primary {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

@media (max-width: 768px) {
  .card {
    margin-bottom: 1.5rem;
  }
  
  .table-responsive {
    font-size: 0.9rem;
  }
}