/* EVE-themed space background and modern styling */

body {
    background: linear-gradient(135deg, #000000 0%, #1a0a1a 25%, #2a1a2a 50%, #1a0a1a 75%, #000000 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: stars 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes stars {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

/* Dark glass morphism effect */
.glass {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(120, 58, 237, 0.3);
    border-radius: 12px;
}

.glass-light {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(8px) saturate(180%);
    border: 1px solid rgba(120, 58, 237, 0.2);
    border-radius: 8px;
}

/* Dark ominous theme colors */
.eve-orange { color: #dc2626; }
.eve-blue { color: #7c3aed; }
.eve-gold { color: #f59e0b; }
.eve-red { color: #dc2626; }
.eve-purple { color: #7c3aed; }
.eve-dark { color: #6b7280; }

/* Enhanced status indicators */
.status-critical {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.status-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.status-good {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Dark hover effects */
.hover-glow:hover {
    box-shadow: 0 0 20px rgba(120, 58, 237, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Responsive table */
@media (max-width: 768px) {
    table {
        font-size: 0.875rem;
    }
    
    th, td {
        padding: 0.5rem 0.25rem;
    }
}

/* Dark loading spinner */
.spinner {
    border: 4px solid rgba(120, 58, 237, 0.2);
    border-top: 4px solid #7c3aed;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pulse animation for important elements */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .7;
    }
}