body { background: #1a1d29; }
    .status-section { background: #1a1d29; padding: 4rem 1rem; min-height: calc(100vh - 200px); }
    .status-container { max-width: 1000px; margin: 0 auto; }
    .status-header { margin-bottom: 3rem; text-align: center; }
    .status-header h1 { color: #ffffff; margin-bottom: 0.5rem; font-size: 2.5rem; }
    .status-header p { color: #b0b3b8; font-size: 1.1rem; }
    
    .overall-status {
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(56, 142, 60, 0.15) 100%);
        border: 2px solid rgba(76, 175, 80, 0.4);
        border-radius: 20px;
        padding: 2.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .overall-status.degraded {
        background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(245, 124, 0, 0.15) 100%);
        border-color: rgba(255, 152, 0, 0.4);
    }
    
    .overall-status.down {
        background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(211, 47, 47, 0.15) 100%);
        border-color: rgba(244, 67, 54, 0.4);
    }
    
    .status-badge {
        display: inline-block;
        padding: 0.5rem 1.5rem;
        border-radius: 999px;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
    }
    
    .status-badge.operational { background: #4caf50; color: white; }
    .status-badge.degraded { background: #ff9800; color: white; }
    .status-badge.down { background: #f44336; color: white; }
    
    .uptime-percentage {
        font-size: 3rem;
        font-weight: 700;
        color: #4caf50;
        margin: 1rem 0;
    }
    
    .services-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    @media (max-width: 768px) {
        .services-row {
            grid-template-columns: 1fr;
        }
        
        .status-section {
            padding: 2rem 0.75rem;
        }
        
        .status-header h1 {
            font-size: 1.8rem;
        }
        
        .status-header p {
            font-size: 0.95rem;
        }
        
        .overall-status {
            padding: 1.5rem 1rem;
            border-radius: 16px;
        }
        
        .uptime-percentage {
            font-size: 2.2rem;
        }
        
        .service-group-header {
            padding: 1rem;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        
        .service-group-title {
            font-size: 1rem;
        }
        
        .service-group-status {
            font-size: 0.7rem;
            padding: 0.3rem 0.75rem;
        }
        
        .service-list {
            padding: 0.75rem 1rem !important;
        }
        
        .service-group.expanded .service-list {
            padding: 0.75rem 1rem;
        }
        
        .service-item {
            padding: 0.6rem 0;
        }
        
        .service-name {
            font-size: 0.9rem;
        }
        
        .status-text {
            font-size: 0.75rem;
        }
        
        .api-section,
        .incidents-section {
            padding: 1.25rem;
            border-radius: 12px;
        }
        
        .api-section h2,
        .incidents-section h2 {
            font-size: 1.2rem;
        }
        
        .api-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
        
        .incident-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
        
        .incident-time {
            margin-left: 0;
            font-size: 0.75rem;
        }
        
        .incident-title {
            font-size: 1rem;
        }
        
        .incident-desc {
            font-size: 0.85rem;
        }
    }
    
    @media (max-width: 480px) {
        .status-header h1 {
            font-size: 1.5rem;
        }
        
        .uptime-percentage {
            font-size: 1.8rem;
        }
        
        .service-group-title {
            font-size: 0.9rem;
        }
        
        .status-badge {
            font-size: 0.75rem;
            padding: 0.4rem 1rem;
        }
    }
    
    .service-group {
        background: #242838;
        border: 1px solid #3a3f51;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .service-group-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 1.5rem;
        background: rgba(26, 29, 41, 0.5);
        border-bottom: 1px solid #3a3f51;
        cursor: pointer;
        transition: background 0.2s;
    }
    
    .service-group-header:hover {
        background: rgba(26, 29, 41, 0.8);
    }
    
    .service-group-title {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .service-group-title i {
        color: #ff5c00;
    }
    
    .service-group-status {
        padding: 0.4rem 1rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .service-group-status.online {
        background: rgba(76, 175, 80, 0.2);
        color: #4caf50;
    }
    
    .service-group-status.offline {
        background: rgba(244, 67, 54, 0.2);
        color: #f44336;
    }
    
    .service-group-status.limited {
        background: rgba(255, 152, 0, 0.2);
        color: #ff9800;
    }
    
    .service-list {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .service-group.expanded .service-list {
        max-height: 500px;
        padding: 1rem 1.5rem;
    }
    
    .service-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(58, 63, 81, 0.5);
    }
    
    .service-item:last-child {
        border-bottom: none;
    }
    
    .service-name {
        color: #e0e4f6;
        font-weight: 500;
    }
    
    .status-indicator {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .status-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }
    
    .status-dot.online {
        background: #4caf50;
        box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
    }
    
    .status-dot.offline {
        background: #f44336;
        box-shadow: 0 0 8px rgba(244, 67, 54, 0.5);
    }
    
    .status-dot.unknown {
        background: #9e9e9e;
    }
    
    .status-dot.coming_soon {
        background: #ffc107;
        box-shadow: 0 0 8px rgba(255, 193, 7, 0.3);
    }
    
    .status-text {
        color: #b0b3b8;
        font-size: 0.85rem;
        text-transform: capitalize;
    }
    
    .expand-icon {
        color: #9fa7c7;
        transition: transform 0.3s;
    }
    
    .service-group.expanded .expand-icon {
        transform: rotate(180deg);
    }
    
    .api-section {
        background: #242838;
        border: 1px solid #3a3f51;
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .api-section h2 {
        color: #ffffff;
        margin: 0 0 1.5rem 0;
        font-size: 1.4rem;
    }
    
    .api-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(58, 63, 81, 0.5);
    }
    
    .api-item:last-child {
        border-bottom: none;
    }
    
    .api-name {
        color: #e0e4f6;
        font-weight: 600;
    }
    
    .api-time {
        color: #4caf50;
        font-weight: 700;
    }
    
    .incidents-section {
        background: #242838;
        border: 1px solid #3a3f51;
        border-radius: 16px;
        padding: 2rem;
    }
    
    .incidents-section h2 {
        color: #ffffff;
        margin: 0 0 1.5rem 0;
        font-size: 1.4rem;
    }
    
    .no-incidents {
        color: #9fa7c7;
        text-align: center;
        padding: 2rem;
    }
    
    .incident-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .incident-item {
        background: rgba(26, 29, 41, 0.6);
        border-radius: 12px;
        padding: 1.25rem 1.5rem;
        border-left: 4px solid #9fa7c7;
    }
    
    .incident-item.ongoing {
        border-left-color: #f44336;
        background: rgba(244, 67, 54, 0.1);
    }
    
    .incident-item.resolved {
        border-left-color: #4caf50;
    }
    
    .incident-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        flex-wrap: wrap;
    }
    
    .incident-badge {
        padding: 0.35rem 0.85rem;
        border-radius: 999px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .incident-badge .badge-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-style: normal;
        line-height: 1;
        flex-shrink: 0;
    }
    
    .incident-badge.planned_restart {
        background: rgba(33, 150, 243, 0.2);
        color: #2196f3;
    }
    
    .incident-badge.unplanned_outage {
        background: rgba(244, 67, 54, 0.2);
        color: #f44336;
    }
    
    .incident-badge.investigating {
        background: rgba(255, 152, 0, 0.2);
        color: #ff9800;
    }
    
    .incident-service {
        color: #e0e4f6;
        font-weight: 600;
    }
    
    .incident-time {
        color: #9fa7c7;
        font-size: 0.85rem;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .incident-title {
        color: #ffffff;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .incident-desc {
        color: #b0b3b8;
        font-size: 0.95rem;
    }
    
    .incident-resolved {
        color: #4caf50;
        font-size: 0.85rem;
        margin-top: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }
    .incident-resolved i {
        flex-shrink: 0;
    }
    .incident-ongoing {
        color: #f44336;
        font-size: 0.85rem;
        margin-top: 0.75rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }
