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

/* Адаптация под светлую/темную тему */
.bg-light {
  background-color: var(--light) !important;
  color: var(--text) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
  color: var(--light) !important;
}

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

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

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

.payment-icon {
  width: 60px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  margin-right: 1rem;
}

.feature-box {
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

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

.card:hover {
  box-shadow: var(--shadow-lg);
}

.badge-custom {
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
}

.info-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
}