 /* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        header {
            background: #000000; /* Dark reddish background */
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }

        header h1 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        header p {
            font-size: 1.5rem;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: #3b0b0b; /* Dark reddish background */
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
        }

        nav .logo {
            color: #ffc0cb; /* Pink color for the logo */
            font-weight: bold;
            font-size: 1.5rem;
            margin-left: 1rem;
        }

        nav a {
            color: #ffc0cb; /* Pink color for the links */
            text-decoration: none;
            margin: 0 1rem;
            font-weight: bold;
            font-size: 1rem;
        }

        nav a:hover {
            text-decoration: underline;
        }

        section {
            padding: 4rem 2rem;
            text-align: center;
        }

        section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
			color: #000; /* Texte en noir */
        }

        section p {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #555;
        }

        footer {
            text-align: center;
            padding: 2rem;
            background: #222;
            color: white;
        }

        footer p {
            font-size: 0.9rem;
        }

        .box-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding: 2rem;
        }

        .box {
            background: #fff;
            border: 1px solid #ccc;
            padding: 1.5rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            width: 45%;
        }

        .box h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
			color: #000; /* Texte en noir */
        }

        .box p {
            font-size: 1rem;
            color: #555;
        }

/* Leaderboard Styles for Desktop */
.leaderboard-container {
    max-width: 800px;
    margin: 80px auto; /* Ajoute un espacement sous le menu */
    background-color: #fff; /* Couleur de fond */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.leaderboard-header {
    background-color: #3b0b0b; /* Couleur sombre existante */
    color: #ffc0cb; /* Rose existant */
    text-align: center;
    padding: 20px 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.leaderboard-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
    background-color: #f9f9f9; /* Alternance des lignes */
}

.leaderboard-item:nth-child(odd) {
    background-color: #fff; /* Fond blanc pour les lignes impaires */
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.leaderboard-rank {
    font-size: 1.4rem;
    font-weight: bold;
    color: #3b0b0b; /* Couleur sombre existante */
}

.leaderboard-name {
    flex: 1;
    margin-left: 15px;
    font-size: 1rem;
    color: #333;
}

.leaderboard-score {
    font-size: 1.2rem;
    font-weight: bold;
    color: #028090; /* Accent color */
}

 /* Styliser l'adresse EVM */
.leaderboard-address {
    font-size: 0.9rem;
    color: #888;
    margin-left: 15px;
}

/* Bouton pour les récompenses Web3 */
.mint-button {
    background-color: #ccc; /* Bouton grisé par défaut */
    color: #666;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: not-allowed; /* Curseur désactivé */
    font-size: 0.9rem;
    margin-left: 15px;
}

.mint-button:enabled {
    background-color: #00a896; /* Couleur active */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mint-button:enabled:hover {
    background-color: #028090; /* Couleur au survol */
}
