body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevent scrolling */
}

.icon-container {
    text-align: center;
    cursor: pointer;
    z-index: 0; /* Ensure it's above the video */
    position: relative;
}

.icon-container:hover {
    background-color: lightblue;
    border: 1px dotted #444;
}

#videoPlayer {
    position: fixed; /* Use fixed to cover the whole screen */
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh + 5px);
    display: none; /* Hide by default */
    z-index: 5; /* Ensure it's below the icon container initially */
}

/* Mobile Devices: Display 'Desktop Only' Message */
@media (max-width: 768px) {
    body * {
        display: none !important; /* Hide all content */
    }
    body::before {
        content: 'Connect Wallet';
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        color: white;
        font-size: 16px;
        z-index: 9999;
    }
}
