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

/* Адаптация к светлой теме */
.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%) !important;
  color: var(--text) !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);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #9ee933 0%, #09e41f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000000;
}

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

.table thead {
  background: #1a1a1a;
  border-bottom: 2px solid #9ee933;
}

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

.badge-feature {
  background: linear-gradient(135deg, #9ee933 0%, #09e41f 100%);
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin: 0.25rem;
}

.download-section {
  background: var(--gradient-dark);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #9ee933;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000000;
  margin-right: 1rem;
  flex-shrink: 0;
}

.comparison-row {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 0;
}

.btn-primary {
  background: #9ee933;
  color: #000000;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  background: #09e41f;
}

.alert-info {
  background: rgba(9, 228, 31, 0.1);
  border-left: 4px solid #09e41f;
  color: var(--text);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .download-section {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}