/* DMCTN ADS 2 BÊN & 1 QC MOBILE – frontend styles
 * TẠO BỞI BÙI VĂN TĨNH
 */

.dmctn-flra-wrapper {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

/* Khung quảng cáo cơ bản */
.dmctn-flra-box {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    max-width: 160px; /* chuẩn desktop, không che quá nhiều */
    pointer-events: auto;
}

/* Bên trái / bên phải trên desktop */
.dmctn-flra-box-left {
    left: 10px;
}

.dmctn-flra-box-right {
    right: 10px;
}

/* Nội dung trong khung – rìa mỏng 1.5px */
.dmctn-flra-inner {
    border-radius: 14px;
    background: radial-gradient(circle at top, #123524, #050c08);
    padding: 4px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.6);
    color: #f9fafb;
    text-align: center;
    border: 1.5px solid rgba(255,255,255,0.12);
    overflow: hidden;
}

.dmctn-flra-inner img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Nút đóng – mặc định ẩn với banner 2 bên, chỉ hiện khi hover */
.dmctn-flra-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffe066, #f08c00);
    color: #111;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    border: 1px solid rgba(0,0,0,0.7);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
    transition: all 0.18s ease-out;
}

/* Hover vào banner 2 bên mới hiện nút X */
.dmctn-flra-box-left:hover .dmctn-flra-close,
.dmctn-flra-box-right:hover .dmctn-flra-close {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Popup mobile: luôn hiện nút X (không có hover) */
.dmctn-flra-box-mobile .dmctn-flra-close {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Trạng thái ẩn */
.dmctn-flra-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.9);
}

/* Popup mobile giữa màn hình */
.dmctn-flra-box-mobile {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 320px;
    width: 92vw;
}

/* Mặc định: Ẩn quảng cáo 2 bên để tránh lóe trên mobile */
.dmctn-flra-box-left,
.dmctn-flra-box-right {
    display: none;
}

/* Desktop (>= 1024px): bật lại 2 banner 2 bên */
@media (min-width: 1024px) {
    .dmctn-flra-box-left,
    .dmctn-flra-box-right {
        display: block;
    }
}

/* Tinh chỉnh thêm cho màn nhỏ */
@media (max-width: 767px) {
    .dmctn-flra-box {
        max-width: 120px;
    }

    .dmctn-flra-box-mobile {
        max-width: 320px;
        width: 92vw;
    }
}
