/* ═══════════════════════════════════════════════════════════════════════════
   📱 ROTATE DEVICE WARNING - PORTRAIT MODE
   Mobilde dikey moddayken yatay çevirme uyarısı
   ═══════════════════════════════════════════════════════════════════════════ */
.rotate-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0a0a1a 100%);
    z-index: 99999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rotate-content {
    animation: pulseRotate 2s ease-in-out infinite;
}

.rotate-content i {
    font-size: 5rem;
    color: #00eaff;
    text-shadow: 0 0 30px rgba(0, 234, 255, 0.6);
    margin-bottom: 20px;
    display: block;
    animation: rotateIcon 2s ease-in-out infinite;
}

.rotate-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
    letter-spacing: 2px;
}

.rotate-content p {
    font-size: 1rem;
    color: #888;
    margin: 0;
    letter-spacing: 1px;
}

@keyframes rotateIcon {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }
}

@keyframes pulseRotate {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Portrait modda göster */
@media (pointer: coarse) and (orientation: portrait) {
    .rotate-warning {
        display: flex !important;
    }

    .main-screen-wrapper {
        display: none !important;
    }
}
