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

/* Адаптация к светлой теме */
.bg-dark {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark) 100%) !important;
  border: 1px solid rgba(255,255,255,0.1);
}

.bg-light {
  background: var(--secondary) !important;
  border: 1px solid rgba(0,0,0,0.05);
}

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

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

.bonus-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.feature-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
  font-size: 1.2rem;
}

.terms-box {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--accent);
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.table-responsive {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.table {
  color: var(--text);
  margin-bottom: 0;
}

.table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
}

.table thead th {
  border: none;
  padding: 15px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background-color 0.2s ease;
}

.table tbody tr:hover {
  background-color: rgba(0,0,0,0.02);
}

.table td {
  padding: 15px;
  vertical-align: middle;
}

.promo-highlight {
  background: var(--gradient-secondary);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-primary {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

.bonus-type-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .bonus-amount {
    font-size: 2rem;
  }
  
  .promo-highlight {
    padding: 25px 15px;
  }
}