  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
      color: white;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
  }

  .container {
      max-width: 600px;
      width: 100%;
  }

  .logo {
      font-size: 4rem;
      font-weight: 800;
      background: linear-gradient(135deg, #06b6d4, #8b5cf6);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 2rem;
      letter-spacing: -2px;
  }

  .tagline {
      font-size: 1.5rem;
      color: #cbd5e1;
      margin-bottom: 3rem;
      font-weight: 300;
  }

  .status {
      background: rgba(30, 41, 59, 0.5);
      border: 1px solid rgba(71, 85, 105, 0.5);
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 2rem;
      backdrop-filter: blur(10px);
  }

  .status-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #fbbf24;
  }

  .status-text {
      color: #cbd5e1;
      line-height: 1.6;
      margin-bottom: 1.5rem;
  }

  .progress-bar {
      width: 100%;
      height: 8px;
      background: rgba(71, 85, 105, 0.3);
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 1rem;
  }

  .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #06b6d4, #8b5cf6);
      width: 75%;
      border-radius: 4px;
      animation: pulse 2s ease-in-out infinite alternate;
  }

  @keyframes pulse {
      0% {
          opacity: 0.8;
      }

      100% {
          opacity: 1;
      }
  }

  .progress-text {
      font-size: 0.875rem;
      color: #94a3b8;
  }

  .contact {
      font-size: 0.95rem;
      color: #cbd5e1;
  }

  .contact a {
      color: #06b6d4;
      text-decoration: none;
      font-weight: 500;
  }

  .contact a:hover {
      color: #0891b2;
      text-decoration: underline;
  }

  .social {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(71, 85, 105, 0.3);
  }

  .social-text {
      color: #94a3b8;
      font-size: 0.875rem;
      margin-bottom: 1rem;
  }

  .social-link {
      display: inline-block;
      color: #06b6d4;
      text-decoration: none;
      font-weight: 500;
      padding: 8px 16px;
      border: 1px solid rgba(6, 182, 212, 0.3);
      border-radius: 6px;
      transition: all 0.3s ease;
  }

  .social-link:hover {
      background: rgba(6, 182, 212, 0.1);
      border-color: #06b6d4;
  }

  @media (max-width: 768px) {
      .logo {
          font-size: 3rem;
      }

      .tagline {
          font-size: 1.25rem;
      }

      .status {
          padding: 1.5rem;
      }
  }
