/* Orientation Lock Overlay - Portrait Only */
.orientation-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a1a;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 20px;
}

.orientation-overlay .orientation-icon {
    width: 80px;
    height: 80px;
    color: #ffd700;
    animation: orientation-rotate 2s ease-in-out infinite;
}

.orientation-overlay .orientation-msg {
    font-family: 'Jua', sans-serif;
    font-size: 1.3rem;
    color: #00d4ff;
    line-height: 1.5;
}

@keyframes orientation-rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(90deg); }
    75% { transform: rotate(0deg); }
}

/* Show overlay only on mobile landscape */
@media (orientation: landscape) and (max-height: 500px) {
    .orientation-overlay {
        display: flex;
    }
}
