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

body {
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
  min-height: 100vh;
}

.container {
  max-width: 480px;
  width: 100%;
  background: #111;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
  animation: glowFade 2s infinite alternate;
}

@keyframes glowFade {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
  }
}

.image-banner {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(255, 0, 150, 0.4);
}

.image-banner img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #f0f0f0;
  text-shadow: 0 0 8px #ff00cc;
}

.subtitle {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 20px;
}

.info {
  text-align: left;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
}

.info strong {
  color: #fff;
}

.info a {
  color: #00bfff;
  text-decoration: none;
}

.password-box {
  background: #1f1f1f;
  border: 1px solid #ff00cc;
  padding: 12px;
  border-radius: 10px;
  font-family: monospace;
  color: #ff00cc;
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
  box-shadow: inset 0 0 10px rgba(255, 0, 255, 0.3);
}

.note {
  font-size: 13px;
  color: #aaa;
  margin: 20px 0;
  text-align: center;
}

.download-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff0066, #cc00ff);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px #ff00cc;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff00cc, 0 0 10px #cc00ff;
    }

.top-right-glow {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff, 0 0 20px #00f7ff;
  animation: glowAnim 2s infinite alternate;
  z-index: 1000;
}

@keyframes glowAnim {
  0% {
    text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff, 0 0 20px #00f7ff;
  }
  100% {
    text-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff, 0 0 30px #00f7ff;
  }
}
