/* Landscape Orientation Blocker for Mobile Devices */

/* Hide the blocker by default */
.landscape-blocker {
    display: none;
}

/* Show blocker ONLY on mobile devices in landscape mode */
@media (max-width: 1024px) and (orientation: landscape) {
    .landscape-blocker {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #201c4f;
        z-index: 99999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .landscape-blocker-content {
        text-align: center;
        color: #fff;
    }

    .rotate-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 30px;
        animation: rotateAnimation 2s ease-in-out infinite;
    }

    .rotate-icon svg {
        width: 100%;
        height: 100%;
        fill: #E19E91;
    }

    .landscape-blocker h2 {
        font-size: 1.5em;
        color: #E19E91;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .landscape-blocker p {
        font-size: 1.1em;
        color: #fff;
        line-height: 1.6em;
        max-width: 400px;
        margin: 0 auto;
    }

    @keyframes rotateAnimation {

        0%,
        100% {
            transform: rotate(0deg);
        }

        25% {
            transform: rotate(-15deg);
        }

        75% {
            transform: rotate(15deg);
        }
    }

    /* Hide main content when in landscape */
    body {
        overflow: hidden;
    }
}