@media (max-width: 768px) {
    .lcd-screen-left {
        position: absolute;
        width: auto;
        height: auto;
        font-size: 12px;
        margin-left: 2.5%;
    }

    .lcd-screen-right {
        width: auto;
        height: auto;
        font-size: 12px;
        margin-right: 2.5%;
    }

    .button-container {
        flex-wrap: wrap;
        justify-content: center;
        z-index: 1000;
    }

    /* Mobile-specific styles for the About Modal */
    .about-modal {
        margin: auto;
        width: 90%; /* Use most of the screen width */
        height: 100%; /* Allow some scrolling for larger content */

    }

    /* Wallet Display */
    .wallet-display {
        position: absolute;
        top: 3%;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        background-color: rgba(0, 0, 0, 0);
        padding: 10px 20px;
        font-family: Comic Sans MS;
        font-size: 14px;
        color: #01f9d8cc;
        z-index: 25;
    }

    .wallet-display img {
        width: 16px;
        height: 16px;
        margin: 0 5px;
    }

    #controls {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw; /* Full width of the viewport */
        height: 100vh; /* Full height of the viewport */
        object-fit: cover; /* Ensures the video fills the screen without distortion */
        /* z-index: -1; Push it to the background behind other elements */
    }
    #landing {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw; /* Full width of the viewport */
        height: 100vh; /* Full height of the viewport */
        object-fit: cover; /* Ensures the video fills the screen without distortion */
    }
    #landing-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw; /* Full width of the viewport */
        height: 100vh; /* Full height of the viewport */
        object-fit: cover; /* Ensures the video fills the screen without distortion */
        z-index: -1; /* Push it to the background behind other elements */
    }
    #connect-wallet {
        position: absolute;
        z-index: 2000 !important;
        width: 200px; /* Adjust as needed */
        height: 50px;
        display: block;
        text-align: center;
        padding: 10px 20px;
    }
    .centered-button {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 15px 30px;
        font-size: 18px;
        font-family: Comic Sans MS;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.8);
        border: 2px solid #fff;
        border-radius: 5px;
        cursor: pointer;
        z-index: 15;
        margin-bottom: 1%;
    }

}