html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

a {
    text-decoration: none; /* Elimina el subrayado de todos los enlaces */
    color: inherit; /* Hereda el color del texto del elemento padre */
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* overflow: hidden; */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.glass {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center top;
      filter: blur(2px);
      transform: scale(1.05);
}

.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1));

}


.playlet_box {
  flex: 1; 
  height: calc(100vh - 130px); 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 60px;
  margin-bottom: 70px;
  overflow-y: auto;
  z-index: 3; 
  padding: 20px 0;
}

.playlet_info {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-height: 100%;
  /* flex-shrink: 0; */
}


.app_info {
  width: calc(100% - 30px);
 background-image: url('/assets/img/x/icon-bg.png'); 
  /*      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px); */
  background-size: cover; 
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  padding: 10px 15px;
  z-index: 4;
  justify-content: space-between;
  position: fixed;
}

.app_img {
  width: 144px;
  height: 40px;
}

.app_name {
  height: 24px;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  text-align: left;
  font-style: normal;
  margin-left: 6px;
}

.playlet_img {
  width: 260px;
  height: 345px;
  background: #D8D8D8;
  border-radius: 12px;
  /* margin-top: 83px; */
}

.img_play{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  z-index: 3; 
}

.playlet_title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
/*  line-height: 18px; */
  text-align: center;
  font-style: normal;
  margin-top: 19px;
  padding: 0 15px;
  font-family: Arial, Arial;

  overflow: hidden;
  display: -webkit-box;
 -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}





.playlet_introduce {
    max-width: 600px;
    width: auto;
    font-size: 1rem; /* Cambiado a rem para ser más responsivo */
    line-height: 1.6;
    color: #B6B6B6;
    font-family: Arial, Arial;
    text-align: center;
    font-style: normal;
    padding: 0 1rem; /* Cambiado a rem para ser más responsivo */
    margin-top: 20px;
    flex-shrink: 0;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* Media queries para dispositivos móviles y tabletas */
@media (max-width: 768px) {
    .playlet_introduce {
        font-size: 0.875rem; /* Tamaño de fuente más pequeño en móviles */
       -webkit-line-clamp: 6;
    }
}

@media (max-width: 480px) {
    .playlet_introduce {
        font-size: 0.75rem; /* Tamaño de fuente aún más pequeño en pantallas muy pequeñas */
        -webkit-line-clamp: 4;
    }
}

.open_button-lp{
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
}

.img-hand{
  position: absolute;
  bottom: 0px;
  right: 5px;;
  animation: bounce 1s linear infinite;
  transform-origin: right bottom;
}

@keyframes bounce {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-25deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.open_button {
  display: flex;
  justify-content: center;
  max-width: 90%;
  width: 342px;
  height: 48px;
  background: linear-gradient(270deg, #a87fff 0%, #651fff 100%);
  border-radius: 24px; 
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  color: white;
  line-height: 18px;
  position: relative;
  font-family: Arial, Arial;
  text-decoration: none; /* Agregado para eliminar el subrayado */
}

.open_button a {
  text-decoration: none; /* Elimina el subrayado solo para los enlaces dentro de open_button */
  color: white; /* Asegúrate de que el color del texto sea blanco */
}

.top_open {
  width: auto;
  min-width: 60px;
  height: 30px;
  background: linear-gradient(270deg, #a87fff  0%, #651fff 100%);
  border-radius: 24px;
  font-size: 15px;
  color: white;
  line-height: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  white-space: nowrap;
  font-family: Arial, Arial;
}

 

.shadow {
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 60px 17px #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}