/* rip/capped-panel.css — "You're out of pulls for today", on any page.
 *
 * ⚠⚠ THE RULES WERE INLINE `style=""` ATTRIBUTES ON packs.htm's #overlay-capped
 * (2026-09-24), which is the other half of why no universe page could have this
 * panel: the markup and its whole appearance were one blob inside the app.
 * Lifted here unchanged in effect — the same amber alert box, the same
 * gradient Short button, the same cyan referral row — and scoped to `.rc-box`
 * so any host can carry it.
 *
 * ⚠ SCOPED TO THE CLASSES, NOT TO A HOST ID, and that is deliberate here where
 * setup-card.css is the opposite: this panel has two hosts already
 * (packs.htm's reveal overlay and the universe pages' pull area) and will have
 * more. There is nothing else on the site called `.rc-*`.
 *
 * ⚠ `--rip-body` WITH A REAL FALLBACK. packs.htm's inline copy set
 * `font-family:var(--rip-body)` with no fallback, which is safe only on a page
 * that loads rip-ui.css. The universe pages do too — but a panel that can be
 * dropped anywhere should not go to the system serif if one ever does not.
 */

.rc-box{
    margin-top:12px;width:100%;max-width:360px;box-sizing:border-box;
    background:rgba(251,146,60,.13);border:1px solid rgba(251,146,60,.5);
    border-radius:12px;padding:13px 15px;
    color:#fde9d3;font-family:var(--rip-body,'Bricolage Grotesque',system-ui,sans-serif);
    font-size:14px;line-height:1.5;text-align:center;
    display:flex;flex-direction:column;align-items:center;gap:0;
}
.rc-title{display:block;width:100%;font-weight:800}
.rc-when{display:block;width:100%}

/* ⚠ 48px OF TAP TARGET, like every other action this subsystem ships. The
   inline copy was 13px padding on a 14px line, which lands at ~46. */
.rc-watch{
    display:flex;align-items:center;justify-content:center;gap:8px;
    width:100%;min-height:48px;margin-top:11px;padding:13px;
    border:none;border-radius:11px;
    background:linear-gradient(135deg,#f97316,#e11d48);
    color:#fff;font-family:inherit;font-size:14px;font-weight:800;
    cursor:pointer;box-shadow:0 6px 18px rgba(225,29,72,.4);
}
.rc-maxed{display:block;width:100%;margin-top:9px;font-size:13px;color:#cbd5e1;font-weight:700}

.rc-invite{
    display:flex;align-items:center;justify-content:center;gap:8px;
    width:100%;min-height:48px;margin-top:9px;padding:12px;
    border:1px solid rgba(34,211,238,.55);border-radius:11px;
    background:rgba(34,211,238,.10);
    color:#a5f3fc;font-family:inherit;font-size:13.5px;font-weight:800;
    text-decoration:none;line-height:1.35;text-align:center;
}
/* ⚠ `.rip-ui a:not(.rip-btn)` repaints every anchor at specificity (0,2,1) and
   outranks anything weaker — the trap rip/docs/app.md records. (0,2,0) plus the
   element ties it, and source order decides; this sheet loads after rip-ui.css
   on every host, which is the same contract setup-card.css has. */
.rc-box a.rc-invite{color:#a5f3fc}
.rc-invite b{color:#fff}
