@keyframes rebote {
    0% { transform: translateX(0), translateY(0); }
    25% { transform: translateY(-5px); } /* Mueve 5px a la izquierda */ 
    50% { transform: translateY(0);}/* Mueve 5px a la derecha */
    75% { transform: translateY(-5px); } /* Izquierda de nuevo */
    100% { transform: translateY(0); }
}

#button111 {
    animation: rebote 2.5s infinite;
}

.video-fondo {
    position: fixed; /* Deja el video fijado */
    z-index: -1; /* Pone el video en el fondo del todo */
    right: 0;
    bottom: 0;
    min-width: 100%; /* Ponen el video a escala completa */
    min-height: 100%;
}

.container-main {
    margin: 0 auto; /* Pone los margenes autos y centra el cuadro */
    width: 70%;
    height: 100%;
    z-index: 0; /* Pone el texto principal por encima del video */
    background-color: rgba(255, 140, 0, 0.75);
    border: 5px solid rgb(205, 99, 0);
    border-style: double;
    flex-wrap: wrap;
}


.inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.border3 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
}


.banner {
    background-color: #ffffff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(255, 125, 0), 
            0 0 25px rgb(255, 125, 0);
    -webkit-text-fill-color: rgb(255, 167, 58);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    font-size: 50px;
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px;
    z-index: 2;   
}

.banner h1:hover {
    cursor: pointer;
}

.banner img {
    width:50%;
}

.bannerwelcome {
    width: auto;
    height: 100px;
}

.initials-banner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

.separator-news {
    margin-top: 2px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: "Cheri", sans-serif;
    -webkit-text-fill-color: rgb(114, 64, 4);
    height: 25px;
    width: 100%;
    background: linear-gradient(rgb(202, 151, 56), rgb(255, 255, 255));
    border-radius: 3px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.25);
}

.separator p {
    margin-top: 15px;
}

.clock {
    margin-top: 2px;
    background: linear-gradient(rgb(202, 151, 56), rgb(255, 255, 255));
    height: 25px;
    width: 150px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Cheri", sans-serif;
    -webkit-text-fill-color: rgb(114, 64, 4);
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.25);
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
    margin: 10px;
    flex-wrap: wrap; /* Permite que los containers se wrap */
}

.about {
    align-items: center;
    position: relative;
}

.content-favs {
    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 1; /* Deja que el container se posicione */
}


.container-idk {
    width: 100%;
    max-width: 575px;
    height: 245px;
    border: 5px solid rgb(255, 135, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(white, rgb(255, 135, 0));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */  
}

.container-idk h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(255, 125, 0), 
            0 0 25px rgb(255, 125, 0);
    -webkit-text-fill-color: rgb(255, 167, 58);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px;  

}

.container-idk h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.text-updates {
    font-family: "Cheri", sans-serif;
    font-size: small;
    width: 210px;
    height: 200px;
    overflow-y: auto;
    margin: 10px;
    background: rgba(255, 255, 255, 0.75);
    padding: 5px;
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(205, 99, 0);
}


.container-navigation {
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 225px;
    height: 960px;
    border: 5px solid rgb(255, 135, 0);
    background: linear-gradient(white, rgb(255, 135, 0));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */
}

.container-navigation h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(255, 125, 0), 
            0 0 25px rgb(255, 125, 0);
    -webkit-text-fill-color: rgb(255, 167, 58);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px; 
}

.container-navigation h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.clasificator {
    background: linear-gradient(rgb(255, 125, 0), rgb(255, 203, 160));
    display: flex;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.links {
    font-family: "Cheri", sans-serif;
    font-size: medium;
    background: rgba(255, 255, 255, 0.35);
    padding: 5px;
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(205, 99, 0);
    margin: 20px;
    margin-top: 5px;
}

.container-updates {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 6px;
    width: 100%;
    max-width: 1000px;
    height: 300px;
    border: 5px solid rgb(0, 115, 255);
    background: linear-gradient(white, rgb(0, 115, 255));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */ 
}

.container-updates h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(255, 125, 0), 
            0 0 25px rgb(255, 125, 0);
    -webkit-text-fill-color: rgb(255, 167, 58);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px; 
}

.container-updates h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.content-updates {
    font-family: "Cheri", sans-serif;
    font-size: small;
    width: 95%;
    height: 90%;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 0px;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(0, 115, 255);
}

.container-music {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    border: 5px solid rgb(255, 135, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(white, rgb(255, 135, 0));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */ 
}

.container-music h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(255, 125, 0), 
            0 0 25px rgb(255, 125, 0);
    -webkit-text-fill-color: rgb(255, 167, 58);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px;    
}

.container-music h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.content-music { /* Configuración cuadrao de info */
    font-family: "Cheri", sans-serif;
    font-size: small;
    margin: 10px;
    width: 545px;
    overflow-x:visible;
    background: rgba(255, 255, 255, 0.75);
    padding: 5px;
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(205, 99, 0);
}

.container-TV {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    border: 5px solid rgb(255, 135, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(white, rgb(255, 135, 0));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */ 
}

.container-TV h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(255, 125, 0), 
            0 0 25px rgb(255, 125, 0);
    -webkit-text-fill-color: rgb(255, 167, 58);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px;       
}

.container-TV h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.content-TV {
    font-family: "Cheri", sans-serif;
    font-size: small;
    margin: 10px;
    width: 545px;
    overflow-x:visible;
    background: rgba(255, 255, 255, 0.75);
    padding: 5px;
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(205, 99, 0);    
}


.container-games {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    border: 5px solid rgb(255, 135, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(white, rgb(255, 135, 0));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */ 
}

.container-games h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(255, 125, 0), 
            0 0 25px rgb(255, 125, 0);
    -webkit-text-fill-color: rgb(255, 167, 58);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px;       
}

.container-games h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.content-vg {
    font-family: "Cheri", sans-serif;
    font-size: small;
    margin: 10px;
    width: 545px;
    overflow-x:visible;
    background: rgba(255, 255, 255, 0.75);
    padding: 5px;
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(205, 99, 0);    
}


/* Vinyl Showcase - www.kazimariusz.com, music */

  #vinyl-gallery * {
    all: unset;
  }
  
  #vinyl-gallery {
    all: initial;
    width: 100%;
    margin: 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-left: -6px;
  }
  
  #vinyl-gallery .vinyl {
    perspective: 500px !important;
    width: 30px;
    transition: width 0.5s;
    margin-bottom: 25px;
  }
  
  #vinyl-gallery .vinyl:hover { /* Configuración de cuanto sobresale la portada */
    width: 98px; 
  }
  
  #vinyl-gallery img { /* Configuración de la portada */
    transition: transform 0.5s, width 0.5s, height 0.5s, margin-top 0.5s;
    width: 100px;
    height: 100px;
    transform: rotateX(0deg) rotateY(25deg);
    transform-style: preserve-3d;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.1);
  }
  
  #vinyl-gallery .vinyl:hover img { /* Giro de la imagen */
    transform: rotateX(0deg) rotateY(10deg);
    width: 108px;
    height: 108px;
    margin-top: -2px;
  }
  
  #vinyl-gallery .title {
    display: block;
    visibility: hidden;
    position: absolute;
    bottom: 0px;
    text-align: center;
    margin-top: 100px;
    width: 100%;
    padding-left: 6px;
    font-family: "Cheri", sans-serif;
  }

  #vinyl-gallery .title1 {
    display: block;
    visibility: visible;
    position: absolute;
    bottom: 0px;
    text-align: center;
    margin-top: 100px;
    width: 100%;
    padding-left: 6px;
    font-family: "Cheri", sans-serif;
  }
  
  #vinyl-gallery .vinyl:nth-child(n):hover + .title {
    visibility: visible;
  }


/* Vinyl Showcase - www.kazimariusz.com, tv */

  #series-gallery * {
    all: unset;
  }
  
  #series-gallery {
    all: initial;
    width: 100%;
    margin: 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-left: -6px;
  }
  
  #series-gallery .serie {
    perspective: 500px !important;
    width: 30px;
    transition: width 0.5s;
    margin-bottom: 25px;
  }
  
  #series-gallery .serie:hover { /* Configuración de cuanto sobresale la portada */
    width: 80px; 
  }
  
  #series-gallery img { /* Configuración de la portada */
    transition: transform 0.5s, width 0.5s, height 0.5s, margin-top 0.5s;
    width: 75px;
    height: 100px;
    transform: rotateX(0deg) rotateY(25deg);
    transform-style: preserve-3d;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.1);
  }
  
  #series-gallery .serie:hover img { /* Giro de la imagen y edición del tamaño al sobrepasar */
    transform: rotateX(0deg) rotateY(10deg);
    width: 88px;
    height: 108px;
    margin-top: -2px;
  }
  
  #series-gallery .title {
    display: block;
    visibility: hidden;
    position: absolute;
    bottom: 0px;
    text-align: center;
    margin-top: 100px;
    width: 100%;
    padding-left: 6px;
    font-family: "Cheri", sans-serif;
  }

  #series-gallery .title1 {
    display: block;
    visibility: visible;
    position: absolute;
    bottom: 0px;
    text-align: center;
    margin-top: 100px;
    width: 100%;
    padding-left: 6px;
    font-family: "Cheri", sans-serif;
  }
  
  #series-gallery .serie:nth-child(n):hover + .title {
    visibility: visible;
  }


/* Vinyl Showcase - www.kazimariusz.com, games */

  #games-gallery * {
    all: unset;
  }
  
  #games-gallery {
    all: initial;
    width: 100%;
    margin: 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-left: -6px;
  }
  
  #games-gallery .game {
    perspective: 500px !important;
    width: 30px;
    transition: width 0.5s;
    margin-bottom: 25px;
  }
  
  #games-gallery .game:hover { /* Configuración de cuanto sobresale la portada */
    width: 80px; 
  }
  
  #games-gallery img { /* Configuración de la portada */
    transition: transform 0.5s, width 0.5s, height 0.5s, margin-top 0.5s;
    width: 70px;
    height: 100px;
    transform: rotateX(0deg) rotateY(25deg);
    transform-style: preserve-3d;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.1);
  }
  
  #games-gallery .game:hover img { /* Giro de la imagen y edición del tamaño al sobrepasar */
    transform: rotateX(0deg) rotateY(10deg);
    width: 78px;
    height: 108px;
    margin-top: -2px;
  }
  
  #games-gallery .title {
    display: block;
    visibility: hidden;
    position: absolute;
    bottom: 0px;
    text-align: center;
    margin-top: 100px;
    width: 100%;
    padding-left: 6px;
    font-family: "Cheri", sans-serif;
  }

  #games-gallery .title1 {
    display: block;
    visibility: visible;
    position: absolute;
    bottom: 0px;
    text-align: center;
    margin-top: 100px;
    width: 100%;
    padding-left: 6px;
    font-family: "Cheri", sans-serif;
  }
  
  #games-gallery .game:nth-child(n):hover + .title {
    visibility: visible;
  }


.stamps {
    height: 60px;
    width: 100%;
    z-index: 10;
    transition: transform 1s ease;
}

.stamps img:hover {
    transform: scale(1.1);
}


.links ul {
            list-style: none; /* Quita los puntos negros de la lista */
            padding-left: 0;  /* Quita el espacio extra a la izquierda */
        }

.links li {
            position: relative; /* Necesario para posicionar elementos */
            padding-left: 30px; /* Espacio para que quepa la imagen a la izquierda */
            line-height: 1.5;   /* Altura de línea para mejor lectura */
        }

.links li::before {
            content: '';            /* Obligatorio para que aparezca el elemento */
            position: absolute;     /* Posición absoluta respecto al <li> */
            left: 10px;
            top: 3px;
            right: 3px;
            
            /* --- Aquí configuras tu imagen --- */
            width: 15px;            /* Ancho de tu icono */
            height: 15px;           /* Alto de tu icono */
            background-image: url('https://i.ibb.co/R9Ksf3W/IMG-5088.gif'); /* LA RUTA DE TU IMAGEN */
            background-size: contain; /* Ajusta la imagen al tamaño del cuadro */
            background-repeat: no-repeat; /* Evita que la imagen se repita */
        }