/* ============================================================
   S&M Telecommunications LLC — Video Intro Styles
   ============================================================ */

#video-intro {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #050b1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#intro-video-desktop,
#intro-video-mobile {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#skip-intro {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 10000;
}
#skip-intro:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
  color: #d4af37;
}

#video-intro.fade-out {
  animation: introFadeOut 1.2s ease forwards;
}
@keyframes introFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

#video-intro.hidden {
  display: none;
}

#intro-video-mobile  { display: none; }
#intro-video-desktop { display: block; }

@media (max-width: 768px) {
  #intro-video-desktop { display: none; }
  #intro-video-mobile  { display: block; }
  #skip-intro {
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    padding: 0.5rem 1.1rem;
  }
}