@media (max-width: 768px) {
.live-label{
	font-size:11px;
}
.live-label{
    position:relative !important;
    top:-10px !important;
}
}

.live-section{
    padding:15px;
}

.live-container{
    display:flex;
    gap:20px;
    max-width:1052px;
    margin:auto;
}

.live-section iframe{
    width:100%;
    height:400px;
    border-radius:12px;
}

.live-label{
    display:flex;
    align-items:center;
    gap:8px;
    color:red;
    font-weight:bold;
    margin-bottom:1px;
}

.live-dot{
    width:10px;
    height:10px;
    background:red;
    border-radius:50%;
    animation:blink 1s infinite;
}

@keyframes blink{
    0%{opacity:1;}
    50%{opacity:0.2;}
    100%{opacity:1;}
}

/* liveee */

.live-container{
    border-radius: 15px;

    padding: 5px;

    overflow: hidden;

    position: relative;

    box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 0 1px rgba(0,0,0,.45),
    0 0 2px rgba(37,99,235,.10);

}


/* GLOW EFFECT */

.live-container::before{

    content:'';

    position:absolute;
    inset:0;

    background:
    radial-gradient(
    circle at top right,
    rgba(37,99,235,.15),
    transparent 40%
    );

    pointer-events:none;
}


/* YOUTUBE */

.live-container iframe{

    border:none;
    border-radius:15px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.35);
}



/* geser LIVE DOT */
.live-dot{
    position:relative !important;

    /* atas bawah */
    top:-1px !important;

    /* kiri kanan */
    left:1px !important;
}


/* TITLE */

.live-container h3{

    color:#fff;

    font-size:20px;
    line-height:1.3;

    margin:0;

    font-weight:800;
	  position: relative;
    left: 1px;

}

/* TITLE */
@media (max-width: 768px) {

.live-container h3{

    color:#ffff;
    font-size:11px;
    font-weight:800;
	  position: relative;
    top: -12px;
}
}


@media (max-width: 768px) {
    .live-section {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 18px !important;
        min-height: 50px !important; /* atur tinggi background */
        border-radius: 0px !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}

.live-section {
    background: #212121 !important;
}

.live-section .live-label,
.live-section .live-label span,
.live-section .live-section h3,
.live-section h3 {
}


/*  VIDEO RATIO FIX  */
.live-section iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9; /* ⬅️ ini kunci biar tidak kepanjangan */
}

/*  LAYOUT  */
.live-container {
    display: flex;
    gap: 20px;
}

/*  MOBILE  */
@media (max-width:768px){

    /* ubah jadi vertikal */
    .live-container{
        flex-direction: column !important;
        gap: 10px;
    }
}

