/* IKLAN FLOATING MINI */
:root {
    --iklan-width-desktop: 120px;
    --iklan-height-desktop: 170px;
    --iklan-width-mobile: 100px;
    --iklan-height-mobile: 140px;
}

#iklanKiri {
    position: fixed;
    top: 120px;
    left: 10px;
    width: 350px(--iklan-width-desktop);
    height: auto(--iklan-height-desktop);
    background: #fff;
    padding: 4px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    display: none;
    z-index: 9999;
    cursor: grab;
}

#iklanKiri video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}
#iklanKiri {
    width: 400px !important;
    max-width: 90% !important;
}
#iklanKiri .close-iklan {
    position: absolute;
    top: -4px;
    right: -4px;
    background: red;
    color: #fff;
    border: none;
    font-size: 10px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

#iklanKiri .play-suara-btn {
    width: 100%;
    font-size: 10px;
    margin-top: 4px;
    padding: 2px 0;
    cursor: pointer;
    border: none;
    background: #0d4ed8;
    color: #fff;
    border-radius: 4px;
}

@media (max-width: 768px) {
    #iklanKiri {
        top: auto;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: var(--iklan-width-mobile);
        height: var(--iklan-height-mobile);
    }

    #iklanKiri video {
        height: 100%;
    }
}
