/* Adaptation thème et protection */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

.bg-light {
  background-color: var(--light-card) !important;
  color: var(--text-dark) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
  color: var(--light) !important;
}

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

.table thead {
  background: var(--primary);
  color: white;
  border-bottom: 2px solid var(--primary);
}

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

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.card-body {
  padding: 2rem;
}

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

.commission-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  color: white;
  border-radius: var(--border-radius-lg);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

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

.benefit-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

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

.cta-box {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-top: 3rem;
}

.btn-light-custom {
  background-color: white;
  color: var(--primary);
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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