/* Security Warning Modal */
.security-warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.security-warning-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.security-warning-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.5);
    border: 5px solid #ff0000;
    animation: slideUp 0.5s ease;
    text-align: center;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.security-warning-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.security-warning-title {
    font-size: 36px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.security-warning-message {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.security-warning-list {
    text-align: left;
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ff0000;
    margin-bottom: 30px;
}

.security-warning-list li {
    font-size: 16px;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 10px;
    list-style: none;
}

.security-warning-list li::before {
    content: '❌ ';
    margin-right: 8px;
}

.security-warning-button {
    background: #ff0000;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.security-warning-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.security-warning-footer {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.security-warning-footer a {
    color: #0066cc;
    text-decoration: none;
}

.security-warning-footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .security-warning-box {
        padding: 30px 20px;
    }

    .security-warning-icon {
        font-size: 60px;
    }

    .security-warning-title {
        font-size: 28px;
    }

    .security-warning-message {
        font-size: 16px;
    }

    .security-warning-list li {
        font-size: 14px;
    }

    .security-warning-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}
