.live-tv-section{
    width:100%;
    padding:20px 0;
}

.live-video{
    position:relative;
    width:95%;
    max-width:1400px;
    margin:auto;
    background:
  radial-gradient(circle at center, rgba(255,0,0,0.45) 0%, transparent 42%),
 linear-gradient(90deg, #120000 0%, #3a0000 25%, #000 50%, #3a0000 75%, #120000 100%);

box-shadow:
 0 0 35px rgba(255,0,0,0.65),
 inset 0 0 60px rgba(255,0,0,0.35);

border: 2px solid #ff1a1a;
}
.live-video iframe{
    width:100%;
    height:500px;
    border:none;
    display:block;
}

.breaking-news{
    position:absolute;
    top:15px;
    left:15px;
    background:#d60000;
    color:#fff;
    padding:10px 25px;
    font-weight:bold;
    z-index:999;
    text-transform:uppercase;
}


@media screen and (max-width: 768px) {

    .live-tv-section{
        padding: 10px 0;
    }

    .live-video{
        width: 100%;
        padding: 6px;
        border: 1px solid #ff1a1a;

        background:
        radial-gradient(circle at center, rgba(255,0,0,0.55) 0%, transparent 45%),
        linear-gradient(90deg, #120000 0%, #3a0000 25%, #000 50%, #3a0000 75%, #120000 100%);

        box-shadow:
        0 0 20px rgba(255,0,0,0.5),
        inset 0 0 30px rgba(255,0,0,0.25);
    }

    .live-video iframe{
        width: 100%;
        height: 220px;   /* মোবাইলে ছোট হবে */
    }

    .breaking-news{
        top: 8px;
        left: 8px;
        padding: 6px 14px;
        font-size: 12px;
    }
}