.bg-light {
  background-color: #1a1d29 !important;
  color: #e8e9ed !important;
}

.bg-dark {
  background-color: #0f1117 !important;
  color: #e8e9ed !important;
}

.card {
  border: 1px solid rgba(232, 233, 237, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.table {
  color: #e8e9ed;
  border-color: rgba(232, 233, 237, 0.1);
}

.table thead {
  background: #1a1d29;
  border-bottom: 2px solid rgba(232, 233, 237, 0.2);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(26, 29, 41, 0.5);
}

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

.comparison-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-mobile {
  background: var(--gradient-accent);
  color: #fff;
}

.badge-desktop {
  background: rgba(232, 233, 237, 0.1);
  color: #000000;
}

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

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