 body {
            background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
            color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            font-family: 'Inter', sans-serif;
        }
        .incident-card {
            max-width: 700px;
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 165, 192, 0.2);
            border-radius: 20px;
            padding: 4rem 3rem;
            box-shadow: 0 25px 50px rgba(0,0,0,0.6);
            position: relative;
            overflow: hidden;
        }
        .incident-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-rose), transparent);
        }
        .status-icon {
            font-size: 3.5rem;
            color: var(--primary-rose);
            margin-bottom: 2rem;
            filter: drop-shadow(0 0 15px rgba(212, 165, 192, 0.3));
        }
        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }
        .lead-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #b0b0b0;
            margin-bottom: 2rem;
        }
        .hardware-report {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px dashed rgba(212, 165, 192, 0.3);
        }
        .report-line {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
        }
        .report-label { color: #666; }
        .report-value { color: var(--primary-rose); font-weight: 600; }
        
        .alert-box {
            color: #ff6b6b;
            font-weight: 600;
            border-left: 3px solid #ff6b6b;
            padding-left: 1rem;
            margin-bottom: 2rem;
        }
        .info-box {
            color: #6b86ff;
            font-weight: 600;
            border-left: 3px solid #6b86ff;
            padding-left: 1rem;
            margin-bottom: 2rem;
        }
        .btn-emergency {
            color: var(--text-medium);
            text-decoration: none;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.5;
            transition: 0.3s;
        }
        .btn-emergency:hover {
            opacity: 1;
            color: var(--primary-rose);
        }
