.system-status-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 191, 255, 0.02) 0%, rgba(111, 219, 255, 0.01) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.system-status-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.status-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 191, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.2);
}

.status-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    position: relative;
}

.status-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
}

.status-icon i {
    font-size: 30px;
    color: white;
}

.status-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.status-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-label {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #e2e8f0;
    color: #4a5568;
}

.status-label.status-active {
    background: var(--success-color);
    color: white;
}

.status-label.status-inactive {
    background: var(--danger-color);
    color: white;
}

.last-update {
    color: #718096;
    font-size: 14px;
    margin: 0;
}

.last-update i {
    margin-right: 5px;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .system-status-section {
        padding: 60px 0;
    }
    
    .status-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .status-icon {
        width: 60px;
        height: 60px;
    }
    
    .status-icon i {
        font-size: 24px;
    }
    
    .status-value {
        font-size: 24px;
    }
}