﻿/* ===================================================
   PROMO SLOT
   Mobile First • Safe • Responsive
   =================================================== */

/* Wrapper utama */
.promo-slot {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 22px 0;
    padding: 0 10px;
    pointer-events: auto;
}

/* Frame promo */
.promo-frame {
    width: 100%;
    max-width: 320px;
    min-height: 50px;

    background: rgba(0, 15, 0, 0.88);
    border: 1px solid #0f0;
    border-radius: 4px;

    box-shadow:
        0 0 10px rgba(0,255,0,.25),
        inset 0 0 6px rgba(0,255,0,.15);

    padding: 6px;
    position: relative;
    overflow: hidden;
}

.promo-frame::before {
    content: "[ PROMO ]";
    position: absolute;
    top: -9px;
    left: 10px;

    background: #0a0a0a;
    color: #0f0;

    font-size: 0.7rem;
    padding: 0 6px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.promo-frame iframe {
    width: 100%;
    height: 50px;
    border: none;
    display: block;
}

@media (min-width: 768px) {

    .promo-slot {
        margin: 28px 0;
    }

    .promo-frame {
        max-width: 468px;
        padding: 8px;
    }

    .promo-frame iframe {
        height: 50px;
    }
}

@media (min-width: 1200px) {

    .promo-frame {
        max-width: 520px;
    }
}

.promo-slot + .main-content,
header + .promo-slot {
    margin-top: 12px;
}


.promo-frame * {
    user-select: none;
}
