/* Status Page Specific Styles */

.support-hero {
    padding: 120px 0 80px;
    background: var(--surface);
    text-align: center;
    position: relative;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0.3;
}

.support-header {
    position: relative;
    z-index: 1;
}

.support-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
    animation: fadeInUp 1s ease-out;
}

.support-header p {
    font-size: 22px;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.support-content {
    padding: 80px 0;
    background: var(--background);
}

.status-overview {
    max-width: 1000px;
    margin: 0 auto;
}

.status-summary {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.overall-status {
    background: var(--surface);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 32px;
    transition: var(--transition-smooth);
}

.overall-status.operational {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
}

.overall-status:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.status-icon {
    font-size: 64px;
    animation: pulse 2s ease-in-out infinite;
}

.status-info h2 {
    color: var(--text);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.status-info p {
    color: var(--text-light);
    font-size: 18px;
    margin: 0;
}

.services-status {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.services-status h2 {
    color: var(--text);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.services-status h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: translateX(-50%);
}

.service-group {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 32px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    animation: scaleIn 0.8s ease-out;
}

.service-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.service-group:nth-child(1) { animation-delay: 0.1s; }
.service-group:nth-child(2) { animation-delay: 0.2s; }
.service-group:nth-child(3) { animation-delay: 0.3s; }
.service-group:nth-child(4) { animation-delay: 0.4s; }

.service-group h3 {
    color: var(--text);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-group h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: rgba(34, 197, 94, 0.05);
    padding-left: 16px;
    margin: 0 -16px;
    border-radius: var(--radius);
}

.service-name {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    flex: 1;
}

.status-badge {
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.status-badge.operational {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    color: var(--primary);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.status-history {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.status-history h2 {
    color: var(--text);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.history-item {
    background: var(--surface);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.history-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.history-date {
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
}

.history-status {
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
}

.history-status.operational {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-support {
    background: var(--surface);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-light);
    animation: fadeInUp 1s ease-out 0.8s both;
    transition: var(--transition-smooth);
}

.contact-support:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-support h2 {
    color: var(--text);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-support p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-hero {
        padding: 100px 0 60px;
    }
    
    .support-content {
        padding: 60px 0;
    }
    
    .overall-status {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .service-group {
        padding: 24px;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0;
    }
    
    .status-badge {
        align-self: flex-end;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 24px;
    }
    
    .contact-support {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .service-group h3 {
        font-size: 20px;
    }
    
    .status-icon {
        font-size: 48px;
    }
    
    .status-info h2 {
        font-size: 24px;
    }
    
    .status-info p {
        font-size: 16px;
    }
}
