/* Адаптация под тему сайта */
.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--color-text) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-dark {
  background-color: var(--color-darker) !important;
  color: var(--color-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

.table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.alert-info {
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.1), rgba(var(--color-accent-rgb), 0.1));
  border-left: 4px solid var(--color-primary);
  color: var(--color-text);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

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

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

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

.support-box {
  background: var(--gradient-dark);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.support-box h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}
