.video-section{
    width: 100%;
    margin: 40px auto;
    background: #0b0b0b;
    padding: 20px;
    border-top: 4px solid #d40000;
    border-bottom: 4px solid #d40000;
    box-sizing: border-box;
}

.video-section h2{
    color: #ffffff;
    font-size: 34px;
    font-weight: bold;
    margin: 0 0 25px 0;
    padding-left: 12px;
    border-left: 5px solid #d40000;
    text-shadow: 0 0 6px rgba(255,0,0,.4);
}

.video-grid{
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.video-card{
    width: 32%;
    background: #111;
    border-top: 3px solid #d40000;
    border-bottom: 3px solid #d40000;
    padding: 8px;
    box-sizing: border-box;
}

.video-card video{
    width: 100%;
    height: 180px;
    display: block;
    border: 1px solid #333;
    object-fit: cover;
}

.video-card h3{
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.4;
    text-align: center;
}

/* Mobile */
@media(max-width:768px){
    .video-grid{
        flex-direction: column;
    }

    .video-card{
        width: 100%;
    }

    .video-section h2{
        font-size: 28px;
    }
}