/* Status Page Styles */

.status-page {
    padding-top: 80px; /* Space for fixed navbar */
}

.status-hero {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.status-hero-card {
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border-width: 2px;
    border-style: solid;
}

.status-hero-card.status-ok {
    background-color: rgba(132, 204, 22, 0.1);
    border-color: #84cc16;
}

.status-hero-card .status-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.status-hero-card.status-ok .status-icon {
    color: #84cc16;
}

.status-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.status-subtitle {
    color: #a0a0a0;
    font-size: 1rem;
}

.status-components {
    padding: 60px 0;
    background-color: #121212;
}

.section-title-status {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.component-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.component-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.component-name {
    font-weight: 600;
    color: #ffffff;
}

.component-status {
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.status-ok-text {
    color: #84cc16;
    background-color: rgba(132, 204, 22, 0.1);
}

.status-degraded-text {
    color: #ffc107;
    background-color: rgba(255, 193, 7, 0.1);
}

.status-maintenance-text {
    color: #0dcaf0;
    background-color: rgba(13, 202, 240, 0.1);
}

.uptime-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.uptime-fill {
    height: 100%;
    background-color: #84cc16;
    border-radius: 4px;
}

.uptime-fill.degraded {
    background-color: #ffc107;
}

.uptime-fill.maintenance {
    background-color: #0dcaf0;
}

.uptime-text {
    font-size: 0.8rem;
    color: #a0a0a0;
    text-align: right;
}

.status-history {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.incident-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.incident-item {
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.incident-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
}

.incident-status-badge {
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.incident-status-badge.status-ok {
    color: #84cc16;
    background-color: rgba(132, 204, 22, 0.1);
}

.incident-status-badge.status-maintenance {
    color: #0dcaf0;
    background-color: rgba(13, 202, 240, 0.1);
}

.incident-date {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.incident-body {
    padding: 20px;
}

.incident-title {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.incident-update {
    color: #a0a0a0;
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 2px solid #84cc16;
}

.incident-update:last-child {
    margin-bottom: 0;
}

.incident-update strong {
    color: #ffffff;
}

/* Animations */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


@media (max-width: 768px) {
    .status-title {
        font-size: 1.8rem;
    }
}