    /* Import Google Font */
    @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

    /* Reset and global styling */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Body styling */
    body {
        position: relative;
        width: 100%;
        height: 100vh;
        background-color: black;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Press Start 2P', sans-serif;
        overflow: hidden;
    }

    /* Fullscreen video container */
    .video-container {
        position: relative;
        width: 95%;
        height: 95%;
        border-radius: 15%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }

    #background-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        /* Ensure the video stays behind the text */
    }

    /* Content container styling */
    .content-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        /* Keep text above the video */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
    }

    .content-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        /* Dark overlay for better text readability */
        z-index: -1;
        /* Keep the overlay behind the text */
    }

    .welcome-text {
        font-size: 1rem;
        margin-bottom: 1.3rem;
        margin-top: 1.3rem;
        text-transform: uppercase;
        line-height: 2rem;
    }

    .info-section a {
        font-size: 0.9rem;
        margin: 2rem 0;
        text-transform: uppercase;
        color: white;
        text-decoration: none;

        cursor: pointer;
    }

    .footer {
        font-size: 0.8rem;
        text-align: center;
        text-transform: uppercase;
        margin-top: 10rem;
    }

    .text-muted {
        color: grey !important;
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .video-container {
            width: 95%;
            height: 95%;
            border-radius: 10%;
        }

        .welcome-text {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .info-section p {
            font-size: 0.8rem;
        }

        .footer {
            font-size: 0.7rem;
        }
    }

    @media (max-width: 480px) {
        .welcome-text {
            font-size: 1rem;
            line-height: 1.5rem;
        }

        .info-section p {
            font-size: 0.7rem;
        }

        .footer {
            font-size: 0.6rem;
        }
    }



    