/* Reset body and html margins */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

/* Video Background */
.video-background {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  z-index: -1;
  object-fit: cover;
}

/* Maintain 9:16 aspect ratio on mobile */
@media (max-width: 768px) {
  .video-background video {
    width: auto;
    height: 100%;
  }
}

/* Content */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.content .download-btn {
  width: 350px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s;
}

.content .download-btn:hover {
  transform: scale(1.1);
}
