body {
        min-height: 100vh;
        background: #060608;
        overflow-x: hidden;
      }
      .status-container {
        max-width: 900px;
        margin: 100px auto 50px auto;
        padding: 0 20px;
        position: relative;
        z-index: 5;
      }
      .status-header-card {
        background: rgba(35, 165, 90, 0.05);
        border: 1px solid rgba(35, 165, 90, 0.25);
        box-shadow: 0 0 30px rgba(35, 165, 90, 0.05);
        border-radius: 24px;
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
        backdrop-filter: blur(20px);
      }
      @media (max-width: 600px) {
        .status-header-card {
          flex-direction: column;
          gap: 20px;
          text-align: center;
        }
      }
      .header-info h1 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.8rem;
        font-weight: 900;
        color: #fff;
        margin: 0 0 6px 0;
      }
      .header-info p {
        color: #888;
        font-size: 0.9rem;
        margin: 0;
      }
      .overall-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #23a55a;
        color: white;
        padding: 10px 20px;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        box-shadow: 0 0 15px rgba(35, 165, 90, 0.4);
      }
      .systems-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
      }
      .system-card {
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid rgba(255, 255, 255, 0.03);
        border-radius: 20px;
        padding: 24px;
        backdrop-filter: blur(25px);
        transition: all 0.3s ease;
      }
      .system-card:hover {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.07);
        transform: translateY(-2px);
      }
      .system-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
      }
      .system-name-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .system-icon {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #aaa;
      }
      .system-name {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
      }
      .system-status-indicator {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        font-weight: 700;
      }
      .indicator-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #23a55a;
        box-shadow: 0 0 8px #23a55a;
      }
      .indicator-text {
        color: #23a55a;
      }
      .chart-container {
        width: 100%;
        height: 80px;
        position: relative;
        margin-top: 15px;
      }
      .chart-label-row {
        display: flex;
        justify-content: space-between;
        font-size: 0.72rem;
        color: #555;
        margin-top: 6px;
        font-family: 'Fira Code', monospace;
      }
      .card-stats-row {
        display: flex;
        gap: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.03);
        padding-top: 15px;
        margin-top: 15px;
      }
      .stat-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .stat-item-label {
        font-size: 0.7rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .stat-item-value {
        font-size: 0.9rem;
        font-weight: 700;
        color: #fff;
        font-family: 'Fira Code', monospace;
      }
      .history-section {
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid rgba(255, 255, 255, 0.03);
        border-radius: 24px;
        padding: 30px;
        margin-bottom: 40px;
        backdrop-filter: blur(25px);
      }
      .history-section h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.3rem;
        font-weight: 800;
        color: white;
        margin: 0 0 20px 0;
      }
      .history-timeline {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .history-item {
        display: flex;
        gap: 15px;
        position: relative;
      }
      .history-item:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 24px;
        left: 9px;
        width: 1px;
        height: calc(100% + 4px);
        background: rgba(255, 255, 255, 0.05);
      }
      .history-node {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(35, 165, 90, 0.15);
        border: 2px solid #23a55a;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        margin-top: 2px;
      }
      .history-node-inner {
        width: 6px;
        height: 6px;
        background: #23a55a;
        border-radius: 50%;
      }
      .history-content {
        flex: 1;
      }
      .history-date {
        font-size: 0.75rem;
        color: #666;
        font-weight: 600;
        margin-bottom: 4px;
      }
      .history-title {
        font-size: 0.92rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 2px;
      }
      .history-desc {
        font-size: 0.85rem;
        color: #aaa;
      }
      .back-btn-wrapper {
        text-align: center;
        margin-top: 40px;
      }
      .btn-back-home {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #fff;
        padding: 12px 28px;
        border-radius: 14px;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
      }
      .btn-back-home:hover {
        background: #fff;
        color: #000;
        transform: translateY(-2px);
      }
      .star-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 1;
        pointer-events: none;
      }
