/* Mobile View Warning Overlay */
#mobile-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    z-index: 100000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    font-family: 'Inter', sans-serif;
}

#mobile-warning h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-accent, #fff);
    text-transform: uppercase;
    letter-spacing: 2px;
}

#mobile-warning p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 15px;
    opacity: 0.8;
}

#mobile-warning .warning-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

@media (max-width: 1023px) {
    #mobile-warning {
        display: flex;
    }

    /* Hide main content to prevent jumping/glitches behind the overlay */
    body {
        overflow: hidden;
    }
}

@media (min-width: 1024px) {
    #mobile-warning {
        display: none;
    }
}