/* Адаптация к теме сайта */
.bg-light {
  background-color: var(--dark-lighter) !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: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.download-section {
  background: var(--gradient-2);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.platform-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  margin: 0.5rem;
  font-weight: 500;
}

.comparison-table {
  background: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
}

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

.comparison-table thead {
  background: var(--gradient-1);
}

.comparison-table th {
  border: none;
  padding: 1rem;
  font-weight: 600;
}

.comparison-table td {
  border-color: var(--border-color);
  padding: 0.875rem 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.highlight-box {
  background: var(--dark-card);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.specs-list {
  list-style: none;
  padding: 0;
}

.specs-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
}

.specs-list li:last-child {
  border-bottom: none;
}

.specs-list strong {
  color: var(--accent-color);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}