/* OBS stream divy – prispôsobte pozície a rotate */
.obs-stream {
    position: absolute;
    /*border: 2px solid #fff;*/
    /*background: #000;*/
    overflow: hidden;
    z-index: 10;
}

/* Nastavenia pre tieto OBS okná (už definované) */
#obs-stream0 {
    top: 35%;
    left: 48%;
    width: 15%;
    height: 18%;
    transform: rotate(6deg) matrix3d(1, 0.02, 1, 0.000, 0, 1, 1, 0.0002, 1, 1, 1, 0, 8, 0, 0, 1);
}

#obs-stream5 {
    top: 40%;
    left: 67%;
    width: 11%;
    height: 13%;
    transform: rotate(4deg) matrix3d(1, 0.05, 1, 0.000, -0.08, 1, 1, 0.00052, 1, 1, 1, 0, 10, 0, 0, 1);

}

#obs-stream1 {
    scale: 2;
    top: 37%;
    left: 13%;
    width: 5%;
    height: 7%;
    transform: rotate(-1deg) matrix3d(1, 0.0, 1, -0.00, 0.111, 1, 1, 0.000, 1, 1, 1, 0, -10, 10, 0, 1);
}

#obs-stream2 {
    scale: 2;
    top: 39%;
    left: 27%;
    width: 6%;
    height: 7%;
    transform: rotate(-1deg) matrix3d(1, 0.0, 1, -0.000, 0.07, 1, 1, 0.00052, 1, 1, 1, 0, -1, 0, 0, 1);
}

#obs-stream3 {
    scale: 1.5;
    top: 38%;
    left: 37%;
    width: 7%;
    height: 7%;
    transform: rotate(-1deg) matrix3d(1, 0.0, 1, -0.000, 0.08, 1, 1, 0.00052, 1, 1, 1, 0, -5, 5, 0, 0.91);
}

/* Vycentrovanie ikon a základná responzívna veľkosť */
.obs-stream .obs-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #00FF0D;
    text-decoration: none;
    z-index: 20;
    font-size: clamp(0.8rem, 1.8vw, 1.2rem);
    line-height: 1.2;
}

.obs-stream .obs-icon i {
    pointer-events: none;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* Pre video – aby neblokovalo kliky */
.obs-stream video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Front Camera – väčšinou nad prezentáciami */
#front-camera {
    position: absolute;
    top: 28%;
    left: 63%;
    transform: translate(-50%, -50%) rotate(-2deg);
    font-size: clamp(0.8rem, 1.8vw, 1.2rem);
    color: #f30000;
    text-align: center;
}

/* ********** 
Špeciálne prepísanie pre obs-stream1, obs-stream2, obs-stream3, 
aby boli tieto tri okná (Left, Middle, Right) vždy menšie (aj nad 768px). 
********** */
#obs-stream1 .obs-icon,
#obs-stream2 .obs-icon,
#obs-stream3 .obs-icon {
    /* Tieto dve menšie okná budú mať predvolene menší clamp */
    font-size: clamp(0.4rem, 1.2vw, 0.7rem) !important;
    line-height: 1.2;
}

#obs-stream1 .obs-icon i,
#obs-stream2 .obs-icon i,
#obs-stream3 .obs-icon i {
    font-size: clamp(0.1rem, 1.5vw, 1.3rem) !important;
}