@font-face {
  font-family: 'Pixelmix';
  src: url('../assets/fonts/pixelmix.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Meltmino';
  src: url('../assets/fonts/Meltmino-Black.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.hero-video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.hero-video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
  pointer-events: none;
}

#reloj-co {
  position: fixed;
  top: 20px;
  left: 24px;
  color: white;
  font-size: 1.6rem;
  font-family: 'Pixelmix', monospace;
  font-weight: normal;
  letter-spacing: 0.1em;
  z-index: 10;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.hero-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.btn-enter {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: 'Pixelmix', monospace;
  letter-spacing: 0.1em;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.9);
  transition: opacity 0.3s ease;
}

.btn-enter:hover {
  opacity: 0.7;
  background: transparent;
  box-shadow: none;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  #reloj-co {
    font-size: 1rem;
    top: 12px;
    left: 12px;
  }

  .btn-enter {
    font-size: 0.9rem;
  }

  .hero-content {
    align-items: flex-start;
    justify-content: center;
    padding-top: 35vh;
  }
}
