<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f1f6;

    /* Flexbox pour l'agencement */
    display: flex;
    justify-content: flex-start; /* Aligne les Ã©lÃ©ments Ã&nbsp; gauche */
    align-items: center; /* Centre verticalement */
    height: 100vh; /* Utilise toute la hauteur de la fenÃªtre */
    padding-left: 10px; /* Ajuste l'espace Ã&nbsp; gauche si nÃ©cessaire */
}

.no-text-select {
    user-select: none;
    -webkit-user-select: none; /* Pour Safari */
    -ms-user-select: none; /* Pour Internet Explorer/Edge */
}

#home-button {
    position: absolute;
    top: 5px;
    left: 0; /* Ou toute autre position que vous prÃ©fÃ©rez */
    background-color: transparent;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 40px;
    cursor: pointer;
    z-index: 1000;
}

/* Style du menu hamburger visible partout */
.menu-hamburger {
    position: fixed;
    top: 5px;
    right: 0; /* PositionnÃ© Ã&nbsp; gauche par dÃ©faut */
    z-index: 2000;
}

.hamburger {
    background-color: transparent;
    border: none;
    font-size: 50px; /* Taille de l'icÃ´ne */
    color: white; /* Couleur de l'icÃ´ne */
    cursor: pointer;
}

.hamburger-menu-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; /* Aligne le menu Ã&nbsp; droite */
    background-color: #333;
    color: white;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    z-index: 999;
    width: 100vw; /* Prend toute la largeur de l'Ã©cran */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    
    /* Centrer le contenu horizontalement */
    display: flex;
    justify-content: center;
    text-align: center;
}

.hamburger-menu-content button {
    display: block;
    background-color: #3a3a3a;
    color: white;
    padding: 10px; /* Ajuster si nÃ©cessaire */
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    width: 100%; /* Permet au bouton de prendre toute la largeur disponible */
    text-align: center; /* Centrer le texte */
}

.hamburger-menu-content button:hover {
    background-color: #444;
}

/* Montrer le menu lorsque le hamburger est cliquÃ© */
.menu-hamburger.active .hamburger-menu-content {
    display: block;
    transform: translateX(700px); /* AmÃ¨ne le menu dans l'Ã©cran */
}

/* Menu Hamburger pour la version mobile */
@media only screen and (max-width: 600px) {
    .menu-hamburger.mobile {
        position: fixed;
        top: 20px;
        left: 0; /* PositionnÃ© Ã&nbsp; gauche pour mobile */
        z-index: 2000;
    }

    .hamburger {
        font-size: 20px; /* Taille de l'icÃ´ne pour mobile */
        position: relative; /* Le bouton hamburger reste au-dessus du bandeau */
        z-index: 2; /* Assure que le hamburger reste visible */
    }

    .menu-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centre horizontalement */
        justify-content: center; /* Centre verticalement */
        height: 100vh; /* Assure que le conteneur prend toute la hauteur de la fenÃªtre */
        position: relative; /* Position relative pour que les enfants puissent Ãªtre positionnÃ©s absolus si besoin */
    }

    .hamburger-menu-content {
        display: none;
        position: absolute;
        top: 100%;
        right: 0; /* Aligne le menu Ã&nbsp; droite */
        background-color: #333;
        color: white;
        padding: 0;
        margin: 0;
        border-radius: 10px;
        z-index: 999;
        width: 100vw; /* Prend toute la largeur de l'Ã©cran */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        
        /* Centrer le contenu horizontalement */
        display: flex;
        justify-content: center;
        text-align: center;
    }

    /* Quand le menu est actif, il devient visible */
    .menu-hamburger.active .hamburger-menu-content {
        display: block;
        transform: translateX(0px); /* AmÃ¨ne le menu dans l'Ã©cran */
        transform: translateY(-20px);
    }

    #home-button {
        position: absolute;
        top: -2px;
        left: -2px; /* Ou toute autre position que vous prÃ©fÃ©rez */
        background-color: transparent;
        color: white;
        padding: 10px;
        border: none;
        border-radius: 5px;
        font-size: 20px;
        cursor: pointer;
        z-index: 2000;
    }
}

/* Pour le bouton de fond */
#toggle-background-antialiasing {
    position: absolute;
    top: 20px; 
    left: 0; /* AlignÃ© Ã&nbsp; gauche de l'Ã©cran */
    z-index: 10;
    background-color: #0099ff;
    color: white;
    padding: 20px 40px; /* Ajuste le padding si nÃ©cessaire */
    border-radius: 10px; 
    cursor: pointer;
    border: none;
    font-size: 20px;
    width: auto; 
    height: auto; 
}

#toggle-menus {
    position: absolute;
    top: 20px; 
    left: 280px; /* AlignÃ© Ã&nbsp; gauche de l'Ã©cran */
    z-index: 10;
    background-color: #0099ff;
    color: white;
    padding: 20px 40px; /* Ajuste le padding si nÃ©cessaire */
    border-radius: 10px; 
    cursor: pointer;
    border: none;
    font-size: 20px;
    width: auto; 
    height: auto; 
}

/* Media query pour mobile */
@media only screen and (max-width: 600px) {
    #toggle-background-antialiasing {
        position: absolute;
        left: 0; /* Aligne le bouton Ã&nbsp; gauche */
        width: 170px !important;   /* Largeur du bouton */
        padding: 8px 0 !important;  /* RÃ©duction du padding */
        font-size: 16px !important;  /* RÃ©duction de la taille du texte */
        margin: 0; /* Supprime toute marge pour Ã©viter les dÃ©calages */
    }

    /* Bouton Cacher les menus sur mobile */
    #toggle-menus {
        position: absolute;
        top: 30px;
        right: 0; /* Toujours collÃ© Ã&nbsp; droite */
        left: auto; /* Assure que l'ancrage est Ã&nbsp; droite, pas Ã&nbsp; gauche */
        padding: 8px 20px;
        font-size: 16px;
        margin: 0;
        text-align: center;
        white-space: nowrap; /* EmpÃªche le retour Ã&nbsp; la ligne */
        width: auto; /* Largeur automatique */
        transform: translateX(0%); /* Ã‰tend le bouton lÃ©gÃ¨rement vers la gauche */
        min-width: fit-content; /* S'assure que le bouton s'ajuste au texte */
    }
}

.hamburger,
#home-button,
#toggle-background-antialiasing,
#price-container,
#price-container-mobile,
#color-picker-container,
#personalisation-menu {
    visibility: hidden; /* Invisible initialement */
    opacity: 0; /* ComplÃ¨tement transparent initialement */
    transition: opacity 0.01s ease-in-out, visibility 0.01s 0.01s; /* Transition fluide de l'opacitÃ© */
}

#loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column; /* Dispose le texte au-dessus du spinner */
    align-items: center; /* Centre horizontalement */
    text-align: center;
    z-index: 10;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3; /* Couleur de fond du spinner */
    border-top: 6px solid #3498db; /* Couleur de l'animation */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#loading-indicator p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Personnalisation mobile cachÃ©e par dÃ©faut */
#personalisation-container-mobile {
    display: none;
}

/* Cacher les menus et personnalisation sur les petits Ã©crans (mobile) */
@media only screen and (max-width: 600px) {
    /* Masquer les Ã©lÃ©ments spÃ©cifiques au desktop */
    #price-container,
    #color-picker-container,
    #order-button,
    #personalisation-container {
        display: none !important;
    }

    /* Afficher la personnalisation mobile */
    #personalisation-container-mobile {
        display: block;
        padding: 20px;
        background-color: #333;
        color: white;
        border-radius: 10px;
        margin: 20px auto;
        max-width: 400px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Afficher et styliser le bandeau mobile */
    #price-container-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 50%; /* Place l'Ã©lÃ©ment au centre de l'Ã©cran */
        transform: translateX(-50%); /* Le ramÃ¨ne au centre en compensant la largeur */
        width: 100%; /* S'Ã©tend sur toute la largeur */
        max-width: 100vw; /* Limiter la largeur maximale du conteneur */
        background-color: #333;
        color: white;
        padding: 5px 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        text-align: center;
    }

    /* Ajuster le titre */
    #tarification-title {
        font-size: 18px;
        font-weight: bold;
        margin-top: 0px;
        margin-bottom: 0px;
        text-align: center;
    }
    
    /* Centrer les prix de base et total avec une barre verticale au milieu */
    #pricing-layout-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 3px 0;
        width: 100%;
    }
    
    /* RÃ©duire la hauteur de la barre verticale entre les prix */
    #pricing-layout-mobile::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 20px;
        width: 1px;
        background-color: white;
    }
    
    /* RÃ©duire la taille des prix */
    #base-price-mobile, #total-price-mobile {
        font-size: 14px;
        font-weight: bold;
        width: 45%;
        text-align: center;
    }
    
    #total-price-mobile {
        margin-left: 5px;
    }

    /* Styles spÃ©cifiques pour le menu dÃ©roulant sur mobile */
    #toggle-dropdown {
        background-color: transparent;
        border: none;
        color: white;
        font-size: 12px;
        cursor: pointer;
        padding: 10px 0;
        text-align: center;
        width: 100%;
    }

    #dropdown-content {
        background-color: #333;
        padding: 10px;
        overflow: visible;
        max-height: 0;
    }

    /* Style pour les options */
    .option {
        margin-bottom: 10px;
    }

    /* Ajustement du bouton de commande */
    #order-button-mobile {
        padding: 10px 20px;
        background-color: #008cff;
        color: white;
        border: none;
        font-size: 16px;
        cursor: pointer;
        width: 100%;
        margin-top: 10px;
    }

    /* Styles pour les groupes de couleurs dans la personnalisation mobile */
    .color-group {
        margin-bottom: 15px;
    }

    .color-options {
        display: flex;
        gap: 5px;
    }

    .color-option {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        background-color: #ccc;
        border: 1px solid #fff;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .color-option:hover {
        transform: scale(1.1);
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    }
}

/* Ajustement pour les grands Ã©crans, comme l'iPhone 14 Pro Max */
@media only screen and (min-width: 600px) {
    #price-container-mobile,
    #personalisation-menu {
        width: 100vw; /* Prend toute la largeur de l'Ã©cran */
        max-width: 100vw;
        margin: 0; /* Supprime les marges */
        padding: 0 10px; /* Padding lÃ©ger pour Ã©viter les dÃ©bordements */
    }

    body, html {
        width: 100vw;
        overflow-x: hidden;
    }
}

.color-tooltip-small { 
    visibility: hidden;
    width: 60px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 3px;
    font-size: 14px;
    position: fixed; 
    z-index: 9999; 
    bottom: 200%; 
    left: -100%; 
    opacity: 0; 
    transition: opacity 0.2s;
}

.color-tooltip-small.show {
    visibility: visible;
    opacity: 1;
}

.color-option:hover .color-tooltip-small {
    opacity: 1;
}

.color-tooltip {
    visibility: hidden;
    width: 100px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; 
    left: 50%;
    margin-left: -50px;
    opacity: 0;
    transition: opacity 0.3s;
}

.color-tooltip::after {
    content: "";
    position: absolute;
    top: 100%; 
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.color-option:hover .color-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Style pour l'icÃ´ne d'information */
.info-icon {
    display: inline-block;
    margin-left: 10px;
    background-color: #006eff;
    color: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

/* Style pour la bulle d'information (cachÃ©e par dÃ©faut) */
.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Positionne la bulle au-dessus de l'icÃ´ne */
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Petite flÃ¨che au-dessus de la bulle */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%; /* En bas de la bulle */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Affichage de la bulle lorsque l'on survole l'icÃ´ne */
.info-icon:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

#base-price, #total-price {
    font-size: 24px; /* Grossit le texte */
    font-weight: bold; /* Met en gras */
    text-align: center; /* Centre le texte */
    display: block; /* Assure que le texte occupe toute la largeur pour un bon centrage */
    color: #007acc;
}

#price-container {
    position: relative; /* NÃ©cessaire pour positionner la bulle par rapport Ã&nbsp; ce conteneur */
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
    width: 400px;
    max-height: 120vh;
    overflow: visible; /* Permet Ã&nbsp; la bulle d'information de dÃ©passer la bordure */
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

#price-container h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.option {
    margin-bottom: 15px;
}

/* SÃ©lectionner les Ã©lÃ©ments du prix dans la version mobile */
#base-price-mobile span, #total-price-mobile span {
    font-weight: bold;
}

#color-diff-charge {
    font-size: 14px;
    color: red;
    margin-top: 10px;
    display: none; /* hidden by default */
}

#gameboy-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

#color-picker-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 50%; /* Centre verticalement */
    transform: translateY(-50%); /* Permet un centrage parfait verticalement */
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    padding: 5px 20px; /* RÃ©duit le padding vertical Ã&nbsp; 10px */
    border-radius: 6px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
    width: 400px;
    max-height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    margin-right: 10px; /* Ajoute un espace de 10px Ã&nbsp; droite */
}

.color-picker-title {
    font-size: 22px; /* Ajuste la taille de la police */
    font-weight: bold; /* Met en gras */
    text-align: center; /* Centre le titre */
    margin: 0; /* Supprime les marges par dÃ©faut */
    padding-bottom: 5px; /* Espace sous le titre */
}

.color-group {
    margin-bottom: 8px; /* RÃ©duit lÃ©gÃ¨rement la marge infÃ©rieure */
    padding-bottom: 2px; /* RÃ©duit lÃ©gÃ¨rement le padding infÃ©rieur */
    border-bottom: 1px solid #ddd;
}

.color-label {
    margin-bottom: 2px; /* RÃ©duit lÃ©gÃ¨rement la marge infÃ©rieure */
    font-weight: bold;
    font-size: 16px; /* RÃ©duit la taille de la police */
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer; /* Change le curseur en mode pointer pour indiquer que l'Ã©lÃ©ment est cliquable */
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 3px; /* RÃ©duit l'espacement entre les options */
}

.color-option {
    width: 22px; /* RÃ©duit la largeur des palettes de couleur */
    height: 22px; /* RÃ©duit la hauteur des palettes de couleur */
    border-radius: 50%;
    cursor: pointer;
    background-color: #ccc;
    border: 1px solid #000; /* Ajoute un lÃ©ger contour noir */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* RÃ©duit lÃ©gÃ¨rement l'ombre portÃ©e */
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.color-option:hover {
    transform: scale(1.2); /* Augmente lÃ©gÃ¨rement le zoom au survol */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Augmente lÃ©gÃ¨rement l'ombre portÃ©e au survol */
    border-color: #000; /* Assure que le contour noir reste visible au survol */
}

.transparency-section {
    margin-top: 16px; /* RÃ©duit lÃ©gÃ¨rement la marge supÃ©rieure */
    padding-top: 8px; /* RÃ©duit lÃ©gÃ¨rement le padding supÃ©rieur */
}

.transparency-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* RÃ©duit lÃ©gÃ¨rement la marge infÃ©rieure */
    font-size: 14px; /* RÃ©duit lÃ©gÃ¨rement la taille de la police */
}

.transparency-checkbox {
    margin-right: 8px;
    transform: scale(1.2);
}

#dpad-color-picker,
#buttonA-color-picker,
#buttonB-color-picker,
#buttonStart-color-picker {
    margin-top: 8px;
    font-size: 14px; /* RÃ©duit lÃ©gÃ¨rement la taille de la police */
}

#order-button {
    margin-top: 20px; /* Ajoute de l'espace au-dessus du bouton */
    padding: 10px 20px; /* Ajuste le padding pour le bouton */
    font-size: 16px; /* Ajuste la taille de la police */
    font-weight: bold;
    color: #fff; /* Texte en blanc */
    background-color: #007acc; /* Couleur de fond bleue */
    border: none;
    border-radius: 4px; /* Bords arrondis */
    cursor: pointer; /* Change le curseur au survol */
    transition: background-color 0.3s, transform 0.2s; /* Ajoute une transition au changement de couleur et de taille */
}

#order-button:hover {
    background-color: #0056b3; /* Couleur de fond au survol */
    transform: scale(1.25); /* Augmente lÃ©gÃ¨rement la taille au survol */
}

#order-button:active {
    background-color: #004494; /* Couleur de fond au clic */
}

/* Agrandir les palettes de couleurs sur mobile */
@media only screen and (max-width: 600px) {
    .color-option {
        width: 40px; /* Augmenter la taille Ã&nbsp; 40px */
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        background-color: #ccc;
        border: 1px solid #fff;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    /* Fixer la hauteur du conteneur du menu de personnalisation sur mobile */
    #personalisation-menu {
        display: block;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 400px;
        background-color: #333;
        color: white;
        padding: 15px 20px;
        text-align: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px 10px 0 0;
        z-index: 1000;
        height: 120px; /* Hauteur fixe pour le menu */
        overflow-y: auto; /* Activer le scroll si le contenu dÃ©passe */
    }

    /* Si la hauteur du contenu dÃ©passe, permettre le dÃ©filement */
    .color-options {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        flex-wrap: wrap;
        margin-bottom: 20px; /* AugmentÃ© de 15px Ã&nbsp; 20px */
    }    
}

/* Titre de la personnalisation */
#personalisation-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
}

/* Sections de personnalisation */
.personalisation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Conteneur pour le titre de la section et les boutons */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

/* Titre de la section */
.section-header h3 {
    flex-grow: 1;
    text-align: center;
    font-size: 16px;
    margin: 0 10px;
}

/* Boutons de navigation */
.section-header button {
    background-color: #008cff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.section-header button:hover {
    background-color: #005fa3;
}

/* Barre horizontale pour sÃ©parer les palettes de couleurs et la navigation */
.divider {
    width: 100%;
    height: 1px;
    background-color: #ddd; /* Couleur de la barre */
    margin: 10px 0; /* Espace autour de la barre */
}

/* Styles spÃ©cifiques au mobile */
@media only screen and (max-width: 600px) {
    .color-options {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px; /* Version mobile: espacement plus petit entre les options de couleurs */
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .color-option {
        width: 30px; /* Taille des options de couleur pour mobile */
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        background-color: #ccc;
        border: 1px solid #fff;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .color-option:hover {
        transform: scale(1.1);
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    }
}

/* Styles des infobulles */
.color-tooltip-small {
    visibility: hidden;
    width: 60px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 3px;
    font-size: 14px;
    position: fixed;
    z-index: 9999;
    bottom: 200%;
    left: -100%;
    opacity: 0;
    transition: opacity 0.2s;
}

.color-tooltip-small.show {
    visibility: visible;
    opacity: 1;
}

.color-option:hover .color-tooltip-small {
    opacity: 1;
}

/* Menu de personnalisation en bas de l'Ã©cran pour mobile */
#personalisation-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    background-color: #333;
    color: white;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0 0;
    z-index: 1000;
}

/* Styles pour les Ã©crans larges */
footer {
    z-index: 5000;
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-width: 80%;
    text-align: left;
    padding: 10px 20px;
    font-size: 12px;
    color: #333;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Styles pour les mobiles */
@media only screen and (max-width: 600px) {
    footer {
        position: fixed;
        bottom: -15px; /* PositionnÃ© tout en bas */
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        padding: 0;
        font-size: 12px;
        color: #fff; /* Texte en blanc */
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
    }
}

/* Afficher le menu uniquement sur mobile */
@media only screen and (max-width: 600px) {
    #personalisation-menu {
        display: block;
    }
}

/* Ajouter ou modifier le CSS pour les petits Ã©crans */
@media only screen and (max-width: 600px) {
    #toggle-background-antialiasing {
        display: block !important; /* Assurez-vous que le bouton est affichÃ© */
        width: 100%; /* Ajustez la taille pour s'adapter Ã&nbsp; l'Ã©cran mobile */
        margin-top: 10px; /* Espace au-dessus du bouton si nÃ©cessaire */
        padding: 10px 20px; /* Ajustez le padding pour le bouton sur mobile */
        font-size: 16px; /* Ajustez la taille du texte si nÃ©cessaire */
    }
}

/* Styles pour les infobulles sur mobile */
@media only screen and (max-width: 600px) {
    .info-icon .tooltip-text {
        position: absolute;
        z-index: 99999; /* Utilisez un z-index supÃ©rieur Ã&nbsp; celui du bouton "RÃ©duire" */
        background-color: #555;
        color: white;
        padding: 10px;
        border-radius: 6px;
        max-width: 150px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Ajoute une ombre pour plus de visibilitÃ© */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease-in-out;
        white-space: normal;
    }

    /* FlÃ¨che sous l'infobulle */
    .info-icon .tooltip-text::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 62%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

    /* Afficher l'infobulle au clic */
    .info-icon.active .tooltip-text {
        visibility: visible;
        opacity: 1;
    }
}
</pre></body></html>