/**
 * SlotVerdict — Bonuses CSS
 * Binance Dark palette + Unbounded/Onest/JetBrains Mono fonts.
 * NOT minified per project rules.
 */

/* ══════════════════════════════════════════════════════════════
 *  ROOT TOKENS
 * ══════════════════════════════════════════════════════════════ */
.bn,
.bn-embed {
    --bn-bg-0: #0B0E11;
    --bn-bg-1: #181A20;
    --bn-bg-2: #1E2329;
    --bn-bg-3: #2B2F36;
    --bn-bg-4: #474D57;
    --bn-amber: #F0B90B;
    --bn-yellow: #FCD535;
    --bn-amber-bg: rgba(240, 185, 11, .1);
    --bn-t1: #EAECEF;
    --bn-t2: #B7BDC6;
    --bn-t3: #848E9C;
    --bn-t4: #5E6673;
    --bn-green: #0ECB81;
    --bn-red: #F6465D;
    --bn-purple: #6C5CE7;
    --bn-blue: #3861FB;
    --bn-pink: #EC4899;
    --bn-line: rgba(255, 255, 255, .06);
    --bn-line-2: rgba(255, 255, 255, .10);
    --bn-c: var(--bn-amber);
    --bn-r: 14px;
    --bn-rl: 18px;

    --bn-font-display: 'Unbounded', 'Onest', system-ui, sans-serif;
    --bn-font-body: 'Onest', system-ui, sans-serif;
    --bn-font-mono: 'JetBrains Mono', 'Menlo', monospace;
}

.bn {
    background: var(--bn-bg-0);
    color: var(--bn-t1);
    font-family: var(--bn-font-body);
    font-feature-settings: "ss01", "cv01";
    min-height: 100vh;
    padding: 24px clamp(16px, 4vw, 48px) 64px;
    max-width: 1280px;
    margin: 0 auto;
}

/* .bn-embed — drop-in card grid container for use INSIDE other pages
   (e.g. casino single page "Bonuses" tab). Inherits all design tokens
   from .bn but doesn't own padding, max-width, or background. */
.bn-embed {
    color: var(--bn-t1);
    font-family: var(--bn-font-body);
}

.bn *, .bn-embed * { box-sizing: border-box; }
:where(.bn, .bn-embed) img { max-width: 100%; height: auto; }
:where(.bn, .bn-embed) a { color: inherit; text-decoration: none; }
.bn h1, .bn h2, .bn h3, .bn h4,
.bn-embed h1, .bn-embed h2, .bn-embed h3, .bn-embed h4 {
    font-family: var(--bn-font-display);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0;
    color: var(--bn-t1);
}

/* ══════════════════════════════════════════════════════════════
 *  BREADCRUMBS
 * ══════════════════════════════════════════════════════════════ */
.bn-bc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--bn-t3);
    margin-bottom: 18px;
    font-family: var(--bn-font-mono);
}
.bn-bc a { color: var(--bn-t3); transition: color .15s; }
.bn-bc a:hover { color: var(--bn-amber); }
.bn-bc span:not(.bn-bc-cur) { color: var(--bn-t4); }
.bn-bc-cur { color: var(--bn-t1); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
 *  BUTTONS
 * ══════════════════════════════════════════════════════════════ */
.bn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-family: var(--bn-font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.bn-btn-primary {
    background: var(--bn-amber);
    color: #0B0E11;
}
.bn-btn-primary:hover {
    background: var(--bn-yellow);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(240, 185, 11, .35);
}
.bn-btn-ghost {
    background: var(--bn-bg-2);
    color: var(--bn-t1);
    border-color: var(--bn-line-2);
}
.bn-btn-ghost:hover {
    background: var(--bn-bg-3);
    border-color: var(--bn-amber);
    color: var(--bn-amber);
}
.bn-btn-xl {
    padding: 16px 32px;
    font-size: 15px;
    border-radius: 12px;
}

/* ══════════════════════════════════════════════════════════════
 *  BLOCK COMMON
 * ══════════════════════════════════════════════════════════════ */
.bn-block {
    background: var(--bn-bg-1);
    border: 1px solid var(--bn-line);
    border-radius: var(--bn-rl);
    padding: 24px clamp(20px, 3vw, 32px);
    margin-bottom: 18px;
}
.bn-block-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--bn-line);
}
.bn-block-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bn-amber-bg);
    color: var(--bn-amber);
}
.bn-block-tt {
    font-family: var(--bn-font-display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--bn-t2);
}
.bn-block-sub {
    margin-left: auto;
    font-family: var(--bn-font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--bn-t4);
    background: var(--bn-bg-3);
    padding: 4px 10px;
    border-radius: 6px;
}

/* ══════════════════════════════════════════════════════════════
 *  ───── SINGLE BONUS PAGE
 * ══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.bn-hero {
    background: linear-gradient(135deg, var(--bn-bg-1) 0%, var(--bn-bg-2) 100%);
    border: 1px solid var(--bn-line-2);
    border-radius: var(--bn-rl);
    padding: 32px clamp(24px, 4vw, 48px);
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}
.bn-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(circle at 100% 50%, var(--bn-c) 0%, transparent 70%);
    opacity: .08;
    pointer-events: none;
}
.bn-hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.bn-hero-l { min-width: 0; }

.bn-hero-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bn-bg-3);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--bn-c);
    margin-bottom: 14px;
    transition: all .15s;
}
.bn-hero-type:hover { background: var(--bn-bg-4); }
.bn-hero-type-ico { display: inline-flex; }

.bn-hero-title {
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.1;
    margin-bottom: 14px;
}

.bn-hero-amount {
    font-family: var(--bn-font-mono);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--bn-amber);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--bn-amber) 0%, var(--bn-yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.bn-hero-casino {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line);
    border-radius: 12px;
    margin-bottom: 20px;
    width: fit-content;
}
.bn-hero-casino img {
    height: 48px;
    width: auto;
    max-width: 180px;
    border-radius: 8px;
    object-fit: contain;
    background: var(--bn-bg-3);
    padding: 6px 10px;
}
.bn-hero-casino-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--bn-t3);
    font-weight: 700;
}
.bn-hero-casino-name {
    display: block;
    font-family: var(--bn-font-display);
    font-weight: 700;
    color: var(--bn-t1);
    font-size: 16px;
}
.bn-hero-casino-name:hover { color: var(--bn-amber); }

.bn-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}
.bn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    background: var(--bn-bg-3);
    color: var(--bn-t2);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.bn-hero-badge.bn-status-active { color: var(--bn-green); background: rgba(14, 203, 129, .1); }
.bn-hero-badge.bn-status-expired { color: var(--bn-red); background: rgba(246, 70, 93, .1); }
.bn-hero-badge.bn-status-upcoming { color: var(--bn-blue); background: rgba(56, 97, 251, .1); }
.bn-hero-badge.bn-badge-exclusive { color: var(--bn-yellow); background: rgba(252, 213, 53, .12); }
.bn-hero-badge.bn-badge-target { color: var(--bn-purple); background: rgba(108, 92, 231, .1); }
.bn-hero-badge.bn-badge-kyc { color: var(--bn-red); background: rgba(246, 70, 93, .08); }

.bn-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bn-hero-r {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bn-hero-visual {
    text-align: center;
    padding: 24px;
}
.bn-hero-icon {
    display: inline-flex;
    width: 160px;
    height: 160px;
    align-items: center;
    justify-content: center;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line-2);
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}
.bn-hero-validity {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 18px;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line);
    border-radius: 10px;
}
.bn-hero-validity-l {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--bn-t3);
    font-weight: 700;
}
.bn-hero-validity-v {
    font-family: var(--bn-font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--bn-t1);
    margin-top: 2px;
}

@media (max-width: 880px) {
    .bn-hero-grid { grid-template-columns: 1fr; }
    .bn-hero-r { display: none; }
}

/* ── KPI cards ── */
.bn-kpi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.bn-kpi-card {
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all .15s;
}
.bn-kpi-card:hover {
    border-color: var(--bn-line-2);
    transform: translateY(-1px);
}
.bn-kpi-l {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--bn-t3);
    font-weight: 700;
}
.bn-kpi-v {
    font-family: var(--bn-font-mono);
    font-size: 22px;
    font-weight: 800;
    color: var(--bn-t1);
    letter-spacing: -.02em;
    line-height: 1.1;
}
.bn-kpi-d {
    font-size: 11px;
    color: var(--bn-t4);
    font-family: var(--bn-font-mono);
}
.bn-kpi-good .bn-kpi-v { color: var(--bn-green); }

/* ── Promocode block ── */
.bn-promo-block {
    background: linear-gradient(135deg, rgba(240, 185, 11, .04) 0%, rgba(252, 213, 53, .02) 100%);
    border-color: rgba(240, 185, 11, .15);
}
.bn-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.bn-promo-l {
    display: flex;
    align-items: center;
    gap: 14px;
}
.bn-promo-ico {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: var(--bn-amber-bg);
    border-radius: 12px;
    color: var(--bn-amber);
}
.bn-promo-l-label {
    display: block;
    font-family: var(--bn-font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--bn-t3);
    font-weight: 700;
}
.bn-promo-l-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    background: var(--bn-amber);
    color: #0B0E11;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
}

.bn-promo-code {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 14px 12px 22px;
    background: var(--bn-bg-2);
    border: 2px dashed var(--bn-amber);
    border-radius: 10px;
    cursor: pointer;
    transition: all .15s;
    font: inherit;
}
.bn-promo-code:hover {
    background: var(--bn-bg-3);
    border-style: solid;
}
.bn-promo-code-text {
    font-family: var(--bn-font-mono);
    font-size: 18px;
    font-weight: 800;
    color: var(--bn-amber);
    letter-spacing: .12em;
}
.bn-promo-code-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bn-amber);
    color: #0B0E11;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.bn-promo-code.is-copied {
    border-color: var(--bn-green);
}
.bn-promo-code.is-copied .bn-promo-code-action {
    background: var(--bn-green);
    color: #fff;
}

/* ── Steps ── */
.bn-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.bn-steps li {
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    transition: all .15s;
}
.bn-steps li:hover {
    border-color: var(--bn-c);
    transform: translateY(-1px);
}
.bn-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bn-amber-bg);
    color: var(--bn-amber);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bn-font-mono);
    font-weight: 800;
    font-size: 13px;
    border: 1px solid rgba(240, 185, 11, .3);
}
.bn-step-tt {
    font-family: var(--bn-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--bn-t1);
    line-height: 1.3;
}
.bn-step-d {
    font-size: 12px;
    color: var(--bn-t3);
    font-family: var(--bn-font-mono);
}
.bn-step-d code {
    background: var(--bn-bg-3);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--bn-amber);
    font-weight: 700;
}

/* ── Deposits table ── */
.bn-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--bn-line);
}
.bn-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.bn-table th {
    background: var(--bn-bg-2);
    padding: 10px 14px;
    text-align: left;
    font-family: var(--bn-font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--bn-t3);
    border-bottom: 1px solid var(--bn-line);
    font-weight: 700;
}
.bn-table td {
    padding: 14px;
    border-bottom: 1px solid var(--bn-line);
    color: var(--bn-t2);
    font-family: var(--bn-font-mono);
}
.bn-table tr:last-child td { border-bottom: none; }
.bn-table tr:hover td { background: var(--bn-bg-2); color: var(--bn-t1); }
.bn-deposit-num {
    display: inline-flex;
    width: 28px; height: 28px;
    align-items: center; justify-content: center;
    background: var(--bn-amber-bg);
    color: var(--bn-amber);
    border-radius: 50%;
    font-weight: 800;
    border: 1px solid rgba(240, 185, 11, .25);
}
.bn-deposit-percent {
    color: var(--bn-amber);
    font-weight: 800;
}

/* ── Prose / content ── */
.bn-prose {
    font-size: 15px;
    line-height: 1.7;
    color: var(--bn-t2);
}
.bn-prose p { margin: 0 0 14px; }
.bn-prose strong { color: var(--bn-t1); }
.bn-prose a { color: var(--bn-amber); }
.bn-prose a:hover { text-decoration: underline; }
.bn-prose h2, .bn-prose h3 {
    color: var(--bn-t1);
    margin: 24px 0 12px;
}
.bn-prose ul, .bn-prose ol { margin: 0 0 14px 20px; }
.bn-prose li { margin-bottom: 6px; }

.bn-terms {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--bn-line);
}
.bn-terms-h {
    font-family: var(--bn-font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--bn-amber);
    margin-bottom: 14px;
}
.bn-terms-bd {
    font-size: 13px;
    line-height: 1.65;
    color: var(--bn-t3);
    background: var(--bn-bg-2);
    padding: 18px 22px;
    border-radius: 10px;
    border-left: 3px solid var(--bn-amber);
}

/* ── Casino card ── */
.bn-casino-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bn-bg-2);
    border-radius: 12px;
    border: 1px solid var(--bn-line);
    flex-wrap: wrap;
}
.bn-casino-card-logo {
    height: 64px;
    width: auto;
    max-width: 200px;
    border-radius: 12px;
    object-fit: contain;
    background: var(--bn-bg-3);
    padding: 10px 14px;
}
.bn-casino-card-meta { flex: 1; min-width: 200px; }
.bn-casino-card-tt {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}
.bn-casino-card-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.bn-casino-card-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bn-casino-card-stat-l {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--bn-t4);
    font-weight: 700;
}
.bn-casino-card-stat-v {
    font-family: var(--bn-font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--bn-t1);
}
.bn-casino-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── Similar bonuses ── */
.bn-similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

/* ── Final CTA ── */
.bn-final-cta {
    background: linear-gradient(135deg, var(--bn-amber-bg) 0%, var(--bn-bg-1) 70%);
    border: 1px solid rgba(240, 185, 11, .2);
    border-radius: var(--bn-rl);
    padding: 36px clamp(24px, 4vw, 48px);
    text-align: center;
    margin-top: 18px;
}
.bn-final-cta-tt {
    font-family: var(--bn-font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    margin-bottom: 8px;
}
.bn-final-cta-amount {
    font-family: var(--bn-font-mono);
    font-size: 18px;
    color: var(--bn-amber);
    margin-bottom: 20px;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
 *  ───── ARCHIVE PAGE
 * ══════════════════════════════════════════════════════════════ */

.bn-arc-hero {
    background: linear-gradient(135deg, var(--bn-bg-1) 0%, var(--bn-bg-2) 100%);
    border: 1px solid var(--bn-line-2);
    border-radius: var(--bn-rl);
    padding: 36px clamp(24px, 4vw, 48px);
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: center;
}
@media (max-width: 880px) {
    .bn-arc-hero { grid-template-columns: 1fr; }
}
.bn-arc-eyebrow {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bn-amber-bg);
    color: var(--bn-amber);
    border-radius: 999px;
    font-family: var(--bn-font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}
.bn-arc-h1 {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.05;
    margin-bottom: 14px;
}
.bn-arc-lead {
    font-size: 15px;
    line-height: 1.6;
    color: var(--bn-t2);
    margin-bottom: 22px;
    max-width: 560px;
}

.bn-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line-2);
    border-radius: 12px;
    padding: 4px 4px 4px 16px;
    max-width: 480px;
    transition: border-color .15s;
}
.bn-search:focus-within { border-color: var(--bn-amber); }
.bn-search-ico { color: var(--bn-t3); flex-shrink: 0; }
.bn-search input {
    flex: 1;
    background: none;
    border: none;
    color: var(--bn-t1);
    padding: 12px 8px;
    font: inherit;
    font-size: 14px;
    outline: none;
}
.bn-search input::placeholder { color: var(--bn-t4); }
.bn-search-btn {
    padding: 10px 20px;
    background: var(--bn-amber);
    color: #0B0E11;
    border: none;
    border-radius: 8px;
    font-family: var(--bn-font-display);
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    transition: background .15s;
}
.bn-search-btn:hover { background: var(--bn-yellow); }

.bn-arc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line);
    border-radius: 14px;
    padding: 18px;
}
.bn-arc-stat {
    text-align: center;
    padding: 4px;
}
.bn-arc-stat-v {
    display: block;
    font-family: var(--bn-font-mono);
    font-size: 28px;
    font-weight: 800;
    color: var(--bn-amber);
    line-height: 1;
}
.bn-arc-stat-l {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--bn-t3);
    font-weight: 700;
    margin-top: 6px;
}

/* ── Filters ── */
.bn-filters {
    background: var(--bn-bg-1);
    border: 1px solid var(--bn-line);
    border-radius: var(--bn-rl);
    padding: 18px;
    margin-bottom: 18px;
    position: sticky;
    top: 12px;
    z-index: 5;
    backdrop-filter: blur(8px);
}
.bn-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.bn-filters-row + .bn-filters-row { margin-top: 12px; }
.bn-filters-row-controls {
    padding-top: 12px;
    border-top: 1px solid var(--bn-line);
}

.bn-filters-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
}

.bn-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bn-t2);
    transition: all .15s;
    --bn-chip-c: var(--bn-amber);
}
.bn-chip:hover {
    background: var(--bn-bg-3);
    color: var(--bn-t1);
    border-color: var(--bn-chip-c);
}
.bn-chip.is-active {
    background: var(--bn-chip-c);
    color: #0B0E11;
    border-color: var(--bn-chip-c);
}
.bn-chip.is-active .bn-chip-ico { color: #0B0E11 !important; }
.bn-chip-cnt {
    font-family: var(--bn-font-mono);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
    color: var(--bn-t3);
}
.bn-chip.is-active .bn-chip-cnt {
    background: rgba(0, 0, 0, .15);
    color: rgba(0, 0, 0, .8);
}

.bn-filters select,
.bn-filters .bn-toggle {
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--bn-t1);
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.bn-filters select:hover,
.bn-filters .bn-toggle:hover { border-color: var(--bn-amber); }
.bn-filters select:focus { outline: none; border-color: var(--bn-amber); }

.bn-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}
.bn-toggle input { accent-color: var(--bn-amber); }
.bn-toggle-l { color: var(--bn-t2); }

.bn-filter-reset {
    margin-left: auto;
    color: var(--bn-amber);
    font-size: 12px;
    font-weight: 700;
}
.bn-filter-reset:hover { text-decoration: underline; }

/* ── Themed blocks ── */
.bn-arc-block {
    margin-bottom: 32px;
}
.bn-arc-block-hd {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.bn-arc-block-ico {
    display: inline-flex;
    color: var(--bn-amber);
}
.bn-arc-block-tt {
    font-family: var(--bn-font-display);
    font-size: 18px;
    font-weight: 800;
}
.bn-arc-block-more {
    margin-left: auto;
    font-size: 13px;
    color: var(--bn-amber);
    font-weight: 700;
}
.bn-arc-block-more:hover { text-decoration: underline; }

/* ── Grids ── */
.bn-grid {
    display: grid;
    gap: 12px;
}
.bn-grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.bn-grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* ── Bonus card — Trading Dashboard variant (v1.6.119) ── */
.bn-card {
    --bn-card-c: var(--bn-amber);
    background: var(--bn-bg-1);
    border: 1px solid var(--bn-line);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.bn-card:hover {
    border-color: var(--bn-card-c);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

/* Status bar — pulsing green dot + status text + type icon on right */
.bn-card-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    color: var(--bn-t4);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bn-line);
}
.bn-card-status-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bn-green);
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.bn-card-status-dot {
    width: 6px;
    height: 6px;
    background: var(--bn-green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: bn-card-pulse 1.5s ease-out infinite;
}
@keyframes bn-card-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.4); }
}
.bn-card-status-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bn-card-status-sep {
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
    opacity: .5;
    flex-shrink: 0;
}
.bn-card-status-type {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--bn-card-c);
    flex-shrink: 0;
    overflow: hidden;
    max-width: 50%;
}
.bn-card-status-type span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Identity row */
.bn-card-id {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.bn-card-logo {
    height: 32px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    flex-shrink: 0;
}
.bn-card-id-r {
    flex: 1;
    min-width: 0;
}
.bn-card-id-casino {
    font-family: var(--bn-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--bn-t1);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bn-card-id-tt {
    font-size: 11px;
    color: var(--bn-t3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
    line-height: 1.3;
}

/* 3-cell grid */
.bn-card-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 6px;
}
.bn-card-cell {
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line);
    border-radius: 8px;
    padding: 8px 10px;
    text-align: center;
    min-width: 0;
}
.bn-card-cell.is-amount {
    background: var(--bn-amber-bg);
    border-color: rgba(240, 185, 11, .25);
}
.bn-card-cell.is-promo {
    background: rgba(252, 213, 53, .08);
    border-color: rgba(252, 213, 53, .3);
}
.bn-card-cell.is-warn {
    background: rgba(246, 70, 93, .08);
    border-color: rgba(246, 70, 93, .25);
}
.bn-card-cell.is-good {
    background: rgba(14, 203, 129, .08);
    border-color: rgba(14, 203, 129, .25);
}
.bn-card-cell-v {
    display: block;
    font-family: var(--bn-font-mono);
    font-size: 14px;
    font-weight: 800;
    color: var(--bn-t1);
    letter-spacing: -.01em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bn-card-cell.is-amount .bn-card-cell-v {
    color: var(--bn-amber);
    font-size: 15px;
}
.bn-card-cell.is-promo .bn-card-cell-v {
    color: var(--bn-yellow);
    font-size: 12px;
    letter-spacing: .04em;
}
.bn-card-cell.is-warn .bn-card-cell-v { color: var(--bn-red); }
.bn-card-cell.is-good .bn-card-cell-v {
    color: var(--bn-green);
    font-size: 11px;
}
.bn-card-cell-l {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--bn-t4);
    font-weight: 700;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CTA */
.bn-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px;
    background: var(--bn-bg-3);
    color: var(--bn-t1);
    border-radius: 8px;
    font-family: var(--bn-font-display);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    border: 1px solid transparent;
    transition: all .15s;
}
.bn-card-cta svg { transition: transform .15s; }
.bn-card:hover .bn-card-cta {
    background: var(--bn-card-c);
    color: #0B0E11;
}
.bn-card:hover .bn-card-cta svg { transform: translateX(3px); }

/* ── Categories grid ── */
.bn-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.bn-cat-card {
    --bn-cat-c: var(--bn-amber);
    background: var(--bn-bg-1);
    border: 1px solid var(--bn-line);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    transition: all .2s;
    position: relative;
}
.bn-cat-card:hover {
    border-color: var(--bn-cat-c);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
    background: var(--bn-bg-2);
}
.bn-cat-ico {
    display: inline-flex;
    width: 56px; height: 56px;
    align-items: center; justify-content: center;
    background: var(--bn-bg-2);
    border-radius: 14px;
    margin-bottom: 12px;
    color: var(--bn-cat-c);
}
.bn-cat-tt {
    font-family: var(--bn-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--bn-t1);
    margin-bottom: 6px;
}
.bn-cat-cnt {
    font-family: var(--bn-font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--bn-cat-c);
    background: var(--bn-bg-2);
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-block;
}

/* ── Empty state ── */
.bn-empty {
    text-align: center;
    padding: 60px 24px;
    background: var(--bn-bg-1);
    border: 1px dashed var(--bn-line-2);
    border-radius: var(--bn-rl);
}
.bn-empty h3 {
    font-family: var(--bn-font-display);
    font-size: 18px;
    color: var(--bn-t2);
    margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════════
 *  ───── TAXONOMY PAGE
 * ══════════════════════════════════════════════════════════════ */

.bn-tax-hd {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, var(--bn-bg-1) 0%, var(--bn-bg-2) 100%);
    border: 1px solid var(--bn-line-2);
    border-radius: var(--bn-rl);
    padding: 32px clamp(24px, 4vw, 48px);
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}
.bn-tax-hd::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(circle at 100% 50%, var(--bn-c) 0%, transparent 70%);
    opacity: .08;
    pointer-events: none;
}
.bn-tax-hd-l { position: relative; z-index: 1; }
.bn-tax-hd-r { position: relative; z-index: 1; }
.bn-tax-hd-ico {
    display: inline-flex;
    width: 100px; height: 100px;
    align-items: center; justify-content: center;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line-2);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}
.bn-tax-hd-tt {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.05;
    margin-bottom: 10px;
}
.bn-tax-hd-d {
    font-size: 15px;
    line-height: 1.6;
    color: var(--bn-t2);
    margin-bottom: 16px;
    max-width: 640px;
}
.bn-tax-hd-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.bn-tax-hd-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    color: var(--bn-t3);
}
.bn-tax-hd-stat strong {
    font-family: var(--bn-font-mono);
    font-size: 22px;
    font-weight: 800;
    color: var(--bn-c);
}
@media (max-width: 720px) {
    .bn-tax-hd { grid-template-columns: 1fr; text-align: center; }
    .bn-tax-hd-l { display: flex; justify-content: center; }
    .bn-tax-hd-d { margin-left: auto; margin-right: auto; }
    .bn-tax-hd-stats { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
 *  ───── EMBED VARIANT (single-casino "Bonuses" tab)
 *  Header row above the card grid
 * ══════════════════════════════════════════════════════════════ */
.bn-cas-bonuses-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 14px;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line);
    border-radius: 12px;
}
.bn-cas-bonuses-cnt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 28px;
    padding: 0 10px;
    background: var(--bn-amber);
    color: #0B0E11;
    border-radius: 999px;
    font-family: var(--bn-font-mono);
    font-weight: 800;
    font-size: 13px;
}
.bn-cas-bonuses-l {
    font-family: var(--bn-font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--bn-t1);
    flex: 1;
}
.bn-cas-bonuses-all {
    font-size: 12px;
    font-weight: 700;
    color: var(--bn-amber);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.bn-cas-bonuses-all:hover { text-decoration: underline; }

/* Inside .bn-embed, ensure the grid has proper spacing */
.bn-embed .bn-grid {
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   Casino Picker (replaces native <select> in archive filters)
   v1.6.208 — links to /bonus/casino/{slug}/ pretty URLs
═══════════════════════════════════════════════════════ */

.bn-casino-pick {
    position: relative;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line);
    border-radius: 8px;
}

.bn-casino-pick-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    color: var(--bn-t1);
    user-select: none;
    list-style: none; /* hide default <summary> marker */
    border-radius: 8px;
    transition: background .15s;
}
.bn-casino-pick-trigger::-webkit-details-marker { display: none; }
.bn-casino-pick-trigger:hover { background: var(--bn-bg-3); }

.bn-casino-pick-label {
    color: var(--bn-t3);
    font-weight: 500;
}
.bn-casino-pick-current {
    font-weight: 700;
    color: var(--bn-t1);
}
.bn-casino-pick-arrow {
    margin-left: 4px;
    color: var(--bn-t3);
    transition: transform .2s;
}
.bn-casino-pick[open] .bn-casino-pick-arrow {
    transform: rotate(180deg);
}

.bn-casino-pick-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 50;
    min-width: 280px;
    max-width: 340px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--bn-bg-1);
    border: 1px solid var(--bn-line-2);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .4);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .15) transparent;
    animation: bn-pick-fade .15s ease-out;
}
@keyframes bn-pick-fade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bn-casino-pick-list::-webkit-scrollbar { width: 6px; }
.bn-casino-pick-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .15); border-radius: 3px; }
.bn-casino-pick-list::-webkit-scrollbar-track { background: transparent; }

.bn-casino-pick-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--bn-t2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .12s;
}
.bn-casino-pick-item:hover {
    background: var(--bn-bg-3);
    color: var(--bn-t1);
}
.bn-casino-pick-item.is-active {
    background: var(--bn-amber-bg);
    color: var(--bn-amber);
    font-weight: 700;
}
.bn-casino-pick-item-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bn-casino-pick-item-cnt {
    flex-shrink: 0;
    font-family: var(--bn-font-mono);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: var(--bn-t3);
}
.bn-casino-pick-item.is-active .bn-casino-pick-item-cnt {
    background: rgba(11, 14, 17, .15);
    color: var(--bn-amber);
}

@media (max-width: 720px) {
    .bn-casino-pick-list {
        min-width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }
}

/* ═══════════════════════════════════════════════════════
   Casino bonus landing page (/bonus/casino/{slug}/)
   v1.6.208 — uses .bn-arc-* visual language with casino-specific hero
═══════════════════════════════════════════════════════ */

.bn-cas-hero {
    background:
        radial-gradient(circle at 90% 0%, rgba(240, 185, 11, 0.10), transparent 55%),
        var(--bn-bg-1);
}

.bn-cas-hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.bn-cas-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 60px;
    padding: 8px;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line-2);
    border-radius: 12px;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform .18s, border-color .18s;
}
.bn-cas-hero-logo:hover {
    transform: translateY(-1px);
    border-color: var(--bn-amber);
}
.bn-cas-hero-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.bn-cas-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.bn-cas-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    color: var(--bn-t2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--bn-line-2);
    border-radius: 10px;
    transition: all .15s;
}
.bn-cas-hero-back:hover {
    background: var(--bn-bg-3);
    color: var(--bn-t1);
    border-color: var(--bn-bg-4);
}

/* Block count badge in section headers */
.bn-arc-block-cnt {
    margin-left: auto;
    font-family: var(--bn-font-mono);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    background: rgba(255, 255, 255, .06);
    color: var(--bn-t2);
    border-radius: 999px;
    letter-spacing: .03em;
}

/* Casino info card at the bottom */
.bn-cas-info-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 28px;
    background: var(--bn-bg-1);
    border: 1px solid var(--bn-line);
    border-radius: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.bn-cas-info-l {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.bn-cas-info-logo {
    width: 64px;
    height: 64px;
    padding: 6px;
    background: var(--bn-bg-2);
    border: 1px solid var(--bn-line-2);
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bn-cas-info-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bn-cas-info-text {
    flex: 1;
    min-width: 0;
}
.bn-cas-info-text h3 {
    font-family: var(--bn-font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--bn-t1);
    margin: 0 0 4px;
}
.bn-cas-info-text p {
    font-size: 13.5px;
    color: var(--bn-t2);
    line-height: 1.55;
    margin: 0;
}

/* Empty state */
.bn-arc-empty {
    text-align: center;
    padding: 48px 24px;
    background: var(--bn-bg-1);
    border: 1px solid var(--bn-line);
    border-radius: 16px;
    margin: 24px 0;
}
.bn-arc-empty p {
    color: var(--bn-t2);
    font-size: 15px;
    margin-bottom: 16px;
}

/* SEO footer block */
.bn-cas-seo {
    background: var(--bn-bg-1);
    border: 1px solid var(--bn-line);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 28px;
    color: var(--bn-t2);
    line-height: 1.7;
    font-size: 15px;
}
.bn-cas-seo h2,
.bn-cas-seo h3 {
    color: var(--bn-t1);
    font-family: var(--bn-font-display);
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 10px;
}
.bn-cas-seo h2 { font-size: 22px; }
.bn-cas-seo h3 { font-size: 18px; }
.bn-cas-seo a { color: var(--bn-amber); }

@media (max-width: 720px) {
    .bn-cas-hero-meta {
        gap: 10px;
        margin-bottom: 10px;
    }
    .bn-cas-hero-logo {
        width: 64px;
        height: 44px;
        padding: 5px;
        border-radius: 10px;
    }
    .bn-cas-hero-actions {
        gap: 8px;
        margin-top: 14px;
    }
    .bn-cas-info-card {
        padding: 16px;
        gap: 14px;
    }
    .bn-cas-info-logo {
        width: 52px;
        height: 52px;
    }
    .bn-cas-info-text h3 { font-size: 16px; }
    .bn-cas-info-text p  { font-size: 13px; }
}
