/* Protezione da scroll orizzontale */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

/* Adattamento tema scuro */
.bg-light {
  background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-primary) 100%) !important;
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

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

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

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

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

.sport-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-card);
  border-radius: var(--border-radius);
  margin: 0.25rem;
  font-weight: 600;
  color: var(--text-light);
}

.odds-box {
  background: var(--dark-card);
  border-left: 4px solid var(--accent-coral);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.highlight-stat {
  background: var(--gradient-hero);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 1.5rem;
}

.highlight-stat h3 {
  color: var(--accent-yellow);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.bet-type-card {
  background: var(--dark-secondary);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.bet-type-card:hover {
  border-color: var(--accent-coral);
}

.cta-section {
  background: var(--gradient-hero);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 3rem;
}