#desktop-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    font-family: 'Inter', sans-serif;
}

.warning-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 90%;
    max-width: 480px;
    animation: slideUp 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.warning-header {
    background: linear-gradient(to right, #00b4db, #0083b0);
    color: white;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    position: relative;
}

.warning-header .desktop-icon {
    font-size: 65px;
    margin: 0 auto 15px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.warning-body {
    padding: 20px 25px;
    text-align: center;
}

.warning-title {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.warning-message {
    color: #34495e;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.warning-steps {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e1e8ed;
}

.warning-step {
    display: flex;
    align-items: center;
    text-align: left;
    margin: 10px 0;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.warning-step:hover {
    background: rgba(0, 180, 219, 0.1);
    transform: translateX(5px);
}

.step-number {
    background: #00b4db;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text {
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
} 