body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: block;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  background-image: url('../bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.content {
  text-align: center;
  margin: 20px auto;
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 600px;
  box-sizing: border-box;
}

.content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.title {
  color: #00FFFF;
  font-size: 24px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  border-radius: 10px;
}

.subtitle {
  color: #00FFFF;
  font-size: 28px;
  margin: 15px 0;
}

.description {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0;
  font-size: 18px;
  line-height: 1.6;
}

#input-box {
  margin-top: 20px;
  padding: 15px;
  width: 100%;
  max-width: 300px;
  font-size: 16px;
  border: 2px solid #00FFFF;
  border-radius: 25px;
  transition: border-color 0.3s;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

#input-box::placeholder {
  color: #666;
}

#disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 10px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

#submit-button {
  margin-top: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

#submit-button img {
  width: 100%;
  max-width: 300px;
  transition: transform 0.2s;
}

#submit-button:hover img {
  transform: scale(1.05);
}

#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 0, 0.8);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  z-index: 1000;
  box-sizing: border-box;
}

#gif-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
}

#gif-container img {
  width: 100%;
  height: auto;
}

#modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 3px solid #0150c7;
  border-radius: 20px;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  z-index: 1100;
  text-align: center;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  display: none;
}

#modal-title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
  color: #0150c7;
}

#modal-content {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}

#modal-content strong {
  color: #ff0000;
}

#close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  background: red;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  cursor: pointer;
  font-weight: bold;
}

#button2 {
  margin-top: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

#button2 img {
  width: 100%;
  max-width: 200px;
  transition: transform 0.2s;
}

#button2:hover img {
  transform: scale(1.05);
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  display: none;
}/* md5:6333d43f */
