/* ============================================
   Status Page Styles
   ============================================ */

.status-content {
    position: relative;
    z-index: 1;
    padding: 8rem 1.5rem 4rem;
    min-height: 100vh;
}

.status-container {
    max-width: 900px;
    margin: 0 auto;
}

.status-header {
    text-align: center;
    margin-bottom: 3rem;
}

.status-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.status-overall {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
}

.status-overall.all-good { border-color: rgba(16, 185, 129, 0.3); background: rgba(16, 185, 129, 0.1); }
.status-overall.some-issues { border-color: rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.1); }
.status-overall.major-outage { border-color: rgba(239, 68, 68, 0.3); background: rgba(239, 68, 68, 0.1); }

.status-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.status-dot.operational { background: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
.status-dot.degraded { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.6); }
.status-dot.down { background: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.6); }
.status-dot.checking { background: #64748b; animation: pulse-check 1.5s infinite; }

@keyframes pulse-check {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.status-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.status-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-2px);
}

.status-card.operational { border-color: rgba(16, 185, 129, 0.2); }
.status-card.degraded { border-color: rgba(245, 158, 11, 0.2); }
.status-card.down { border-color: rgba(239, 68, 68, 0.2); }

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-icon { font-size: 1.5rem; }

.card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.service-url {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.status-text.operational { color: #10b981; }
.status-text.degraded { color: #f59e0b; }
.status-text.down { color: #ef4444; }
.status-text.checking { color: #64748b; }

.response-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-height: 1.2em;
}

/* Footer info */
.status-footer-info {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.status-footer-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.status-footer-info a {
    color: var(--accent-sky);
    text-decoration: none;
}

.status-footer-info a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .status-header h1 { font-size: 1.8rem; }
    .status-grid { grid-template-columns: 1fr; }
}
