/* Styles pour les publicités */

.ad-container {
    margin: 4px 0 4px 0;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.ad-label {
    font-size: 9px;
    color: var(--md-sys-color-outline, rgba(128, 128, 128, 0.6));
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 400;
    letter-spacing: 0.8px;
    opacity: 0.7;
}

.ad-zone {
    display: inline-block;
    width: 100%;
    height: auto;
    min-height: 0;
    line-height: 0;
}

.ad-provider {
    display: inline-block;
    width: 100%;
    height: auto;
    line-height: 0;
}

.ad-provider > * {
    line-height: normal;
}

/* Conteneur header */
.ad-container-header {
    margin: 4px 0 4px 0;
    height: auto;
    min-height: 0;
}

/* Ad loaded - ensure proper sizing */
.ad-loaded {
    display: inline-block;
    width: 100%;
    height: auto;
    line-height: 0;
}

/* Conteneur sidebar */
.ad-container-sidebar {
    margin: 12px 0;
    max-width: 300px;
}

/* Conteneur before download */
.ad-container-before-download {
    margin: 12px 0 8px 0;
}

/* Conteneur after download */
.ad-container-after-download {
    margin: 8px 0 12px 0;
}

/* Conteneur footer */
.ad-container-footer {
    margin: 12px 0;
}

/* Interstitiel */
.ad-interstitial {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 90vh;
}

.ad-interstitial::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
    .ad-container {
        margin: 8px 0;
    }

    .ad-container-sidebar {
        max-width: 100%;
    }
}
