.content-title{width: 100%;font-family: "Mont-Bold";font-size: 28px;font-weight: normal;}

.content-elements-main-menu{width: 100%;display: flex;flex-wrap: wrap;gap: 20px;}
.content-elements-main-menu-item{padding: 5px 10px;font-size: 16px;border: 1px solid white;border-radius: 50px;font-family: "Mont-Regular";cursor: pointer;transition: border 0.3s ease, background 0.3s ease;color: white;text-decoration: none; position: relative;}
.content-elements-main-menu-item.active{border: none; background: linear-gradient(203deg, #00571D 0%, #87C212 100%); padding: 6px 11px;}

.broadcast-grid{width: 100%;display: grid;grid-template-columns: repeat(1, 1fr);gap: 40px 50px; padding-bottom: 40px;}

.broadcast-item{
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.broadcast-item img{
    width: 100%;
    border-radius: 10px;
}

.content-elements-main-grid-item-title{width: 100%;margin-top: 10px;font-size: 18px;font-family: "Mont-Bold"; color: white;}
.content-elements-main-grid-item-descript{width: 100%;margin-top: 7px;font-size: 16px;font-family: "Mont-light";color: #ADADAD;}
.content-elements-main-grid-item-date{width: 100%;color: #ADADAD;font-size: 14px;font-family: "Mont-Light";margin-top: 7px;}

.active-count-round{
    border-radius: 50%;
    border: 1px solid white;
    background: #121212;
    width: 17px;
    aspect-ratio: 1/1;
    position: absolute;
    top: -7px;
    right: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    
}

.active-count-round.active{
    background: linear-gradient(203deg, #00571D 0%, #87C212 100%);  
    border: none;
}

.player_block{
    width: 100%;
    display: flex;
    padding-bottom: 40px;
    flex-direction: column;
    /* justify-content: start; */
}

.player_container{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.player{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    background: black;
    position: relative;
    overflow: hidden;
}

.player video {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    border-radius: 10px;
}

/* Основной цвет плеера */
:root {
    --plyr-color-main: linear-gradient(203deg, #00571D 0%, #87C212 100%);
}

/* Фон панели */
.plyr--video .plyr__control--overlaid {
    background: linear-gradient(203deg, #00571D 0%, #87C212 100%);
    width: 50px;
    height: 50px;
}

/* Управляем размером треугольника */
.plyr--video .plyr__control--overlaid svg {
    width: 20px;    /* меняйте этот размер */
    height: 20px;   /* меняйте этот размер */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.plyr--full-ui input[type=range] {
    color: #00571D;
}

.plyr__control{
    transition: background .3s ease;
}

.plyr__control:hover {
    background: linear-gradient(203deg, #004216 0%, #6b9910 100%) !important;
}

.broadcast-no-text{
    font-family: "Mont-regular";
    font-size: 18px;
    font-weight: normal;
}

.player-description{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.player-description p{
    font-family: "Mont-regular";
    font-size: 15px;
    font-weight: normal;
}

.share-text{
    font-family: "Mont-Bold";
    font-size: 15px;
    font-weight: normal;
    margin-top: 20px;
}

.share-block{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.share-btn{
    width: 50px;
    height: 50px;
}

.share-btn img{
    width: 100%;
    height: 100%;
}

.share-btn-big{
    width: auto;
    height: 50px;
    display: flex;
    padding: 0 20px;
    font-size: 18px;font-family: "Mont-Bold";
    color: white;
    align-items: center;
    border-radius: 50px;
    background: linear-gradient(203deg, #00571D 0%, #87C212 100%);
    text-decoration: none;
}

@media(min-width: 768px){
    .broadcast-grid{grid-template-columns: repeat(2, 1fr);}
}

@media(min-width: 1280px){
    .content-title{font-size: 46px;}
    .content-descript span{font-size: 18px;}
    .broadcast-grid{grid-template-columns: repeat(3, 1fr);}
    .player_block{
        flex-direction: row;
        justify-content: space-between;
    }
    .player_container{
        width: 65%;
    }
    
    .player-description{width: 30%; margin-top: 0;}

    .plyr--video .plyr__control--overlaid {
        background: linear-gradient(203deg, #00571D 0%, #87C212 100%);
        width: 100px;
        height: 100px;
    }

    /* Управляем размером треугольника */
    .plyr--video .plyr__control--overlaid svg {
        width: 40px;    /* меняйте этот размер */
        height: 40px;   /* меняйте этот размер */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .share-btn{
    width: 50px;
    height: 50px;
}
}