.mc-channel-blocks{
    max-width:1085px;
    margin:28px auto;
    display:grid;
    grid-template-columns:1.45fr 1fr;
    gap:22px;
}

.mc-channel-video-card,
.mc-channel-schedule-card,
.mc-channel-competitions-card{
    background:linear-gradient(135deg,#0a0a0a,#151515);
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    padding:20px;
    color:#fff;
    box-sizing:border-box;
}

.mc-channel-competitions-card{
    grid-column:1 / -1;
}

.mc-block-title{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:16px;
}

.mc-block-title h2{
    margin:0;
    color:#fff;
    font-size:20px;
    font-weight:900;
}

.mc-schedule-list{
    display:flex;
    flex-direction:column;
}

.mc-schedule-item{
    display:grid;
    grid-template-columns:58px 1fr;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.mc-schedule-item:last-child{
    border-bottom:0;
}

.mc-schedule-item span{
    color:#ff1680;
    font-weight:900;
    font-size:13px;
}

.mc-schedule-item strong{
    color:#fff;
    font-size:14px;
    line-height:1.35;
}

.mc-schedule-empty{
    padding:18px;
    border-radius:12px;
    background:rgba(255,255,255,.05);
    color:#ddd;
    font-size:14px;
}

.mc-competition-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
}

.mc-competition-link{
    min-height:78px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    border-radius:12px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.09);
    color:#fff;
    text-decoration:none;
    transition:.2s ease;
}

.mc-competition-link:hover{
    background:rgba(255,22,128,.14);
    border-color:rgba(255,22,128,.55);
    transform:translateY(-2px);
}

.mc-competition-link span{
    font-size:24px;
}

.mc-competition-link strong{
    font-size:14px;
    line-height:1.3;
}

@media(max-width:900px){
    .mc-channel-blocks{
        grid-template-columns:1fr;
        gap:18px;
        margin:22px auto;
    }

    .mc-channel-competitions-card{
        grid-column:auto;
    }

    .mc-competition-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:520px){
    .mc-channel-video-card,
    .mc-channel-schedule-card,
    .mc-channel-competitions-card{
        padding:16px;
        border-radius:14px;
    }

    .mc-block-title h2{
        font-size:18px;
    }

    .mc-competition-grid{
        grid-template-columns:1fr;
    }
}

.mc-video-player{
    width:100%;
}

.mc-video-frame{
    width:100% !important;
    height:360px !important;
    display:block !important;
    border:0 !important;
    border-radius:14px;
    background:#000;
}

@media(max-width:768px){
    .mc-video-frame{
        height:220px !important;
    }
}

.mc-video-tabs{
    display:flex;
    gap:24px;
    margin-top:18px;
}

.mc-video-tab{
    padding:0;
    border:0;
    background:none;
    color:#8d8d8d;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.mc-video-tab::before{
    content:"○";
    margin-right:8px;
    color:#666;
}

.mc-video-tab:hover{
    color:#fff;
}

.mc-video-tab.active{
    color:#fff;
}

.mc-video-tab.active::before{
    content:"●";
    color:#ff1680;
}

