/* ==========================================
   STATUS PAGE 2100 - FUTURISTIC DESIGN
   ========================================== */

/* Hero Section 2100 */
.status-hero-2100 {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.05) 0%, 
        var(--bg-primary) 50%, 
        rgba(59, 130, 246, 0.05) 100%);
}

.status-hero-2100 .hero-bg-2100 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.status-hero-2100 .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 15s ease-in-out infinite;
}

.status-hero-2100 .orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -50px;
}

.status-hero-2100 .orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.status-hero-2100 .hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Pulse Animation */
.status-hero-2100 .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    animation: pulseExpand 3s ease-out infinite;
}

.status-hero-2100 .pulse-ring:nth-child(2) {
    animation-delay: 1s;
}

.status-hero-2100 .pulse-ring:nth-child(3) {
    animation-delay: 2s;
}

@keyframes pulseExpand {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.status-hero-2100 .hero-container-2100 {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.status-hero-2100 .breadcrumb-2100 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.status-hero-2100 .breadcrumb-2100 a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.status-hero-2100 .breadcrumb-2100 a:hover {
    color: #10b981;
}

.status-hero-2100 .breadcrumb-2100 .separator {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.status-hero-2100 .breadcrumb-2100 .current {
    color: #10b981;
    font-weight: 500;
}

/* Status Badge */
.status-hero-2100 .status-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 50px;
    color: #10b981;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.status-hero-2100 .status-badge-2100 .status-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-hero-2100 .status-badge-2100.degraded {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    border-color: rgba(245, 158, 11, 0.4);
    color: #f59e0b;
}

.status-hero-2100 .status-badge-2100.degraded .status-dot {
    background: #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.status-hero-2100 .status-badge-2100.outage {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.status-hero-2100 .status-badge-2100.outage .status-dot {
    background: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.status-hero-2100 .hero-title-2100 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

.status-hero-2100 .hero-title-2100 span {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-hero-2100 .hero-meta-2100 {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.status-hero-2100 .hero-meta-2100 i {
    margin-right: 8px;
    color: #10b981;
}

/* Overall Status Card */
.status-overall-2100 {
    padding: 0 20px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.status-overall-2100 .overall-container-2100 {
    max-width: 900px;
    margin: 0 auto;
}

.status-overall-2100 .overall-card-2100 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.status-overall-2100 .overall-stat-2100 {
    text-align: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.status-overall-2100 .overall-stat-2100:hover {
    transform: translateY(-5px);
}

.status-overall-2100 .stat-value-2100 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.status-overall-2100 .stat-value-2100.green {
    color: #10b981;
}

.status-overall-2100 .stat-value-2100.blue {
    color: #3b82f6;
}

.status-overall-2100 .stat-value-2100.purple {
    color: #8b5cf6;
}

.status-overall-2100 .stat-label-2100 {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Services Section */
.status-services-2100 {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.status-services-2100 .services-container-2100 {
    max-width: 900px;
    margin: 0 auto;
}

.status-services-2100 .section-header-2100 {
    margin-bottom: 40px;
}

.status-services-2100 .section-title-2100 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-services-2100 .section-title-2100 i {
    color: #3b82f6;
}

/* Service Cards */
.status-services-2100 .services-list-2100 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-services-2100 .service-card-2100 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.status-services-2100 .service-card-2100:hover {
    transform: translateX(8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.status-services-2100 .service-info-2100 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-services-2100 .service-icon-2100 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-services-2100 .service-icon-2100 i {
    font-size: 1.3rem;
    color: #3b82f6;
}

.status-services-2100 .service-details-2100 h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.status-services-2100 .service-details-2100 p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.status-services-2100 .service-right-2100 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-services-2100 .service-uptime-2100 {
    text-align: right;
}

.status-services-2100 .service-uptime-2100 span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.status-services-2100 .service-uptime-2100 strong {
    display: block;
    font-size: 1rem;
    color: #10b981;
    font-weight: 600;
}

.status-services-2100 .service-status-2100 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-services-2100 .service-status-2100.operational {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-services-2100 .service-status-2100.degraded {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-services-2100 .service-status-2100.outage {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-services-2100 .service-status-2100 .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

/* Uptime History Section */
.status-history-2100 {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.status-history-2100 .history-container-2100 {
    max-width: 900px;
    margin: 0 auto;
}

.status-history-2100 .section-header-2100 {
    margin-bottom: 40px;
}

.status-history-2100 .section-title-2100 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-history-2100 .section-title-2100 i {
    color: #8b5cf6;
}

/* Uptime Bars */
.status-history-2100 .uptime-service-2100 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.status-history-2100 .uptime-header-2100 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.status-history-2100 .uptime-header-2100 h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.status-history-2100 .uptime-header-2100 span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
}

.status-history-2100 .uptime-bars-2100 {
    display: flex;
    gap: 3px;
    height: 32px;
}

.status-history-2100 .uptime-bar-2100 {
    flex: 1;
    background: #10b981;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.status-history-2100 .uptime-bar-2100:hover {
    transform: scaleY(1.2);
}

.status-history-2100 .uptime-bar-2100.degraded {
    background: #f59e0b;
}

.status-history-2100 .uptime-bar-2100.outage {
    background: #ef4444;
}

.status-history-2100 .uptime-bar-2100::after {
    content: attr(data-date);
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-history-2100 .uptime-bar-2100:hover::after {
    opacity: 1;
}

.status-history-2100 .uptime-legend-2100 {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Incidents Section */
.status-incidents-2100 {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.status-incidents-2100 .incidents-container-2100 {
    max-width: 900px;
    margin: 0 auto;
}

.status-incidents-2100 .section-header-2100 {
    margin-bottom: 40px;
}

.status-incidents-2100 .section-title-2100 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-incidents-2100 .section-title-2100 i {
    color: #f59e0b;
}

/* Incident Cards */
.status-incidents-2100 .incidents-list-2100 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-incidents-2100 .incident-card-2100 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.status-incidents-2100 .incident-card-2100::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.status-incidents-2100 .incident-card-2100.resolved::before {
    background: #10b981;
}

.status-incidents-2100 .incident-card-2100.investigating::before {
    background: #f59e0b;
}

.status-incidents-2100 .incident-card-2100.outage::before {
    background: #ef4444;
}

.status-incidents-2100 .incident-header-2100 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.status-incidents-2100 .incident-header-2100 h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.status-incidents-2100 .incident-status-2100 {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-incidents-2100 .incident-status-2100.resolved {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-incidents-2100 .incident-status-2100.investigating {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-incidents-2100 .incident-card-2100 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.status-incidents-2100 .incident-meta-2100 {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.status-incidents-2100 .incident-meta-2100 span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* No Incidents */
.status-incidents-2100 .no-incidents-2100 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
}

.status-incidents-2100 .no-incidents-2100 i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 16px;
}

.status-incidents-2100 .no-incidents-2100 h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.status-incidents-2100 .no-incidents-2100 p {
    color: var(--text-secondary);
}

/* Subscribe Section */
.status-subscribe-2100 {
    padding: 80px 20px;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.05) 0%, 
        var(--bg-primary) 50%, 
        rgba(59, 130, 246, 0.05) 100%);
    text-align: center;
}

.status-subscribe-2100 .subscribe-container-2100 {
    max-width: 600px;
    margin: 0 auto;
}

.status-subscribe-2100 .subscribe-icon-2100 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.status-subscribe-2100 .subscribe-icon-2100 i {
    font-size: 2rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-subscribe-2100 .subscribe-title-2100 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.status-subscribe-2100 .subscribe-title-2100 span {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-subscribe-2100 .subscribe-desc-2100 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.status-subscribe-2100 .subscribe-form-2100 {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}

.status-subscribe-2100 .subscribe-form-2100 input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
}

.status-subscribe-2100 .subscribe-form-2100 input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.status-subscribe-2100 .subscribe-form-2100 input::placeholder {
    color: var(--text-muted);
}

.status-subscribe-2100 .subscribe-form-2100 button {
    padding: 16px 28px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-subscribe-2100 .subscribe-form-2100 button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Light Theme */
[data-theme="light"] .status-hero-2100 {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.08) 0%, 
        #f8fafc 50%, 
        rgba(59, 130, 246, 0.08) 100%);
}

[data-theme="light"] .status-hero-2100 .hero-gradient-orb.orb-1 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .status-hero-2100 .hero-gradient-orb.orb-2 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .status-overall-2100 .overall-card-2100 {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .status-hero-2100 {
        min-height: auto;
        padding: 120px 20px 60px;
    }
    
    .status-overall-2100 .overall-card-2100 {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
        gap: 16px;
    }
    
    .status-overall-2100 .stat-value-2100 {
        font-size: 1.6rem;
    }
    
    .status-services-2100 .service-card-2100 {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .status-services-2100 .service-right-2100 {
        width: 100%;
        justify-content: space-between;
    }
    
    .status-history-2100 .uptime-bars-2100 {
        height: 24px;
    }
    
    .status-subscribe-2100 .subscribe-form-2100 {
        flex-direction: column;
    }
    
    .status-subscribe-2100 .subscribe-form-2100 button {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .status-overall-2100 .overall-card-2100 {
        grid-template-columns: 1fr;
    }
    
    .status-services-2100 .service-info-2100 {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .status-incidents-2100 .incident-header-2100 {
        flex-direction: column;
        gap: 8px;
    }
}
