 
    * {
      box-sizing: border-box;
      font-family: "Vazirmatn", system-ui, -apple-system, sans-serif;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background: linear-gradient(135deg, #1a0f12, #0f0a0c);
      color: #f3f4f6;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .card {
      max-width: 720px;
      width: 100%;
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(10px);
      border-radius: 24px;
      padding: 40px 32px;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .logo {
      font-size: 48px;
      margin-bottom: 16px;
    }

    h1 {
      margin: 0 0 16px;
      font-size: 32px;
      font-weight: 800;
    }

    p {
      margin: 0 0 24px;
      font-size: 18px;
      line-height: 1.9;
      color: #e5e7eb;
    }

    .status {
      display: inline-block;
      margin-bottom: 24px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(185, 89, 89, 0.15);
      color: #b95959;
      font-weight: 600;
      font-size: 14px;
      border: 1px solid rgba(185, 89, 89, 0.35);
    }

    .progress-wrap {
      margin: 24px 0 8px;
      background: rgba(255,255,255,0.12);
      border-radius: 999px;
      overflow: hidden;
      height: 10px;
    }

    .progress-bar {
      height: 100%;
      width: 60%;
      background: linear-gradient(90deg, #b95959, #e08b8b);
      border-radius: 999px;
      animation: move 2s ease-in-out infinite alternate;
    }

    @keyframes move {
      from { width: 35%; }
      to { width: 85%; }
    }

    .footer {
      margin-top: 24px;
      font-size: 14px;
      color: #cbd5e1;
    }

    .footer a {
      color: #b95959;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }
