 /* Mise en page générale */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: linear-gradient(to bottom, #a1c4fd, #5e7ebd); /* Dégradé bleu clair à bleu foncé */
            animation: backgroundChange 10s infinite alternate; /* Animation du fond */
            padding: 20px;
            transition: background-color 0.3s ease;
            flex-direction: column; /* Permet de placer le titre en haut */
            text-align: center;
        }

        @keyframes backgroundChange {
            0% {
                background: #a1c4fd; /* Bleu clair */
            }
            100% {
                background: #5e7ebd; /* Bleu foncé */
            }
        }

        .title {
            font-size: 2em;
            font-weight: bold;
            color: #fff;
            margin-bottom: 20px;
            margin-top: 20px; /* Ajout de marge pour mieux centrer sur mobile */
        }

        .quiz-container {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 600px; /* Augmentation de la largeur maximale */
            text-align: center;
            margin: 20px;
        }

        .question {
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 1.5em; /* Taille de la police augmentée */
        }

        .choices {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .choices button {
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: #f9f9f9;
            cursor: pointer;
            font-size: 1.2em; /* Augmentation de la taille de la police des boutons */
            transition: background-color 0.3s;
        }

        .choices button:hover {
            background-color: #e0e0e0;
        }

        .choices .correct {
            background-color: #d4edda; /* Vert pour la bonne réponse */
            border-color: #c3e6cb;
            color: #155724;
        }

        .choices .incorrect {
            background-color: #f8d7da; /* Rouge pour la mauvaise réponse */
            border-color: #f5c6cb;
            color: #721c24;
        }

        .score {
            font-size: 1.5em;
            text-align: center;
            margin-top: 20px;
        }

        .start-screen img {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
            border-radius: 8px;
        }

        .start-screen button {
            padding: 15px 30px;
            font-size: 1.3em;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            background-color: #4CAF50;
            color: #fff;
            transition: background-color 0.3s;
        }

        .start-screen button:hover {
            background-color: #45a049;
        }

        /* Media Queries pour écran de téléphone */
        @media (max-width: 600px) {
            .quiz-container {
                padding: 25px;
                max-width: 100%;
            }

            .question {
                font-size: 1.4em; /* Augmentation de la taille sur mobile */
            }

            .choices button {
                font-size: 1.1em; /* Agrandissement de la taille des boutons */
                padding: 12px;
            }

            .score {
                font-size: 1.3em;
            }

            .start-screen button {
                padding: 18px 40px;
                font-size: 1.2em;
            }
        }

        /* Style du bouton Crédits */
        .credits-btn {
            position: fixed;
            bottom: 20px;
            left: 20px;
            padding: 10px 20px;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1em;
            transition: background-color 0.3s;
            z-index: 999;
        }

        .credits-btn:hover {
            background-color: #555;
        }

        /* Style de la modale des crédits */
        .credits-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7); /* Fond semi-transparent */
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .credits-content {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            width: 80%;
            max-width: 400px;
        }

        .credits-content h2 {
            margin-bottom: 15px;
        }

        .credits-content p {
            font-size: 1.1em;
        }

        .close-btn {
            background-color: #ff0000;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1em;
            margin-top: 10px;
        }

        .close-btn:hover {
            background-color: #e60000;
        }