:root {
      --bg: #2b0066;
      --bg-dark: #1a003d;
      --accent: #a855ff;
      --text-main: #ffffff;
      --text-muted: #d1d5db;
      --btn-bg: #60159d;
      --btn-hover: #9333ea;
      --btn-text: #ffffff;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s ease-out forwards;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    } 


    body {
      margin: 0;
      padding: 24px;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg-dark) 100%);
      color: var(--text-main);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;      
      text-align: center;
    }

    .logo {
      width: 100px;
      height: 100px;
      margin-bottom: 12px;
    }

    .logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    h1 {
      font-size: 2.2rem;
      margin-bottom: 12px;
    }

    p.subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 32px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .illustration img{
      max-width: 600px; 
      width: 100%;
      height: auto;     
    }

    .status-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      justify-content: center;
      margin-top: 0;
      margin-bottom: 40px;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .status-dot {
      width: 9px;
      height: 9px;
      margin-right: 6px;
      border-radius: 50%;
      background: radial-gradient(circle, #facc15 0, #eab308 55%, #713f12 100%);
      box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.25);
    }

    .dots {
      display: inline-flex;
      gap: 4px;
      margin-left: 4px;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(148, 163, 184, 0.7);
      opacity: 0.4;
      transform: translateY(0);
      transition: opacity 160ms ease-out, transform 160ms ease-out;
    }

    .dot.active {
      opacity: 1;
      transform: translateY(-2px);
      background: var(--accent-soft);
    }

    .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 40px;
    }

  
    .btn {
      background: var(--btn-bg);
      color: var(--btn-text);
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      font-size: 0.9rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: background 0.2s ease;
    }

    .btn:hover {
      background: var(--btn-hover);
    }

    footer {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 20px;
    }

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

      .illustration {
        width: 100%;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }
    }