/* General styles */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f5f5f5;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

h1 {
  font-size: 28px;
  color: #333;
}

/* Centered image */
.image-wrapper {
  position: relative;
  display: inline-block;
}

.center-img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* Glowing buttons */
button.glow {
  background-color: #ff4081;
  border: none;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 0 10px #ff4081;
  transition: transform 0.3s ease;
}

/* YES button - bottom-left */
#yesButton {
  position: absolute;
  bottom: 10px;
  left: -20px;
}

/* HINDI button - bottom-right */
#moveButton {
  position: absolute;
  bottom: 10px;
  right: -30px;
}

/* TAKE A PHOTO button - below the image */
#photoButton {
  margin-top: 12px;
  font-size: 12px;
  padding: 8px 12px;
  text-align: center;
  line-height: 1.2;
  background-color: #ff4081;
  color: white;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 8px #ff4081;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
}


/* Caption below image */
.photo-caption {
  margin-top: 12px;
  font-style: italic;
  color: #555;
}

/* YES message text */
.yes-message {
  display: none;
  margin-top: 20px;
  font-size: 18px;
  color: green;
  font-weight: bold;
}

/* Video popup styles */
.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.video-container {
  width: 90%;
  max-width: 400px;
  aspect-ratio: 16/9;
}

.video-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.video-text {
  color: white;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}
