
#injectedTaztaz {
    position: fixed;
    top: 76px;
    left: 0;
    width: 650px;
    max-width: 100vw;
    height: calc(100% - 76px);
    background: var(--color-cintillo-fondo);
    z-index: 1;
    overflow: hidden;
    margin:0;
}

#injectedVideosContainer {
    width: 100%;
    height: 85%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    position: relative;
    background: var(--majestic-blank);

        margin-top:calc(100vh* .068) ;

}

.injectedVideoSnap {
    scroll-snap-align: center;
    position: relative;
    width: 100%;
    height: calc((100vh - 76px) *.85);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--majestic-blank);
    /* margin-bottom: calc(100vh * 0.068); */
}



.injectedVideoSnap .video-wrapper {
    position: relative;
    aspect-ratio: 9/16;
    width: auto;

    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
        margin:0;
}

.injectedVideoSnap video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--majestic-blank);
    cursor: pointer;
    display: block;
    margin:0;
}

.injectedVideoCurtain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 9/16;
    height: 100%;
    max-width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 1;
    transition: opacity 0.6s ease;
    border-radius: 20px;
}

.injectedVideoCurtain img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.injectedVideoCurtain.fade-out {
    opacity: 0;
    pointer-events: none;
}

.injectedOverlaySound {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 2;
}

.injectedOverlaySound p {
    margin: 0;
    font-size: 1rem;
    padding: 0 20px;
}

.injectedVideoOverlay {
    position: absolute;
    bottom: 80px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    z-index: 3;
    padding: 0 10px;
}

.injectedVideoOverlay h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: bold;
}

.injectedVideoOverlay p {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.injectedActionBar {
    position: absolute;
    right: 5px;
    top: 70%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 11;
}

.injectedActionBar button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    padding: 5px;
}

.injectedActionBar button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.injectedActionBar button i {
    font-size: 1.4rem;
    line-height: 1;
    display: block;
    margin-bottom: 2px;
}

.injectedActionBar button span {
    font-size: 0.75rem;
    font-weight: 800;
    color: #1a1a1a !important;
    line-height: 1;
    display: block;
}

.injectedActionBar .btnSeguir {
    width: 65px;
    height: 65px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

.injectedActionBar .btnSeguir .cantidadSeguidores {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-weight: 600;
}

.injectedActionBar .btnReaccion.active i {
    color: #ee3424;
}

.injectedActionBar .btnReaccion.active {
    background: rgba(217, 177, 173, 0.9);
}

.injectedActionBar .btnSeguir .signoseguir {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--majestic-red);
    color: white !important;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(238, 52, 36, 0.4);
}

#injectedVideosContainer::-webkit-scrollbar {
    width: 0px;
    display: none;
}

#injectedVideosContainer {
    scrollbar-width: none;
}

#injectedVideosContainer {
    -ms-overflow-style: none;
}


@media (max-width: 1100px) {
    #injectedTaztaz {
        width: 100%;
        top: 0;
        height: calc(100% - 76px);
        z-index: 100;
        margin-top:76px;
        padding: 0;
    }
    #injectedVideosContainer{
        padding:0;
        margin-top:0;
        height: 100%;
    }


    #injectedTaztaz::before,
    #injectedTaztaz::after {
       display:none;
    }

    #injectedTaztaz::before {
        top: 0;
    }
    .centrar_index{
        display: none;
    }
    .injectedVideoSnap {
  
        width: auto;
        height: 100%;
        background-color: black;
        /* margin-top: 76px; */
    }
    .injectedVideoSnap::first-child {
        margin-top: 76px;
    }
    .injectedVideoSnap:not(:first-child) {
        margin-top: 0;
        }  

    .injectedOverlaySound {
        display:none;
    }

       .injectedVideoSnap .video-wrapper{

        width: auto;
        height: 100%;
        /* max-height: calc(100vh - 76px); */
        border-radius: 0px;
    }
    .injectedActionBar {
        right: 10px;
        top: 65%;
        gap: 0px;
    }

    .injectedActionBar button {
        width: 50px;
        height: 50px;
        background: transparent;
        box-shadow: none;
        color: white;
        filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
    }

    .injectedActionBar button:hover {
        background: transparent;
        box-shadow: none;
    }

    .injectedActionBar button i {
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 2px rgba(0, 0, 0, 0.5);
    }

    .injectedActionBar button span {
        color: white !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 2px rgba(0, 0, 0, 0.5);
    }

    .injectedActionBar .btnSeguir {
        width: 60px;
        height: 60px;
    }

    .injectedActionBar .btnSeguir .cantidadSeguidores {
        background: rgba(0, 0, 0, 0.7);
        color: white;
        box-shadow: none;
    }

    .injectedActionBar .btnSeguir .signoseguir {
        color: white !important;
    }

    .injectedActionBar .btnReaccion.active {
        background: transparent;
    }
    .injectedActionBar .btnFullScreen{
        display: none;
    }

    .injectedVideoOverlay {
        bottom: 100px;
    }
}
@media (max-width: 800px) {
    .busqueda{
        display:none;
    }

    .injectedActionBar {
        right: 30px;
        top: 65%;
        gap: 0px;
    }
    #injectedVideosContainer{

    

}
}

 @media (max-width: 480px) {

        #injectedTaztaz {
            width: 100%;

    }
    #injectedVideosContainer{
        padding:0;
            background: black;
            width: 100%;
    }

    #injectedTaztaz::before,
    #injectedTaztaz::after {
       display:none;
    }

    #injectedTaztaz::before {
        top: 0;
    }
    .injectedVideoSnap {
        width: auto;
        height: 100%;
        background-color: black;
    }
    .injectedVideoSnap:not(:first-child) {
        margin-top: 0px;
    }

    .injectedVideoSnap .video-wrapper{
        width: auto;
        height: 100%;
        /* max-height: calc(100vh - 76px); */
        border-radius: 0px;

    }
    .injectedVideoSnap video{
        background: black;
    }

    .injectedOverlaySound {
        display:none;
    }


    .injectedActionBar {
        right: 10px;
        top: 65%;
    }

}




