/* OSAnime Music Detail Ads v25
   Reserved, responsive ad placements for the music detail/download page. */

.download-page .osanime-ad-slot {
    --ad-border: rgba(148, 163, 184, .14);
    --ad-bg: rgba(8, 15, 30, .56);
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 22px auto;
    padding: 10px;
    overflow: hidden;
    border: 1px solid var(--ad-border);
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 79, 147, .055), transparent 48%),
        var(--ad-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}

.download-page .osanime-ad-label {
    display: block;
    color: rgba(203, 213, 225, .48);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;
    user-select: none;
}

.download-page .osanime-ad-canvas {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    line-height: 0;
}

.download-page .osanime-ad-canvas iframe {
    display: block !important;
    max-width: 100%;
    border: 0 !important;
}

/* Primary and secondary leaderboard slots. */
.download-page .osanime-ad-primary,
.download-page .osanime-ad-secondary {
    min-height: 125px;
}

/* Sidebar ad belongs to the download/notice rail only on large desktop. */
.download-page .osanime-ad-sidebar {
    display: none;
    width: 100%;
    min-height: 286px;
    margin: 0;
    padding: 10px;
}

@media (min-width: 1180px) {
    .download-page .osanime-ad-sidebar {
        display: flex;
    }
}

/* Use the leaderboard only when the content column has enough real width. */
@media (min-width: 821px) {
    .download-page .osanime-ad-primary,
    .download-page .osanime-ad-secondary {
        max-width: 780px;
    }
}

/* Mobile and compact tablets use the provided 300x250 unit. */
@media (max-width: 820px) {
    .download-page .osanime-ad-slot {
        margin: 18px auto;
        padding: 9px 6px;
        border-radius: 14px;
    }

    .download-page .osanime-ad-primary,
    .download-page .osanime-ad-secondary {
        min-height: 284px;
    }

    .download-page .osanime-ad-canvas {
        min-height: 250px;
    }
}

@media (max-width: 360px) {
    .download-page .osanime-ad-primary,
    .download-page .osanime-ad-secondary {
        left: 50%;
        width: calc(100vw - 4px);
        max-width: 320px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 2px;
        padding-right: 2px;
        transform: translateX(-50%);
    }
}

