/* Dark theme adaptations */
.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-hover);
}

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

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

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

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

.download-badge {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gradient-2);
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

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

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

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

.highlight-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.app-preview {
  background: var(--dark-bg);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .download-badge {
    display: block;
    margin-right: 0;
    text-align: center;
  }
}