/**
 * Ad Flow — Countdown timer + continue button styles.
 *
 * Injected by ad-flow.js on tool/prank pages when an ad session is active.
 * Designed to look like a natural part of the page (inline sections, not overlays).
 *
 * Theme color: pixibb purple (#cb72f0).
 */

/* ── Countdown Section ─────────────────────────────────────── */

.how7o-ad-countdown {
    margin: 48px 0;
    padding: 48px 32px;
    background: #f9e9ff;
    border: 2px solid #cb72f0;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(203, 114, 240, 0.15);
}

.how7o-ad-countdown-text {
    font-size: 22px;
    font-weight: 600;
    color: #27223b;
    margin: 0 0 24px 0;
    line-height: 1.4;
}

.how7o-ad-countdown-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid #cb72f0;
    font-size: 44px;
    font-weight: 800;
    color: #cb72f0;
    transition: border-color 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 4px 16px rgba(203, 114, 240, 0.25);
}

.how7o-ad-countdown-timer.done {
    border-color: #10b981;
    color: #10b981;
    transform: scale(1.08);
}

/* ── Continue Button ───────────────────────────────────────── */

.how7o-ad-continue-wrap {
    margin: 40px 0;
    text-align: center;
}

.how7o-ad-continue-btn {
    display: inline-block;
    padding: 20px 56px;
    background: #cb72f0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(203, 114, 240, 0.35);
}

.how7o-ad-continue-btn:hover {
    background: #b85ddb;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(203, 114, 240, 0.5);
}

.how7o-ad-continue-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ── Step indicator ────────────────────────────────────────── */

.how7o-ad-step-info {
    font-size: 16px;
    font-weight: 500;
    color: #7c7892;
    margin-top: 18px;
    letter-spacing: 0.3px;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 767px) {
    .how7o-ad-countdown {
        margin: 32px 0;
        padding: 32px 20px;
    }

    .how7o-ad-countdown-text {
        font-size: 18px;
    }

    .how7o-ad-countdown-timer {
        width: 88px;
        height: 88px;
        font-size: 36px;
        border-width: 5px;
    }

    .how7o-ad-continue-btn {
        padding: 16px 40px;
        font-size: 17px;
    }

    .how7o-ad-step-info {
        font-size: 14px;
    }
}
