  /* Réinitialisation rapide */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Corps de page */
  body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
  }
  
  /* --- POPUP VÉRIFICATION D'ÂGE (FACULTATIF) --- */
  #age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  #age-verification-popup {
    background: #ffffff;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
  }
  
  #age-verification-popup h2 {
    margin-bottom: 1rem;
  }
  
  #age-verification-popup p {
    margin-bottom: 1.5rem;
  }
  
  #btn-verify-age {
    background-color: #261FB3;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
  }
  
  #btn-verify-age:hover {
    background-color: #261FB3;
  }
  
  /* --- HERO SECTION --- */
  .hero {
    background: linear-gradient(135deg, #2B5876, #4E4376);
    color: #ffffff;
    text-align: center;
    padding: 4rem 1rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-age-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto 20px;
}

.age-icon {
    background-color: #ff3b30;
    color: #ffffff;
    font-weight: bold;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-disclaimer {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

.hero-title {
    font-size: 2.2rem;
    margin: 20px auto;
    max-width: 800px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-age-warning {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

  
  /* --- TABLEAU DE COMPARAISON --- */
  .comparison-table {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
    overflow-x: auto; /* Enables horizontal scrolling on smaller screens */
    border-collapse: collapse;
  }
  
  .comparison-table table {
    width: 100%;
    border-spacing: 0;
    border: 1px solid #ddd;
  }
  
  .comparison-table thead {
    background-color: #000000;
    color: #fff;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
  }
  
  .site-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  /* Étoiles */
  .stars span {
    color: #ffcc00;
    font-size: 1.2rem;
  }
  
  /* Bouton CTA */
  .cta-button {
    background-color: #261FB3;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0f0a6c;
  }
  
  /* --- PIED DE PAGE --- */
  footer {
    background: linear-gradient(135deg, #2B5876, #4E4376);
    color: #ccc;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
  }
  
  .responsible-gaming p {
    margin-bottom: 0.75rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
  }
  
  .footer-logos {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  .footer-logos img {
    display: block;
    /* Optionally let images shrink or grow on small screens */
    max-width: 100%;
    height: auto;
  }
  
  /* --- MEDIA QUERIES (TABLEAU RESPONSIVE) --- */
  @media (max-width: 600px) {
    /* Hero text scaling */
    .hero-title {
      font-size: 1.4rem;
    }
    .hero-subtitle {
      font-size: 0.9rem;
    }

    .hero-age-warning {
    flex-direction: column;
    }
  
    /* Make table rows stack */
    .comparison-table table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table th,
    .comparison-table td,
    .comparison-table tr {
      display: block;
      width: 100%;
    }
  
    /* Hide the header row */
    .comparison-table thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px;
    }
  
    .comparison-table tr {
      margin-bottom: 1rem;
      border: 1px solid #ddd;
    }
  
    .comparison-table td {
      /* Add padding for the "label" effect */
      position: relative;
      padding-left: 50%;
      text-align: left;
      border: none;
      border-bottom: 1px solid #ddd;
    }
  
    .comparison-table td:before {
      /* Position label on the left */
      position: absolute;
      left: 1rem;
      width: 30%;
      padding-right: 1rem;
      white-space: nowrap;
      font-weight: bold;
      padding: 0;
    }
  
    /* Content for each cell's label (matches table headers) */
    .comparison-table td:nth-of-type(1):before { content: "Site de paris"; }
    .comparison-table td:nth-of-type(2):before { content: "Bonus de Bienvenue"; }
    .comparison-table td:nth-of-type(3):before { content: "Rating"; }
    .comparison-table td:nth-of-type(4):before { content: "Score"; }
    .comparison-table td:nth-of-type(5):before { content: "Jouer maintenant"; }
  }
  