:root{
    --i:0;
}
#barraIzquierda {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    gap: 1%;
    width: 220px;
    height: 85%;
    left: 1.72%;
    top: 120px;
    overflow: hidden;
    border-radius: 15px;
    background: #ffffff00;
    border: 0px solid #ffffff14;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    transition: .35s;
    text-align: center;
    z-index: 99;
}
#cargaModal {
    position: fixed;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    margin: 0 auto;
    padding: 3% 35% 12% 1%;
    background-color: rgb(21 24 26);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    border-radius: 15px;
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 1;
}
#barraDerecha {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    gap: 1%;
    width: 220px;
    height: 85%;
    right: 1.7%;
    top: 120px;
    overflow: hidden;
    background: #ffffff00;
    border: 0px solid #ffffff14;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    transition: .35s;
    text-align: center;
    z-index: 99;
}

.block_dere,
.block_izq {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, .03);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 6%;
    font-size: x-small;
    transition: all 0.2s ease-in-out;
    /* Estado inicial */
    transform: scale(0.8);
    opacity: 0; 

    /* Configuración de la animación */
    animation-name: slideIn;
    animation-duration: 0.4s; /* 5s es mucho tiempo de carga, bajado a 0.8s */
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    
    /* ¡Magia aquí! Se aplica a ambos bloques automáticamente */
    animation-delay: calc(var(--i) * 0.2s); /* Bajado a 0.2s para que sea fluido */
}

/* Animaciones */
@keyframes slideIn {
    from {
        opacity: 1;
        transform: scale(0.8);
        border: solid 9px #191c4b;
        background: #5250c44d;
    }
    to {
        opacity: 1;  
        transform: scale(1);
        background: rgba(255, 255, 255, 0.01);
    }
}

.block_dere:hover,
.block_izq:hover {
    transition: all 0.2s ease-in-out;
    /* filter: invert(9%) sepia(6%) saturate(5000%) hue-rotate(
119deg); */
    box-shadow: inset 0 -50px 50px #2221213d;
    scale: 0.98;
    height: 95%;
}

.btnMenuNav {
    position: absolute;
    /* box-shadow: 0px 0 40px 10px #0c0d0d; */
    top: 50%;
    display: flex;
    transform: translateY(-50%);
    transform: translate(0px, -105px);
    z-index: 10;
    cursor: pointer;
    width: 15px;
    height: 200px;
    background: transparent;
    color: #ffffff49;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding: 10px 20px;
    /* border-radius: 50%; */
    font-size: 10px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px; */
    right: 10px;
    text-shadow: 1px 1px 8px #000, -2px -2px 4px #000;
    align-items: center;
    justify-content: center;
}

.btnMenuNav:hover {
    color: white;
}
#conteSliderBtnNav{
    position: relative;
    display: flex;
    align-items: center;
    width: calc(100% - 550px);
    overflow: hidden;
    height: 100%;
    justify-content: space-between;
}
#sponsor {
    position: relative;
    height: 73px;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 18px;
    overflow: hidden;
    color: #9c9c9c0c;
    width: 85%;
    display: flex;
    justify-content: flex-start;
    background: #f0f8ff00;
    margin: 0 auto;
    left: 0%;
    right: 0%;
    align-items: center;
    gap: 1%;
    /* border-left: solid 1px #ffffff12; */
    /* Máscara de degradado: transparente -> sólido -> transparente */
  -webkit-mask-image: linear-gradient(
    to right, 
    transparent 0%, 
    black 10%, 
    black 90%, 
    transparent 100%
  );
  mask-image: linear-gradient(
    to right, 
    transparent 0%, 
    black 10%, 
    black 90%, 
    transparent 100%
  );
}

.sponsorBase {
    position: relative;
    margin: 2px;
    display: flex;
    justify-content: flex-start;
    width: 27px;
    gap: 14px;
    color: #616161;
    font-size: x-large;
    align-items: center;
    border-bottom: 0px solid #ffffff26;
}

.icoBase {
    position: relative;
    margin: 2px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    gap: 14px;
    color: #616161;
    font-size: x-large;
    align-items: center;
    border-bottom: 1px solid #ffffff26;
}

.icoBase img {
    position: relative;
    width: 15px;
    height: 25px;
    margin-bottom: 2px;
}
.pixel_menu {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    margin: 0px;
    border: solid 0px #06efd400;
    background: #ffffff;
    box-shadow: none;
}
.icoSuperior {
    scale: 0.3;
    opacity: 1;
    cursor: pointer;
    position: relative;
    top: -19px;
}
.icoSuperior:hover {
    opacity: 1;
}

.box-icono {
    padding: 6px;
    width: 120px;
    scale: 1;
    opacity: 0.6;
    cursor: pointer;
    border-radius: 9px;
    transition: all 0.2s ease;
}

.box-icono:hover{
   opacity: 1;
   text-shadow: 0 0 12px #ffffff8f;
}

.grupoIcos {
    position: relative;
    display: flex;
    gap: 15px;
}

.downloads {
    font-size: x-large;
    font-weight: 500;
    margin-top: 15px;
    padding-top: 5px;
}

.grafico {
    position: absolute;
    right: 13px;
    top: 24px;
}

.tituloIco {
    font-size: 13px;
    font-weight: 600;
    color: aliceblue;
}

#estrellas {
    display: flex;
    width: 100%;
    margin-top: 15px;
    padding-top: 5px;
}

.categoria {
    box-sizing: content-box;
    display: flex;
    position: relative;
    /* padding: 1px 9px; */
    /* margin-top: 1%; */
    width: 100%;
    /* gap: 1%; */
    /* margin-bottom: 1%; */
    border-radius: 10px;
    border: solid 1px #61616169;
    background-color: #111111;
    color: #616161;
    font-size: 14px;
    justify-content: center;
    align-items: center;
}

.catego {
    box-sizing: content-box;
    display: flex;
    position: relative;
    padding: 1px 9px;
    margin-top: 2%;
    width: auto;
    /* gap: 1%; */
    /* margin-bottom: 1%; */
    border-radius: 10px;
    border: solid 1px #61616169;
    /* background-color: #111111; */
    color: #616161;
    font-size: 14px;
    justify-content: center;
    align-items: center;
}
.textoChico{
    position:relative;
    padding: 4px 5px;
}

.appStats {
    display: flex;
    gap: 2px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    font-size: x-small;
}

.stars {
    color: #FFD700;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

#valorStar {
    display: flex;
    align-items: center;
    gap: 7px;
}

#maxStars {
    position: relative;
    font-size: small;
}

#rating {
    display: flex;
    flex-direction: row-reverse;
    font-size: x-large;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    font-weight: 500;
}

.tec img {
    top: 15px;
    position: relative;
    width: 25px !important;
    height: 25px !important;
}

.gris {
    filter: invert(45%) sepia(0%) saturate(7485%) hue-rotate(62deg);
}

.filgris {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg);
    opacity: 0.5;
}

.gold {
    filter: invert(80%) sepia(90%) saturate(3000%) hue-rotate(0deg);
}

.red {
    filter: invert(15%) sepia(95%) saturate(6000%) hue-rotate(350deg);
}

.blanco {
    filter: invert(105%) sepia(0%) saturate(100%) hue-rotate(56deg);
}

.rotate img {
    rotate: 325deg;
    width: 15px !important;
    height: 25px !important;
    margin-bottom: 4px !important;
}

#fechasVersion {
    width: 100%;
    height: 100%;
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 12px;
}

#barraIzquierda div,
#barraDerecha div {
    color: #305050;
}

.block_izq ul {
    position: relative;
    padding: 10px;
    width: 100%;
    height: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3%;
    font-size: 11px;
}

.block_izq li {
    color: #616161;
    list-style-type: none;   
}
.linea {
font-size: 14px;
border-bottom: none;
}


@media(max-width:1145px) {
     #barraDerecha {
         transition: all 1s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        gap: 2%;
        width: 220px;
        height: 100%;
        margin-top: -61px;
        top: 120px;
         right: 0px;
        overflow: hidden;
        background: #ffffff00;
        border: 0px solid #ffffff14;
        border-radius: 10px;
        backdrop-filter: blur(8px);
        transition: .35s;
        text-align: center;
        z-index: 99;
        scale: 0.81;
    }
 #barraIzquierda {
     transition: all 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    gap: 2%;
    width: 220px;
    height: 100%;
    left: 0%;
    top: 120px;     
 margin-top: -61px;
    overflow: hidden;
    border-radius: 15px;
    background: #ffffff00;
    border: 0px solid #ffffff14;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    transition: .35s;
    text-align: center;
    z-index: 99;
     scale: 0.81;
}
}