/* ===== CENTRAL ADS SYSTEM ===== */

.central-ads-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    pointer-events: none; /* NO OVERLAP */
}

/* AD COMMON */
.central-ad {
    position: absolute;
    top: 0;
    width: 160px;
    min-height: 600px;
    pointer-events: auto;
}

/* LEFT / RIGHT */
.left-ad { left: -170px; }
.right-ad { right: -170px; }

/* RESPONSIVE AUTO ADJUST */
@media (max-width: 1400px) {
    .left-ad { left: -150px; }
    .right-ad { right: -150px; }
}

@media (max-width: 1200px) {
    .central-ad { display: none; }
}

/* MOBILE SAFE */
@media (max-width: 768px) {
    .central-ads-wrapper {
        display: none;
    }
}
