
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background: url('images/desert.png') no-repeat center center fixed;
            background-size: cover;
            color: #000;
            line-height: 1.6;
        }
        

        nav {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 250px;
            background-color: rgba(74, 44, 26, 0.90); /* Marron avec 85% d'opacité */
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        }

        .nav-logo {
            margin-bottom: 20px;
            flex: 0 0 auto;
            width: 170%;
            text-align: center;
        }

        .nav-logo img {
            max-width: 90%;
            height: auto;
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
            flex: 1 0 auto;
        }

        nav ul li {
            margin: 10px 0;
        }

        nav ul li a {
            font-family: 'Luckiest Guy', cursive; /* Police similaire */
            text-decoration: none;
            color: #ffc000;
            background: #5C3B25;
            padding: 15px;
            border-radius: 5px;
            display: block;
            text-align: center;
            font-size: 1rem;
            transition: background 0.1s;
        }


        

        nav ul li a:hover {
            background: #0095B6;
        }

        .nav-bottom-image {
            margin-top: auto;
            width: 100%;
            text-align: center;
        }

        .nav-bottom-image img {
            max-width: 100%;
            height: auto;
        }

        .staking-link {
            background-color: #70df15; /* Orange vif */
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s ease-in-out;
        }
        
        .staking-link:hover {
            background-color: #ff6600; /* Orange plus foncé au survol */
        }
        

        header {
    margin-left: 250px;
    padding: 10px;
    text-align: center;
}

/* Logo principal dans le header */
.header-logo {
    max-width: 1200px; /* Taille ajustable selon l'effet souhaité */
    display: block;
    margin: 0 auto 10px;
    transition: transform 0.3s ease-in-out;
}

/* Effet hover subtil */
.header-logo:hover {
    transform: scale(1.05);
}

/* Adaptation mobile */
@media (max-width: 750px) {
    header {
        margin-left: 0;
        padding: 2000px;
    }

    .header-logo {
        max-width: 400px; /* Réduction du logo sur petits écrans */
    }
}


        .mascot {
            position: relative;
            margin-left: 250px;
            text-align: center;
            margin-top: -100px;
        }

        .mascot img {
            max-width: 250px;
            height: auto;
        }

        .presale {
    position: relative;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(255, 140, 0, 0.8)); /* Dégradé doré */
    border-radius: 15px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #fff;
    transform: translateX(calc(250px / 2)); /* Centre la section */
}

.presale h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'Luckiest Guy', cursive;
}

.countdown {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 10px 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-block;
}

.presale p {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
}

/* Progress Bar amélioré */
progress {
    width: 100%;
    height: 35px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.2);
}

progress::-webkit-progress-bar {
    background-color: rgba(255, 255, 255, 0.2);
}

progress::-webkit-progress-value {
    background: linear-gradient(90deg, #ff5733, #ff8c00);
    transition: width 0.8s ease-in-out;
}

/* Bouton d'achat amélioré */
#buy-tokens {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(90deg, #ff4500, #ff8c00);
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

#buy-tokens:hover {
    background: linear-gradient(90deg, #ff6347, #ffa500);
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
}

.why-choose {
    position: relative;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255, 165, 0, 0.95); /* Couleur orangée avec moins de transparence */
    border-radius: 15px;
    width: 75%; /* Réduction pour bien contenir les éléments */
    max-width: 750px; /* Évite que ça devienne trop large */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: white;
    transform: translateX(calc(250px / 2)); /* Aligne avec la mascotte et la presale */
    overflow: hidden; /* Empêche le dépassement */
    font-family: 'Luckiest Guy', cursive;
}

/* Titre et description */
.why-choose h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'Luckiest Guy', cursive;
}

.why-choose p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
}

/* Conteneur des cartes */
.why-grid {
    display: flex;
    justify-content: space-around; /* Répartit les cartes de manière équilibrée */
    gap: 15px;
    max-width: 700px; /* Ajustement pour qu'elles ne dépassent pas */
    margin: auto;
    flex-wrap: wrap; /* Permet de passer en colonne si l'espace est insuffisant */
}

/* Cartes */
.why-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.12); /* Ajout d'un fond semi-opaque */
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    min-width: 180px;
    max-width: 220px; /* Empêche les cartes de devenir trop grandes */
}

/* Icônes */
.why-card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

/* Effet au survol */
.why-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Titres des cartes */
.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* Texte des cartes */
.why-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive : s'adapte aux petits écrans */
@media (max-width: 750px) {
    .why-choose {
        width: 90%; /* Réduction de la largeur sur mobile */
    }

    .why-grid {
        flex-direction: column; /* Passe en colonne */
        align-items: center;
    }

    .why-card {
        max-width: 100%; /* Utilise toute la largeur disponible */
    }
}



.roadmap {
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centre les cartes horizontalement */
    text-align: center;
    width: calc(100% - 250px); /* Largeur moins le menu latéral */
    margin-left: 140px; /* Décale la roadmap pour aligner avec le menu */
    transform: translateX(50px);
}

/* Nouvelle apparence des cartes */
.roadmap-card {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 69, 0, 0.9));
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    min-height: 80px; /* Hauteur minimale pour ne pas écraser les titres */
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    margin: 10px auto;
    transition: all 0.3s ease-in-out;
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* Effet lumineux sur les cartes */
.roadmap-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Effet au survol */
.roadmap-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.roadmap-card:hover::before {
    opacity: 1;
}

/* Titres des cartes */
.roadmap-card h3 {
    font-size: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'Luckiest Guy';
    text-align: center;
    width: 100%;
    margin: 0;
    transition: all 0.3s ease-in-out;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}




/* Contenu des cartes */
.roadmap-card p {
    font-size: 1rem;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    text-align: center;
    padding: 10px;
    visibility: hidden;
    overflow: hidden;
    padding: 10px 15px; /* Ajoute un peu d'espace pour éviter que le texte colle aux bords */
    line-height: 1.4; /* Améliore la lisibilité */
}


.roadmap-card:hover {
    min-height: 220px; /* Ajusté pour ne pas être trop serré */
    height: auto;
    padding-bottom: 20px; /* Ajoute de l'espace en bas pour le texte */
}


.roadmap-card:hover h3 {
    top: 20px;  /* Le titre monte légèrement pour laisser place au texte */
    transform: translate(-50%, 0);
    margin-bottom: 10px; /* Ajoute de l'espace entre le titre et le texte */
}


.roadmap-card:hover p {
    opacity: 1;
    max-height: 300px;
    visibility: visible;
}

.about-us {
    position: relative;
    margin: 50px auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 69, 0, 0.9)); /* Dégradé orange moderne */
    border-radius: 15px;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
    transform: translateX(calc(250px / 2)); /* Aligné avec les autres sections */
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Style pour l'image */
.about-image {
    flex: 1;
    max-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

/* Effet de zoom léger sur l’image au survol */
.about-image img:hover {
    transform: scale(1.05);
}

/* Conteneur du texte */
.about-content {
    flex: 2;
    text-align: left;
}

/* Titre principal */
.about-us h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'Luckiest Guy';
}

/* Paragraphe d’introduction */
.about-us p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Style des blocs d’infos */
.about-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Icônes intégrées */
.about-item i {
    font-size: 2rem;
    margin-right: 15px;
    color: #ffd700;
}

/* Titre des sous-sections */
.about-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Responsive pour mobile */
@media (max-width: 850px) {
    .about-us {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .about-image {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .about-content {
        text-align: center;
    }

    .about-item {
        flex-direction: column;
        align-items: center;
    }

    .about-item i {
        margin-bottom: 10px;
    }
}





        footer {
            margin-top: 20px;
            background-color: #000;
            color: #FFC085;
            text-align: right;
            padding: 20px;
        }

        footer ul {
            list-style: none;
            display: flex;
            justify-content: right;
            padding: 0;
            margin: 0;
        }

        footer li {
            margin: 0 15px;
        }

        footer a {
            color: #FFC085;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        .wallet-container {
            text-align: center;
            margin: 20px;
        }
        #connect-wallet, #open-wallet-modal {
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
            background: linear-gradient(90deg, #ff4500, #ff8c00);
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 15px;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
        }
        #connect-wallet:hover, #open-wallet-modal:hover {
            background: linear-gradient(90deg, #ff6347, #ffa500);
            transform: scale(1.05);
            box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
        }
        .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    background: #5C3B25; /* Couleur marron pour correspondre au site */
    color: #FFC000; /* Texte jaune pour rester cohérent */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: 'Luckiest Guy'; /* Police adaptée */
}

.modal button {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #FFC000; /* Jaune doré */
    color: #5C3B25; /* Marron */
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espace entre l'icône et le texte */
}
.modal button img {
    width: 24px;
    height: 24px;
}
.modal button:hover {
    background: #5C3B25;
    color: #FFC000;
}
.close-modal {
    cursor: pointer;
    font-size: 1.5rem;
    color: #FFC000;
    position: absolute;
    top: 10px;
    right: 15px;
}


.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px); /* Ajoute le flou */
    z-index: 999;
}
.tokenomics {
    position: relative;
    margin: 50px auto;
    padding: 50px;
    background: rgba(255, 204, 102, 0.9); /* Couleur inspirée du sable */
    border-radius: 20px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #5C3B25; /* Marron western */
    transform: translateX(calc(250px / 2)); /* Alignement parfait */
}

/* Titre avec effet Western */
.tokenomics h2 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 8px rgba(120, 66, 18, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Luckiest Guy';
}

/* Conteneur du graphique */
.chart-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Luckiest Guy'
}

/* Texte amélioré */
.tokenomics p {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Luckiest Guy'
}

.marquee-container {
    width: 100%;
    height: 50px; /* Hauteur définie pour bien afficher la bande */
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8); /* Fond noir semi-transparent */
    display: flex;
    align-items: center; /* Centre verticalement le texte */
    position: fixed; /* Fixe la bande en haut */
    top: 0;
    left: 0;
    z-index: 1000; /* S'assure que la bande passe au-dessus du reste */
    padding: 0 20px; /* Ajoute du padding pour éviter que le texte colle aux bords */
        }

        /* Texte défilant */
        .marquee {
            display: inline-block;
            white-space: nowrap;
            font-family: 'Luckiest Guy', cursive; /* Police du site */
            font-size: 1.8rem;
            color: #FFD700; /* Texte blanc pour contraste */
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: marquee 15s linear infinite;
        }

        /* Animation du texte défilant */
        @keyframes marquee {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(-100%);
            }
        }
        .eth-section label,
        .eth-section input {
          font-family: 'Luckiest Guy', cursive;
        }
        
        .eth-section input {
            background-color: #fff9ec;
            border: 3px solid #d18800;
            border-radius: 12px;
            padding: 0.6rem 1rem;
            font-size: 1.2rem;
            width: 200px;
            color: #3b2300;
            box-shadow: 2px 2px 0 #ad6100;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
          }
          
          .eth-section input:focus {
            outline: none;
            transform: scale(1.05);
            box-shadow: 4px 4px 0 #ad6100;
          }
          .eth-section label {
            font-size: 1.3rem;
            color: #5c3b1e;
            margin-right: 1rem;
          }

          .conversion-text {
            font-family: 'Luckiest Guy', cursive;
            color: #3e220a;
            font-size: 1.2rem;
            margin-top: 0.5rem;
          }
        

          /*Bullshit section */

          .funds-container {
            text-align: center;
            margin: 20px auto;
            max-width: 500px;
          }
          
          #funds-text {
            font-family: 'Luckiest Guy', cursive;
            font-size: 1.4rem;
            color: #fff;
            text-shadow: 1px 1px 2px #000;
            margin-bottom: 8px;
          }
          
          .funds-progress-bar {
            width: 100%;
            height: 35px;
            background-color: rgba(255, 255, 255, 0.2);
            border: 3px solid #d18800; /* même bordure */
            border-radius: 12px;
            box-shadow: inset 2px 2px 0 #ad6100;
            overflow: hidden;
          }
          
          .funds-fill {
            height: 100%;
            background: linear-gradient(90deg, #004466, #00bcd4);
            transition: width 0.5s ease-in-out;
            border-radius: 10px 0 0 10px;
          }

          /* Bullshit encore et toujours*/

          #token-select {
            font-family: 'Luckiest Guy', cursive;
            background-color: #fff9ec;
            border: 3px solid #d18800;
            border-radius: 12px;
            padding: 0.6rem 1rem;
            font-size: 1.2rem;
            color: #3b2300;
            box-shadow: 2px 2px 0 #ad6100;
            margin-bottom: 1rem;
            width: 220px;
          }
          
          