     /* © support.nextforge.fr 1.1.0 statuts */
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #171717;
            font-family: 'Open Sans', sans-serif;
            overflow-x: hidden;
        }
        
        .nav-solid {
            background: rgba(23, 23, 23, 0.95);
            backdrop-filter: blur(10px);
        }
        
        .status-operational { color: #22c55e; }
        .status-degraded { color: #f59e0b; }
        .status-partial { color: #f97316; }
        .status-major { color: #ef4444; }
        .status-maintenance { color: #3b82f6; }
        
        .bg-status-operational { background: #22c55e; }
        .bg-status-degraded { background: #f59e0b; }
        .bg-status-partial { background: #f97316; }
        .bg-status-major { background: #ef4444; }
        .bg-status-maintenance { background: #3b82f6; }
        
        .border-status-operational { border-color: #22c55e; }
        .border-status-degraded { border-color: #f59e0b; }
        .border-status-partial { border-color: #f97316; }
        .border-status-major { border-color: #ef4444; }
        .border-status-maintenance { border-color: #3b82f6; }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .status-pulse {
            animation: pulse 2s ease-in-out infinite;
        }
        
        .service-card {
            background: #1a1a1a;
            border: 1px solid #262626;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            border-color: #333;
            background: #1f1f1f;
        }
        
        .uptime-bar {
            display: flex;
            gap: 2px;
            height: 30px;
        }
        
        .uptime-day {
            flex: 1;
            border-radius: 2px;
            transition: all 0.2s ease;
            cursor: pointer;
            position: relative;
        }
        
        .uptime-day:hover {
            transform: scaleY(1.2);
        }
        
        .uptime-day .tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #0a0a0a;
            color: white;
            padding: 6px 10px;
            font-size: 11px;
            white-space: nowrap;
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            z-index: 10;
            margin-bottom: 5px;
        }
        
        .uptime-day:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }
        
        .incident-card {
            background: #1a1a1a;
            border-left: 4px solid;
        }
        
        .timeline-item {
            position: relative;
            padding-left: 24px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #333;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 4px;
            top: 22px;
            width: 2px;
            height: calc(100% - 14px);
            background: #262626;
        }
        
        .timeline-item:last-child::after {
            display: none;
        }
        
        .timeline-item.status-resolved::before { background: #22c55e; }
        .timeline-item.status-monitoring::before { background: #3b82f6; }
        .timeline-item.status-identified::before { background: #f59e0b; }
        .timeline-item.status-investigating::before { background: #ef4444; }
        .timeline-item.status-scheduled::before { background: #8b5cf6; }
        .timeline-item.status-in_progress::before { background: #f59e0b; }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-content.open {
            max-height: 1000px;
        }
        
        .accordion-arrow {
            transition: transform 0.3s ease;
        }
        
        .accordion-arrow.open {
            transform: rotate(180deg);
        }
        
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            max-width: 80vw;
            height: 100vh;
            background: #171717;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 999;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: white;
            margin: 6px 0;
            transition: all 0.3s ease;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        
        .skeleton {
            background: linear-gradient(90deg, #262626 25%, #333 50%, #262626 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
        }
        
        .refresh-btn {
            transition: transform 0.3s ease;
        }
        
        .refresh-btn:hover {
            transform: rotate(180deg);
        }
        
        .refresh-btn.loading {
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }