#cbwcc-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#cbwcc-widget a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#cbwcc-widget a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    text-decoration: none !important;
}

/* ── Dark theme ────────────────────────────── */
#cbwcc-widget.cbwcc-dark a,
#cbwcc-widget.cbwcc-dark a:link,
#cbwcc-widget.cbwcc-dark a:visited,
#cbwcc-widget.cbwcc-dark a:hover {
    background: #300831;
    color: #ffffff !important;
}

/* ── Light theme ───────────────────────────── */
#cbwcc-widget.cbwcc-light a,
#cbwcc-widget.cbwcc-light a:link,
#cbwcc-widget.cbwcc-light a:visited,
#cbwcc-widget.cbwcc-light a:hover {
    background: #ffffff;
    color: #0d0d1a !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ── Explicit text colors (prevent theme CSS overriding) ── */
#cbwcc-widget.cbwcc-dark .cbwcc-title,
#cbwcc-widget.cbwcc-dark .cbwcc-countdown {
    color: #ffffff !important;
}

#cbwcc-widget.cbwcc-light .cbwcc-title,
#cbwcc-widget.cbwcc-light .cbwcc-countdown {
    color: #0d0d1a !important;
}

/* ── Illustration ──────────────────────────── */
.cbwcc-illustration {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
}

/* ── Content ───────────────────────────────── */
.cbwcc-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cbwcc-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    opacity: 0.75;
}

.cbwcc-countdown {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* ── CTA button ────────────────────────────── */
.cbwcc-cta {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex-shrink: 0;
}

#cbwcc-widget.cbwcc-dark .cbwcc-cta {
    background: #DFFD51 !important;
    color: #0d0d1a !important;
}

#cbwcc-widget.cbwcc-light .cbwcc-cta {
    background: #DFFD51 !important;
    color: #0d0d1a !important;
}

/* ── LIVE badge ────────────────────────────── */
.cbwcc-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cbwcc-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: cbwcc-pulse-anim 1.5s ease-in-out infinite;
}

@keyframes cbwcc-pulse-anim {
    0%, 100% { opacity: 1;    transform: scale(1);   }
    50%       { opacity: 0.4; transform: scale(1.4); }
}

/* ── Mobile ────────────────────────────────── */
@media (max-width: 480px) {
    #cbwcc-widget {
        bottom: 12px;
        right: 12px;
    }

    #cbwcc-widget a {
        padding: 8px 12px;
        gap: 8px;
    }

    .cbwcc-illustration {
        display: none;
    }

    .cbwcc-countdown {
        font-size: 14px;
    }
}
