
    * {
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      margin: 0;
      height: 100vh;
      background: linear-gradient(135deg, #df0808, #203a43, #2c5364);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 30px;
      width: 350px;
      text-align: center;
      backdrop-filter: blur(10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .emoji {
      font-size: 80px;
      animation: bounce 1.5s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    h1 {
      margin: 15px 0 5px;
      font-size: 26px;
    }

    .dialogue {
      font-size: 20px;
      font-weight: bold;
      color: #ffdd57;
      margin: 10px 0;
    }

    p {
      font-size: 15px;
      opacity: 0.9;
    }

    button {
      margin-top: 20px;
      padding: 12px 20px;
      border: none;
      border-radius: 30px;
      font-size: 14px;
      cursor: pointer;
      background:#e59335;
      color: #f11919;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    button:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(30, 92, 43, 0.4);
    }

    footer {
      margin-top: 15px;
      font-size: 12px;
      opacity: 0.7;
    }
  