* {
  box-sizing: border-box;
}
html {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  color: #1e001e;
  background-color: #f03200;
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
  overflow-x: hidden;
  height: 100%;
}
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  margin: auto;
}
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 50%;
  color: #f6bffe;
}
.copy {
  font-size: 1.87rem;
  text-align: center;
  color: #f5f0e6;
  font-family: "Mondwest", sans-serif;
  text-decoration: none;
}
.logo {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.raro-logo {
  width: 100%;
}

.gif {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* para no bloquear el hover del logo */
}

.logo:hover .gif {
  opacity: 1;
  visibility: visible;
}

.gif video {
  width: 200px;
}
.enjoy-btn {
  font-size: 1.87rem;
  text-align: center;
  background-color: transparent;
  border: none;
  color: #f6bffe;
  font-family: "Mondwest", sans-serif;
}
.gif.visible {
  opacity: 1;
  visibility: visible;
}

/* estilo extra para el botón enjoy cuando está activo */
.enjoy-btn.active {
  color: #f6bffe;
  border-radius: 6px;
  transform: scaleY(-1);
}

@media (max-width: 1366px) {
  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 70%;
    color: #f6bffe;
  }
}

@media (max-width: 1024px) {
  .copy {
    font-size: 1.6rem;
    text-align: center;
    color: #f5f0e6;
    font-family: "Mondwest", sans-serif;
    text-decoration: none;
  }
  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 70%;
    color: #f6bffe;
  }

  .logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .raro-logo {
    width: 100%;
  }

  .gif {
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* para no bloquear el hover del logo */
  }

  .logo:hover .gif {
    opacity: 1;
    visibility: visible;
  }

  .gif video {
    width: 200px;
  }
  .enjoy-btn {
    font-size: 1.6rem;
    text-align: center;
    background-color: transparent;
    border: none;
    color: #f6bffe;
    font-family: "Mondwest", sans-serif;
  }

  .gif.visible {
    opacity: 1;
    visibility: visible;
  }
}
