/* General Page Styles */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: black;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Video Section */
.video-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

video {
  display: none;
  max-width: 100%;
  height: auto;
}

.video-poster {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Play Button */
.play-button {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.play-button::before {
  content: '';
  position: absolute;
  left: 30%;
  top: 25%;
  width: 0;
  height: 0;
  border-left: 30px solid white;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

/* WhatsApp Button Fixed at Bottom-Right */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 200px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Responsive Adjustments for Mobile Devices */
@media (max-width: 768px) {
  .video-container {
    width: 100%;
    height: auto;
  }

  video, .video-poster {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .whatsapp-float img {
    width: 100px;
  }
}
