/* landscape.css - 横屏警告样式（仅移动端显示） */
.landscape-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    color: white;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', sans-serif;
}

.landscape-warning-content {
    padding: 40px;
}

.landscape-warning-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: rotatePhone 1.5s ease-in-out infinite;
}

.landscape-warning-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.landscape-warning-hint {
    font-size: 14px;
    color: #aaa;
}

@keyframes rotatePhone {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(90deg);
    }
}

/* 横屏时显示警告（仅移动设备） */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .landscape-warning {
        display: flex !important;
    }
}