/* Orientation Enforcement Styles */

#orientation-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c3e50; /* Dark blue background */
    z-index: 99999; /* Interaction blocker */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

#orientation-overlay .icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: rotate-phone 2s infinite ease-in-out;
}

#orientation-overlay p {
    font-size: 1.5em;
    margin: 0 20px;
}

@keyframes rotate-phone {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-90deg); }
    50% { transform: rotate(-90deg); }
    75% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Show overlay only on mobile devices in portrait mode */
@media only screen and (max-width: 900px) and (orientation: portrait) {
    #orientation-overlay {
        display: flex;
    }
}
