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

/* Адаптация к теме сайта */
.bg-light {
  background-color: var(--dark-lighter) !important;
  color: var(--text-primary) !important;
}

.bg-dark {
  background-color: var(--dark-card) !important;
  color: var(--text-primary) !important;
}

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

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

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

.download-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-2);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.download-badge:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
  color: white;
}

.comparison-table {
  background: var(--dark-card);
  border-radius: 10px;
  overflow: hidden;
}

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

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

.table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.table tbody tr:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--accent);
  font-weight: bold;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.cta-box {
  background: var(--gradient-overlay);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.system-requirements {
  background: var(--dark-lighter);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}