body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #260046 0%, #2b0057 40%, #3d0079 100%);
  background-attachment: fixed;
  color: #ffffff;
}

.gold {
  color: #ffd700;
}

.container {
  text-align: center;
  padding: 40px;
  max-width: 600px;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.35);
}

.photo-slot {
  overflow: hidden;
  width: 90%;
  max-width: 300px;
  aspect-ratio: 1;
  background: radial-gradient(circle, #5b1fa8, #3d0079);
  margin: 20px auto;
  border-radius: 12px;
  border: 3px solid #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  background: linear-gradient(135deg, #ffd700, #fff2a6);
  color: #2b0057;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
  cursor: pointer;
}

.video-slot {
  width: 90%;
  max-width: 300px;
  aspect-ratio: 3/5;
  background: radial-gradient(circle, #6b2fd8, #3d0079);
  border-radius: 12px;
  border: 3px solid #ffd700;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.question-block {
  display: none;
}

.question-block.active {
  display: block;
}

#pushBox {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ffd700;
  color: #2b0057;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: bold;
  display: none;
}
