/* Styles généraux */
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            background-color: #4f2525;
            margin: 0;
            padding: 20px;
        }

        h1 {
            color: #333;
            margin-bottom: 10px;
        }

        /* Interface du jeu */
        .game-ui {
            margin-bottom: 20px;
        }

        .score,
        .timer,
        .high-score {
            font-size: 1.2rem;
            font-weight: bold;
            margin: 10px 0;
        }

        .start-btn,
        .diff-btn {
            background-color: #967733;
            border: none;
            color: white;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 5px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .start-btn:hover {
            background-color: #45a049;
        }

        .start-btn:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }

        .diff-btn {
            background-color: #2196F3;
        }

        .diff-btn:hover {
            background-color: #0b7dda;
        }

        .diff-btn.active {
            background-color: #0b5385;
            font-weight: bold;
        }

        .difficulty {
            margin: 15px 0;
        }

        /* Grille et taupes */
        .grille {
            display: grid;
            grid-template-columns: repeat(3, 100px);
            grid-gap: 10px;
            margin: 20px auto;
            width: 320px;
        }

        .trou {
            height: 100px;
            background-color: #6b4226;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 10px 10px rgba(0, 0, 0, 0.3);
        }

        .taupe {
            width: 80px;
            height: 80px;
            background-color: #964B00;
            border-radius: 50%;
            position: absolute;
            bottom: 100px;
            /* Cachée au début */
            left: 10px;
            transition: bottom 0.3s;
            cursor: pointer;
        }

        .taupe.active {
            cursor: pointer;
        }

        .taupe.hit {
            background-color: #ff6b6b !important;
        }

        .taupe.special {
            background-color: gold;
        }

        .yeux {
            position: relative;
            top: 20px;
        }

        .oeil {
            width: 15px;
            height: 15px;
            background-color: white;
            border-radius: 50%;
            display: inline-block;
            margin: 0 10px;
        }

        .hidden {
            display: none;
        }

        .nez {
            width: 20px;
            height: 10px;
            background-color: #333;
            border-radius: 50%;
            margin: 5px auto;
            position: relative;
            top: 25px;
        }

        /* Animations */
        @keyframes hit-animation {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(0.9);
            }

            100% {
                transform: scale(1);
            }
        }

        .hit {
            animation: hit-animation 0.3s;
        }