/* Intro Video Styles */
.intro-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s ease-out;
}

.intro-video-container.fade-out {
  opacity: 0;
  pointer-events: none;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skip-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.skip-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .skip-button {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .skip-button {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* Hide main content initially */
body.video-playing {
  overflow: hidden;
}

body.video-playing .loading,
body.video-playing .header,
body.video-playing main {
  opacity: 0;
  transition: opacity 1s ease-in;
}

body.video-finished .loading,
body.video-finished .header,
body.video-finished main {
  opacity: 1;
}