  <style>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }

    body {
      min-height: 100vh;
      background: linear-gradient(135deg, #667eea, #764ba2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      overflow: hidden;
    }

    .background-shape {
      position: absolute;
      width: 600px;
      height: 600px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      top: -150px;
      right: -150px;
    }

    .container {
      position: relative;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 50px 40px;
      max-width: 520px;
      width: 90%;
      text-align: center;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .icon {
      font-size: 64px;
      margin-bottom: 20px;
    }

    h1 {
      font-size: 2.4rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    p {
      font-size: 1rem;
      line-height: 1.6;
      opacity: 0.9;
      margin-bottom: 30px;
    }

    .status {
      display: inline-block;
      padding: 10px 22px;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.18);
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      margin-bottom: 35px;
    }

    .progress {
      width: 100%;
      height: 10px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 30px;
    }

    .progress span {
      display: block;
      height: 100%;
      width: 65%;
      background: linear-gradient(90deg, #ffecd2, #fcb69f);
      border-radius: 10px;
      animation: load 2.5s ease-in-out infinite alternate;
    }

    @keyframes load {
      from { width: 45%; }
      to { width: 75%; }
    }

    .footer-text {
      font-size: 0.85rem;
      opacity: 0.75;
    }

    @media (max-width: 480px) {
      h1 { font-size: 2rem; }
      .icon { font-size: 52px; }
      .container { padding: 40px 25px; }
    }
  </style>
