* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background: linear-gradient(to bottom right, #020617, #0f172a, #000000);
      color: white;
      min-height: 100vh;
      overflow: hidden;
      position: relative;
    }

    .glow-1 {
      position: absolute;
      left: -96px;
      top: -128px;
      width: 384px;
      height: 384px;
      background: rgba(249, 115, 22, 0.2);
      border-radius: 50%;
      filter: blur(96px);
      pointer-events: none;
    }

    .glow-2 {
      position: absolute;
      right: -96px;
      top: 80px;
      width: 320px;
      height: 320px;
      background: rgba(251, 191, 36, 0.2);
      border-radius: 50%;
      filter: blur(96px);
      pointer-events: none;
    }

    .bottom-gradient {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 160px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
      pointer-events: none;
    }

    .container {
      position: relative;
      max-width: 768px;
      margin: 0 auto;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 64px 24px;
    }

    .card {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 40px;
      text-align: center;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.1);
      padding: 8px 16px;
      border-radius: 9999px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #fed7aa;
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      background: #34d399;
      border-radius: 50%;
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.5;
      }
    }

    .logo-section {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: #fed7aa;
    }

    .logo-section img {
      height: 64px;
      width: auto;
    }

    .tagline {
      margin-top: 12px;
      font-size: 16px;
      color: #e2e8f0;
    }

    h1 {
      margin-top: 32px;
      font-size: 48px;
      font-weight: bold;
      line-height: 1.2;
      color: #ffffff;
    }

    @media (max-width: 640px) {
      h1 {
        font-size: 36px;
      }
    }

    .description {
      margin-top: 16px;
      font-size: 18px;
      color: #f1f5f9;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 32px;
      padding: 12px 20px;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      color: white;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .cta-button svg {
      margin-right: 8px;
      width: 16px;
      height: 16px;
    }

    .version-label {
      margin-top: 40px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.35em;
      color: #fdba74;
    }

    .social-links {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      color: #e2e8f0;
      transition: all 0.2s;
      text-decoration: none;
    }

    .social-link:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.4);
      color: white;
    }

    .social-link svg {
      width: 20px;
      height: 20px;
    }