    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      background-color: #0a0a0a;
      color: #e0e0e0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 200%;
      background:
        repeating-linear-gradient(0deg,
          transparent,
          transparent 2px,
          rgba(255, 255, 255, 0.01) 2px,
          rgba(255, 255, 255, 0.01) 4px),
        repeating-linear-gradient(90deg,
          transparent,
          transparent 2px,
          rgba(255, 255, 255, 0.01) 2px,
          rgba(255, 255, 255, 0.01) 4px);
      animation: grid 20s linear infinite;
    }

    @keyframes grid {
      0% {
        transform: translate(0, 0);
      }

      100% {
        transform: translate(50px, 50px);
      }
    }

    .container {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 3rem 2rem;
      max-width: 600px;
      width: 90%;
    }

    .card {
      background: rgba(20, 20, 35, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, #ff4757, transparent);
      animation: scan 3s ease-in-out infinite;
    }

    @keyframes scan {

      0%,
      100% {
        left: -100%;
      }

      50% {
        left: 100%;
      }
    }

    h1 {
      font-size: 2.5rem;
      font-weight: 300;
      letter-spacing: 3px;
      margin-bottom: 0.5rem;
      color: #ffffff;
      text-transform: uppercase;
    }

    .highlight {
      color: #ff4757;
      font-weight: 400;
    }

    h2 {
      font-size: 1rem;
      font-weight: 300;
      letter-spacing: 2px;
      color: #888;
      margin-bottom: 2rem;
      text-transform: uppercase;
    }

    .divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #ff4757, transparent);
      margin: 2rem auto;
    }

    p {
      font-size: 0.95rem;
      line-height: 1.8;
      color: #aaa;
      margin-bottom: 1rem;
      font-weight: 300;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2rem;
      padding: 0.7rem 1.5rem;
      border: 1px solid rgba(255, 71, 87, 0.3);
      background: rgba(255, 71, 87, 0.05);
      font-size: 0.85rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #ff4757;
    }

    .pulse {
      width: 8px;
      height: 8px;
      background: #ff4757;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
      }

      50% {
        opacity: 0.6;
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
      }
    }

    .domain {
      margin-top: 2.5rem;
      font-size: 0.9rem;
      color: #666;
      letter-spacing: 1px;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 2rem;
      }

      .card {
        padding: 2rem 1.5rem;
      }
    }
