    body {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background-color: #0f0f1a;
        font-family: 'Arial', sans-serif;
        overflow-x: hidden;
    }

    .video-container {
        position: relative;
        width: 100%;
        max-width: 900px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        background-color: #000;
    }

    /* Fullscreen state */
    .video-container.fullscreen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        z-index: 9999;
        background: #000;
    }

    .video-container.fullscreen video {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    video {
        width: 100%;
        display: block;
        height: auto;
        max-height: 100vh;
        background-color: #000;
    }

    /* Hide unwanted default video controls */
    video::-webkit-media-controls-volume-slider,
    video::-webkit-media-controls-mute-button,
    video::-webkit-media-controls-fullscreen-button,
    video::-webkit-media-controls-overflow-button,
    video::-webkit-media-controls-toggle-closed-captions-button {
        display: none !important;
    }

    /* Play button overlay */
    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background-color: rgba(255,255,255,0.25);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 30;
        transition: all 0.3s ease;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
        animation: pulse 2s infinite;
    }

    .play-button:hover {
        background-color: rgba(255,255,255,0.35);
        transform: translate(-50%, -50%) scale(1.1);
    }

    .play-icon {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 0 20px 35px;
        border-color: transparent transparent transparent white;
        margin-left: 8px;
    }

    @keyframes pulse {
        0% { transform: translate(-50%, -50%) scale(1); }
        50% { transform: translate(-50%, -50%) scale(1.05); }
        100% { transform: translate(-50%, -50%) scale(1); }
    }

    /* GLOWING PROMPT TEXT — positioned ABOVE buttons (desktop) */
    .prompt-text {
        position: absolute;
        left: 0;
        bottom: 90px; /* buttons are bottom:30px */
        width: 100%;
        text-align: center;
        color: #ffffff;
        font-size: 22px;
        font-weight: 700;
        text-shadow:
            0 0 8px rgba(121, 99, 255, 0.8),
            0 0 14px rgba(91, 36, 255, 0.9),
            0 0 22px rgba(121, 99, 255, 1);
        opacity: 0;
        animation: fadeInGlow 1.2s ease forwards;
        animation-delay: 0.4s;
        pointer-events: none; /* don’t block clicks */
    }

    @keyframes fadeInGlow {
        0% {
            opacity: 0;
            transform: translateY(10px);
            text-shadow: none;
        }
        100% {
            opacity: 1;
            transform: translateY(0);
            text-shadow:
                0 0 8px rgba(121,99,255,0.8),
                0 0 14px rgba(91,36,255,0.9),
                0 0 22px rgba(121,99,255,1);
        }
    }

    /* Bottom button row */
    .button-container {
        position: absolute;
        bottom: 30px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1.2s ease forwards;
        animation-delay: 0.5s;
        z-index: 10;
    }

    @keyframes fadeInUp {
        0% { opacity: 0; transform: translateY(20px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    /* Base button styles */
    .video-button {
        padding: 10px 12px;
        border: none;
        border-radius: 9px;
        background: linear-gradient(135deg, rgba(91,36,255,0.85), rgba(121,99,255,0.85));
        color: white;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0,0,0,0.4);
        opacity: 0;
        transform: scale(0.95);
        animation: buttonAppear 0.5s ease forwards;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .video-button:nth-child(1) { animation-delay: 0.6s; }
    .video-button:nth-child(2) { animation-delay: 0.8s; }
    .video-button:nth-child(3) { animation-delay: 1.0s; }
    .video-button:nth-child(4) { animation-delay: 1.2s; }
    .video-button:nth-child(5) { animation-delay: 1.4s; }
    .video-button:nth-child(6) { animation-delay: 1.6s; }
    .video-button:nth-child(7) { animation-delay: 1.8s; }

    @keyframes buttonAppear {
        from { opacity: 0; transform: scale(0.95); }
        to   { opacity: 1; transform: scale(1); }
    }

    .video-button:hover {
        transform: translateY(-3px) scale(1.18) !important;
        box-shadow: 0 10px 18px rgba(0,0,0,0.35);
    }

    .video-button.active {
        box-shadow: 0 0 15px rgba(121,99,255,0.9);
        transform: translateY(-2px) scale(1.04);
    }

    /* Right-side nav buttons (sideNav) */
    .nav-buttons {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 10;
        opacity: 0;
        animation: fadeIn 1s ease forwards;
        animation-delay: 1.6s;
    }

    @keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

    .nav-button {
        padding: 8px 12px;
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(91,36,255,0.85), rgba(121,99,255,0.85));
        color: white;
        font-size: 13px;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
        animation: floatingEffect 3s ease-in-out infinite;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    @keyframes floatingEffect {
        0% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
        100% { transform: translateY(0); }
    }

    .nav-button:hover {
        animation: none; /* pause float while hovered */
        transform: translateY(-3px) scale(1.08);
        box-shadow: 0 10px 18px rgba(0,0,0,0.35);
    }

    /* Modal styles (Testimonials & Test Drive) */
    .modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.8);
        z-index: 10000;
    }

    .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #111323;
        border-radius: 12px;
        padding: 20px 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.7);
        max-width: 320px;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .modal-content h2 {
        color: #fff;
        margin: 0 0 8px;
        font-size: 18px;
        text-align: center;
    }

    .testimonial-btn,
    .testdrive-btn,
    .back-button {
        padding: 9px 12px;
        border-radius: 8px;
        border: none;
        font-weight: 600;
        cursor: pointer;
        background: linear-gradient(135deg, rgba(91,36,255,0.9), rgba(121,99,255,0.9));
        color: #fff;
        text-decoration: none;
        text-align: center;
        width: 100%;
        box-shadow: 0 3px 8px rgba(0,0,0,0.4);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .back-button {
        background: rgba(15,15,26,0.95);
        border: 1px solid rgba(121,99,255,0.6);
    }

    .testimonial-btn:hover,
    .testdrive-btn:hover,
    .back-button:hover {
        transform: translateY(-2px) scale(1.08);
        box-shadow: 0 5px 12px rgba(0,0,0,0.5);
    }

    /* Custom controls hover (play/pause, fullscreen) */
    .custom-controls button {
        transition: transform 0.25s ease;
    }

    .custom-controls button:hover {
        transform: scale(1.12);
    }

    /* Mobile layout */
    @media (max-width: 480px) {
        .video-container {
            display: flex;
            flex-direction: column;
        }

        /* Move text into normal flow on mobile */
        .prompt-text {
            position: relative;
            bottom: auto;
            order: 2;
            margin-top: 10px;
            margin-bottom: 6px;
            font-size: 18px;
            pointer-events: auto;
            text-shadow:
                0 0 5px rgba(121,99,255,0.6),
                0 0 8px rgba(91,36,255,0.7);
        }

        .button-container {
            position: relative;
            bottom: 0;
            background-color: rgba(15,15,26,0.9);
            padding: 12px 5px;
            margin-top: 8px;
            order: 3;
            transform: none !important;
        }

        .nav-buttons {
            position: relative;
            top: auto;
            right: auto;
            transform: none;
            flex-direction: row;
            justify-content: center;
            padding: 8px 5px;
            background-color: rgba(15,15,26,0.9);
            order: 4;
        }

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