/* Адаптация под темную тему */
.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);
}

.card {
  background: var(--card-bg);
  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: var(--shadow-lg);
}

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

.download-section {
  background: var(--gradient-accent);
  border-radius: 16px;
  padding: 3rem;
  margin: 3rem 0;
}

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

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

.comparison-table th {
  background: var(--dark-bg);
  color: var(--text-primary);
  padding: 1.2rem;
  border: none;
}

.comparison-table td {
  padding: 1rem 1.2rem;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.1);
}

.comparison-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}

.checkmark {
  color: #4ade80;
  font-size: 1.3rem;
}

.platform-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--primary-color);
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 0.3rem;
}

.requirements-list {
  list-style: none;
  padding-left: 0;
}

.requirements-list li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
}

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

.app-preview {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 2rem 0;
}

.btn-download {
  background: var(--accent-color);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-download:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

@media screen and (max-width: 768px) {
  table {
    display: block !important;
    overflow: scroll !important;
  }
}