﻿/**
 * MODERN FLIP CLOCK - ads.css
 * Google AdSense placeholder styling.
 * All .fc-ad-unit elements are hidden for PRO users via body.fc-pro-user
 */

/* ── Base ad unit ─────────────────────────────────────────────────────── */
.fc-ad-unit {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    transition: opacity 0.3s;
}

[data-theme="light"] .fc-ad-unit {
    background: rgba(0, 0, 0, 0.025);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Google's <ins> ad tag fills the container */
.fc-ad-unit ins.adsbygoogle {
    display: block !important;
    width: 100%;
    height: 100%;
}

/* ── Hide ALL ads for PRO members ─────────────────────────────────────── */
body.fc-pro-user .fc-ad-unit {
    display: none !important;
}

/* ── Ad 1 · Leaderboard banner below the clock controls ──────────────── */
.fc-ad-top {
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 0.5rem auto 0;
}

/* Collapse to smaller on mobile */
@media (max-width: 767px) {
    .fc-ad-top {
        max-width: 320px;
        height: 50px;
    }
}

/* ── Ad 2 · Below World Clocks section - full width banner ───────────── */
.fc-ad-mid {
    width: 100%;
    max-width: 970px;
    height: 90px;
    margin: 0.75rem auto;
}

@media (max-width: 767px) {
    .fc-ad-mid {
        max-width: 320px;
        height: 50px;
    }
}

/* ── Ad 3 · Inside mode tabs - Rectangle between weather & tabs ──────── */
.fc-ad-inline {
    width: 100%;
    max-width: 468px;
    height: 60px;
    margin: 0.75rem auto;
}

@media (max-width: 575px) {
    .fc-ad-inline {
        max-width: 320px;
        height: 50px;
    }
}

/* ── Ad 4 · Below music section - sticky footer banner ───────────────── */
.fc-ad-footer {
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 0.75rem auto 1.5rem;
}

@media (max-width: 767px) {
    .fc-ad-footer {
        max-width: 320px;
        height: 50px;
    }
}

/* ── Placeholder label (shows until real ad loads) ───────────────────── */
.fc-ad-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    pointer-events: none;
    opacity: 0.35;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-text-muted, #94a3b8);
}

.fc-ad-placeholder i {
    font-size: 1rem;
    opacity: 0.6;
}

/* Hide placeholder once Google fills the slot */
.fc-ad-unit ins.adsbygoogle[data-ad-status="filled"]~.fc-ad-placeholder {
    display: none;
}