/* Moghamo FC Ad Slot */

.mf-ad-slot {
    width: 100%;
    max-width: 980px;
    margin: 24px auto;
    padding: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 255, 255, 0.03)),
        #090909;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.mf-ad-slot__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.16);
    color: #ffc107;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mf-ad-slot__content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
}

.mf-ad-slot__content p {
    margin: 0 0 14px;
    color: #d6d6d6;
    font-size: 14px;
    line-height: 1.55;
}

.mf-ad-slot__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ffc107;
    color: #050505 !important;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mf-ad-slot__button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.mf-ad-slot__image {
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
}

.mf-ad-slot__image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Sizes */

.mf-ad-slot--small {
    max-width: 420px;
    padding: 16px;
}

.mf-ad-slot--medium {
    max-width: 680px;
}

.mf-ad-slot--large {
    max-width: 980px;
    padding: 24px;
}

.mf-ad-slot--banner {
    max-width: 100%;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}

/* Alignment */

.mf-ad-slot--left {
    margin-left: 0;
    margin-right: auto;
}

.mf-ad-slot--center {
    margin-left: auto;
    margin-right: auto;
}

.mf-ad-slot--right {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 768px) {
    .mf-ad-slot {
        margin: 18px auto;
        padding: 16px;
        border-radius: 14px;
    }

    .mf-ad-slot__content h3 {
        font-size: 19px;
    }

    .mf-ad-slot--banner {
        border-radius: 0;
    }
}