* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #121212;
      font-family: 'Outfit', sans-serif;
      color: #ffffff;
      min-height: 100vh;
      /*padding: 1.5rem;*/
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 25% 25%, rgba(0, 198, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 114, 255, 0.03) 0%, transparent 50%);
      pointer-events: none;
      z-index: -1;
    }

    .header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .header h1 {
      font-size: 2.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #ff0000, #ff2f00);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.25rem;
    }

    .header p {
      color: #888888;
      font-size: 1rem;
      font-weight: 400;
    }

    .stats-overview {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.02);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 1rem;
      text-align: center;
      transition: border-color 0.2s ease;
    }

    .stat-card:hover {
      border-color: rgba(255, 0, 0, 0.3);
    }

    .stat-value {
      font-size: 1.75rem;
      font-weight: 700;
      color: #f11a1ad5;
      margin-bottom: 0.25rem;
    }

    .stat-label {
      color: #ffffff;
      font-size: 0.8rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .last-updated {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
      padding: 0.5rem 0.75rem;
      border-radius: 6px;
      font-size: 0.7rem;
      color: #888888;
      border: 1px solid rgba(255, 255, 255, 0.05);
      font-weight: 400;
    }
    .status-indicator {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-online {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-offline {
    background: rgba(102, 102, 102, 0.1);
    color: #ce2121;
    border: 1px solid rgba(102, 102, 102, 0.2);
}