/* Palette de couleurs */
:root {
    --violet: #3a0243;
    --gold: #ffbf0d;
    --dark: #1C2526;
    --dark-light: #2E3B3E;
    --yellow: #FFC107;
    --yellow-light: #FFD54F;
}

/* Animation de pulsation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255, 193, 7, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
    }
}

/* Fonds et couleurs */
.bg-dark {
    background-color: #8c6c8c;
}

.bg-violet {
    background-color: #cfe2f3;
}

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

.text-gold {
    color: var(--gold);
}

```css
/* Styles pour les liens */
a {
    color: #808080; /* Gris moyen pour les liens non visités */
    text-decoration: none; /* Supprime le soulignement par défaut */
}

a:visited {
    color: #800080; /* Violet classique pour les liens visités */
}

a:hover {
    color: #A9A9A9; /* Gris plus clair au survol pour l'interactivité */
    text-decoration: underline; /* Ajoute un soulignement au survol */
}

/* Styles de base pour les éléments de liste */
li {
    font-size: 1rem; /* Taille de police adaptée */
    line-height: 1.5; /* Espacement entre les lignes corrigé pour meilleure lisibilité */
    margin-bottom: 12px; /* Espacement entre les éléments légèrement augmenté */
    list-style-position: outside; /* Puces à l'extérieur */
    color: #ffffff; /* Couleur du texte */
    padding-top: 0; /* Suppression du padding-top pour cohérence */
}

/* Personnaliser les puces des listes */
li::before {
    content: "•"; /* Symbole de puce */
    color: #ff6f61; /* Couleur des puces */
    font-size: 1.2rem; /* Taille de puce réduite pour équilibre */
    margin-right: 8px; /* Espacement réduit pour mobile */
    vertical-align: middle; /* Alignement vertical */
    display: inline-block; /* Meilleur contrôle de l'alignement */
}

/* Liste ordonnée (numérotée) */
ol {
    padding-left: 24px; /* Décalage légèrement augmenté pour clarté */
}

/* Liste non ordonnée */
ul {
    padding-left: 24px; /* Décalage cohérent avec ol */
}

/* Survol des éléments de la liste (hover effect) */
li:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Fond au survol */
    transition: background-color 0.3s ease; /* Transition fluide */
}

/* Media Queries pour responsivité */
@media screen and (max-width: 768px) {
    li {
        font-size: 0.95rem; /* Légère réduction pour petits écrans */
        line-height: 1.4; /* Ajustement pour lisibilité */
        margin-bottom: 10px; /* Espacement réduit */
    }

    li::before {
        font-size: 1rem; /* Puce plus petite sur mobile */
        margin-right: 6px; /* Espacement optimisé */
    }

    ol, ul {
        padding-left: 20px; /* Décalage réduit pour mobile */
    }
}

@media screen and (min-width: 769px) {
    li {
        cursor: pointer; /* Curseur au survol uniquement sur desktop */
    }
}

/* Boutons */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--yellow);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--yellow-light);
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.4);
    transform: scale(1.1);
}

#inscription-btn {
    animation: pulse 2s infinite ease-in-out;
}

.btn-secondary {
    background-color: #000;
    color: var(--gold);
}

.btn-secondary:hover {
    background-color: #3A4A4E;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

/* Menu principal */
.main-nav {
    display: none; /* Masqué par défaut sur mobile */
}

.main-nav a {
    font-weight: 700;
    color: #7f5b60;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: block;
    text-align: center;
}

.main-nav a:hover {
    color: #FFFFFF;
}

.main-nav a.active {
    color: #FFFFFF;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

/* Menu burger */
#menu-toggle {
    display: none; /* Caché, utilisé pour le contrôle */
}

#menu-toggle:checked ~ .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 4.5rem; /* Ajusté pour correspondre à la hauteur du header */
    left: 0;
    right: 0;
    background-color: #000;
    padding: 1.5rem;
    z-index: 1000;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Style du bouton burger */
label[for="menu-toggle"] {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

label[for="menu-toggle"] span {
    background-color: #000; /* Harmonisé avec la palette */
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

label[for="menu-toggle"] span:nth-child(1) {
    top: 0;
}

label[for="menu-toggle"] span:nth-child(2) {
    top: 8px;
}

label[for="menu-toggle"] span:nth-child(3) {
    top: 16px;
}

#menu-toggle:checked ~ label[for="menu-toggle"] span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

#menu-toggle:checked ~ label[for="menu-toggle"] span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked ~ label[for="menu-toggle"] span:nth-child(3) {
    transform: rotate(-45deg);
    top Buffett: 8px;
}

/* Logo */
.logo img {
    max-width: 110px;
    height: auto;
    display: block;
}

/* Cartes de jeux */
.best-games__item {
    transition: transform 0.3s ease;
    margin: 0 1rem;
    padding: 1rem;
}

.best-games__item:hover {
    transform: scale(1.05);
}

/* Titres */
h2 {
    margin: 1rem;
    font-size: 1.5rem;
    color: var(--gold);
}

h3 {
    margin: 0.75rem 1rem;
    font-size: 1.25rem;
    color: var(--yellow-light);
}

/* Bouton de connexion */
a.login-btn {
    cursor: pointer !important;
}

/* Header */
header.bg-violet {
    width: 100%;
    paddingércoles: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer */
footer {
    padding: 1rem;
    margin: 0 1rem;
    text-align: center;
}

/* Section FAQ */
.faq-section {
    background-color: var(--dark-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
}

.faq-question {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.faq-answer {
    color: #D3D3D3;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        margin: 0.25rem;
    }

    header.bg-violet {
        flex-wrap: nowrap;
        padding: 0.5rem;
    }

    .logo img {
        max-width: 120px;
    }

    .main-nav {
        display: none; /* Masqué par défaut */
    }

    #menu-toggle:checked ~ .main-nav {
        display: flex; /* Affiché quand coché */
    }

    .best-games__item {
        margin: 0.5rem;
        padding: 0.5rem;
    }

    h2 {
        margin: 0.5rem 0 0.5rem 1rem;
        font-size: 1.5rem;
    }

    h3 {
        margin: 0.5rem 0 0.5rem 1rem;
        font-size: 1.15rem;
    }

    .faq-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        font-size: 1.25rem;
        margin-left: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        margin-left: 1rem;
    }

    p {
        margin-left: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .logo img {
        max-width: 100px;
    }

    header.bg-violet {
        padding: 0.3rem;
    }

    .faq-section {
        padding: 0.75rem;
    }

    .faq-question {
        font-size: 1.15rem;
        margin-left: 0.75rem;
    }

    .faq-answer {
        font-size: 0.9rem;
        margin-left: 0.75rem;
    }

    h2 {
        margin: 0.5rem 0 0.5rem 0.75rem;
        font-size: 1.35rem;
    }

    h3 {
        margin: 0.5rem 0 0.5rem 0.75rem;
        font-size: 1.1rem;
    }

    p {
        margin-left: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .main-nav {
        display: flex !important; /* Surcharge Tailwind pour desktop */
        align-items: center;
    }

    label[for="menu-toggle"] {
        display: none; /* Masquer le burger sur desktop */
    }
}