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

.bg-dark {
  background-color: var(--dark-card, rgba(0, 0, 0, 0.3)) !important;
  color: var(--text-primary, #ffffff) !important;
}

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

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

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

.table thead {
  background: var(--dark-card, rgba(0, 0, 0, 0.3));
  border-bottom: 2px solid var(--primary-coral, #ff6b6b);
}

.table-dark {
  --bs-table-bg: rgba(0, 0, 0, 0.2);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary-coral, #ff6b6b) 0%, var(--primary-teal, #4ecdc4) 100%);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.support-card {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--accent-lime, #95e1d3);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.warning-box {
  background: rgba(255, 107, 107, 0.1);
  border-left: 4px solid var(--primary-coral, #ff6b6b);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

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

.btn-primary:hover {
  background: var(--primary-teal, #4ecdc4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

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

ul.checklist li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

ul.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-lime, #95e1d3);
  font-weight: bold;
}