/* CSS existant */
        /* ... */

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: black;
            color: #fff;
        }

        .search-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin: 20px 0;
        }

        .search-input {
            width: 300px;
            padding: 10px;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .search-button {
            background-color: #ff8000;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 18px;
        }

        .theme-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .theme-button {
            background-color: #444;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            margin: 0 10px;
            cursor: pointer;
            font-size: 18px;
            text-align: justify;
        }

        .theme-button:hover {
            background-color: #666;
        }

        .search-results {
            text-align: center;
        }

        .movie-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 20px;
        }

        .movie {
            background-color: #222;
            margin: 10px;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            text-align: center;
            width: calc(25% - 20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s;
            cursor: pointer;
        }

        @media (max-width: 767px) {
            .movie {
                width: calc(50% - 20px);
            }
        }

        .movie:hover {
            transform: scale(1.05);
        }

        .movie img {
            max-width: 100%;
            height: auto;
        }

        .movie h3 {
            margin-top: 10px;
        }

        .modal-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .modal-content {
            background-color: #222;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            text-align: center;
            position: relative;
            width: 40%;
        }

        @media (max-width: 767px) {
            .modal-content {
                width: 70%;
            }
        }

        .close-button {
            position: absolute;
            top: 10px;
            right: 10px;
            color: white;
            cursor: pointer;
        }

        .modal-video, .intro-video {
            max-width: 100%;
            max-height: 100%;
        }

        /* Adaptation pour les téléphones */
        @media (max-width: 767px) {
            .search-input {
                width: 80%;
            }

            .theme-buttons {
                flex-direction: column;
            }

            .theme-button {
                margin: 5px 0;
                width: 100%;
            }

            .modal-content {
                width: 90%;
            }
        }