/* 移动端访问提示样式 */
.mobile-warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-warning-overlay.active {
    display: flex;
}

.mobile-warning-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    max-width: 90%;
    width: 400px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mobile-warning-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.mobile-warning-title {
    font-size: 22px;
    font-weight: bold;
    color: #e74c3c;
    margin: 0 0 15px 0;
}

.mobile-warning-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.mobile-warning-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-warning-btn:hover {
    transform: scale(1.05);
}

.mobile-warning-btn:active {
    transform: scale(0.95);
}

/* 深色模式适配 */
[data-theme="dark"] .mobile-warning-content {
    background: #1e1e1e;
}

[data-theme="dark"] .mobile-warning-text {
    color: #aaa;
}