
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  text-align: center;
}
.container {
  padding: 40px 20px;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.glow-button {
  padding: 15px 30px;
  font-size: 20px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff005e, #ff9500);
  color: white;
  text-decoration: none;
  transition: box-shadow 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(255, 0, 94, 0.6);
}
.glow-button:hover {
  box-shadow: 0 0 30px rgba(255, 0, 94, 0.8);
}
