/* Security Warning Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    position: relative;
}

.monitoring-indicator {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #dc3545;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skull {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
    color: #dc3545;
    font-weight: 700;
    letter-spacing: 2px;
}

h1 {
    color: #dc3545;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-header {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-text {
    font-size: 14px;
    line-height: 1.7;
    color: #e9ecef;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-header {
    color: #dc3545;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.system-classification {
    color: #ffc107;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px;
    border: 2px solid #ffc107;
    border-radius: 4px;
    background: rgba(255, 193, 7, 0.1);
}

.section {
    margin-bottom: 20px;
}

.section-header {
    color: #ffc107;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
    padding-bottom: 4px;
}

.warning-text ul {
    margin: 12px 0 16px 20px;
    padding: 0;
}

.warning-text li {
    margin: 6px 0;
    list-style-type: disc;
    color: #e9ecef;
}

.final-warning {
    background: rgba(220, 53, 69, 0.15);
    padding: 15px;
    border-radius: 4px;
    border: 1px solid rgba(220, 53, 69, 0.5);
    margin: 20px 0 16px 0;
    text-align: center;
    font-weight: 600;
}

.restriction-notice {
    background: rgba(220, 53, 69, 0.2);
    padding: 15px;
    border-radius: 4px;
    border: 2px solid #dc3545;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #dc3545;
}

.footer-warning {
    margin-top: 25px;
    text-align: center;
    color: #ffc107;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Professional, clean styling */
strong {
    font-weight: 600;
    color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 30px 20px;
    }

    h1 {
        font-size: 24px;
    }

    .warning-header {
        font-size: 14px;
        padding: 10px 15px;
    }

    .warning-text {
        padding: 20px;
        font-size: 13px;
    }
}