/* G2 Middle East - Pure Video Background */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
}

/* Video Page Styles */
.coming-soon-page {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.coming-soon-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Video Background Styles */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coming-soon-overlay {
  display: none;
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  height: 100vh;
}

/* Video Controls Hidden */
.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Ensure video covers full screen on all devices */
@media screen and (max-width: 768px) {
  .hero-video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }
}