.status-container {
    max-width: 800px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.header {
    padding: 2rem;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.status-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status-global {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.operational {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.status-indicator.partial {
    background: #fb923c;
    box-shadow: 0 0 10px rgba(251, 146, 60, 0.5);
}

.status-indicator.outage {
    background: #f87171;
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

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

.global-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
}

.last-update {
    font-size: 0.9rem;
    opacity: 0.7;
}

.services-section {
    padding: 1.5rem 0;
}

.section-title {
    padding: 0 2rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.status-list {
    list-style: none;
}

.status-item {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.status-item:last-child {
    border-bottom: none;
}

.svc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
}

.svc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.svc-name {
    font-weight: 600;
    font-size: 1rem;
}

.svc-description {
    font-size: 0.85rem;
    opacity: 0.7;
}

.svc-metrics {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.svc-state {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-state.operational {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.svc-state.partial_outage,
.svc-state.degraded {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.svc-state.major_outage,
.svc-state.maintenance {
    background: rgba(248, 113, 113, 0.2);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.svc-latency {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.loading {
    text-align: center;
    padding: 3rem;
    font-size: 1.1rem;
    opacity: 0.7;
}

.error {
    text-align: center;
    padding: 3rem;
    color: #f87171;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    body {
        padding: 1rem 0.5rem;
    }

    .status-container {
        border-radius: 15px;
    }

    .header {
        padding: 1.5rem;
    }

    .status-title {
        font-size: 1.5rem;
    }

    .status-global {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .status-item {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .svc-metrics {
        width: 100%;
        justify-content: space-between;
    }
}