/* ========================================
   LANDSCAPE WARNING (Mobile Only)
   ======================================== */
#landscape-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

#landscape-warning .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: rotate-phone 2s infinite ease-in-out;
}

#landscape-warning h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#landscape-warning p {
    color: #94a3b8;
}

@keyframes rotate-phone {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-90deg);
    }
}

/* Activate only on mobile-like landscape screens */
@media screen and (orientation: landscape) and (max-height: 500px) {
    #landscape-warning {
        display: flex !important;
    }

    /* Hide main content to prevent scrolling/interaction */
    .container,
    .header,
    .game-area,
    .mobile-menu {
        display: none !important;
    }
}