/* Streamer Program — matches the site's dark premium style (cards, soft borders, glow accents) */

:root {
    --si-bg: rgba(0,0,0,.34);
    --si-bg2: rgba(10,20,35,.44);
    --si-card: rgba(255,255,255,.05);
    --si-card2: rgba(255,255,255,.07);
    --si-border: rgba(255,255,255,.10);
    --si-border2: rgba(255,255,255,.12);
    --si-text: rgba(255,255,255,.92);
    --si-muted: rgba(255,255,255,.80);
    --si-muted2: rgba(255,255,255,.70);
    --si-blue: rgba(76,207,255,.35);
    --si-blue-bg: rgba(76,207,255,.10);
    --si-gold: rgba(245,180,0,.35);
    --si-gold-bg: rgba(245,180,0,.10);
    --si-red: rgba(239,68,68,.35);
    --si-red-bg: rgba(239,68,68,.10);
}

.si-wrap {
    padding: 92px 0 44px;
}

.si-panel {
    max-width: 1180px;
    margin: 0 auto;
    padding: 26px;
    border-radius: 16px;
    background: var(--si-bg);
    border: 1px solid var(--si-border);
    backdrop-filter: blur(7px);
    box-shadow: 0 20px 48px rgba(0,0,0,.28);
}

.si-kicker {
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--si-muted2);
    margin-bottom: 6px;
}

.si-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: stretch;
    padding: 14px 10px 24px;
    border-bottom: 1px solid var(--si-border);
    position: relative;
}

/* Banner strip above text (NOT behind text) */
.si-hero::before {
    content: "";
    width: 100%;
    height: 240px;
    margin: -14px -10px 16px;
    border-radius: 16px;
    background:
        radial-gradient(1100px 650px at 18% 12%, rgba(76,207,255,.18), transparent 60%),
        radial-gradient(900px 520px at 82% 8%, rgba(245,180,0,.12), transparent 62%),
        linear-gradient(180deg, rgba(0,0,0,.60), rgba(0,0,0,.34) 42%, rgba(0,0,0,.68)),
        url("/img/pages/streamerprogram.png") center / cover no-repeat;
}

@media (max-width: 768px) {
    .si-hero::before { height: 170px; }
}
.si-hero-left {
    flex: 1.2;
}

.si-hero-right {
    flex: .8;
    display: flex;
}

.si-panel h1 {
    margin: 0 0 10px;
    font-size: 44px;
    letter-spacing: .3px;
    color: var(--si-text);
}

.si-sub {
    margin: 0 0 14px;
    color: var(--si-muted);
    font-size: 16px;
    line-height: 1.55;
}

.si-sub2 {
    margin: 0;
    color: var(--si-muted);
    font-size: 14px;
    line-height: 1.5;
}

.si-cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 12px;
}

.si-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.14);
    color: var(--si-text);
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

    .si-btn:hover {
        transform: translateY(-1px);
        color: var(--si-text);
    }

.si-btn-primary {
    background: linear-gradient(180deg, rgba(76,207,255,.26), rgba(76,207,255,.10));
    border-color: var(--si-blue);
}

    .si-btn-primary:hover {
        background: linear-gradient(180deg, rgba(76,207,255,.34), rgba(76,207,255,.12));
        border-color: rgba(76,207,255,.55);
    }

.si-btn-ghost {
    background: rgba(255,255,255,.04);
}

    .si-btn-ghost:hover {
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.22);
    }

.si-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.si-pill {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: var(--si-text);
    font-weight: 800;
}

.si-pill-blue {
    border-color: var(--si-blue);
    background: var(--si-blue-bg);
}

.si-pill-gold {
    border-color: var(--si-gold);
    background: var(--si-gold-bg);
}

.si-pill-red {
    border-color: var(--si-red);
    background: var(--si-red-bg);
}

.si-mini {
    margin-top: 8px;
    color: var(--si-muted2);
    font-size: 13px;
    line-height: 1.45;
}

.si-mini-hero {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255,255,255,.12);
}

.si-mini-center {
    text-align: center;
}

/* Reward card */
.si-reward-card {
    width: 100%;
    border-radius: 16px;
    padding: 16px;
    background: var(--si-bg2);
    border: 1px solid rgba(76,207,255,.18);
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.si-reward-title {
    font-weight: 950;
    letter-spacing: .4px;
    margin-bottom: 10px;
    color: var(--si-text);
}

.si-list {
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
}

.si-list-tight {
    padding-left: 16px;
}

.si-li-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.si-li-sub {
    display: block;
    margin-top: 2px;
    color: var(--si-muted2);
    font-size: 12.5px;
}

.si-duration {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(76,207,255,.30);
    background: rgba(76,207,255,.10);
    color: var(--si-text);
    font-size: 11.5px;
    font-weight: 900;
    white-space: nowrap;
}

.si-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: var(--si-muted2);
    font-size: 13px;
}

/* Sections */
.si-section {
    padding-top: 18px;
}

.si-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 10px 6px;
}

    .si-section-head h2 {
        margin: 0;
        font-size: 20px;
        color: var(--si-text);
    }

/* Rewards split with image */
.si-rewards-split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
    padding-top: 10px;
}

.si-bubble-preview img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.22);
    box-shadow: 0 18px 38px rgba(0,0,0,.30);
}

/* Cards grid */
.si-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 18px;
}

.si-card {
    border-radius: 14px;
    padding: 16px;
    background: var(--si-card);
    border: 1px solid var(--si-border);
}

.si-card-soft {
    background: var(--si-card2);
    border: 1px solid rgba(255,255,255,.10);
}

.si-card-wide {
    grid-column: 1 / -1;
    margin-top: 14px;
}

.si-card h2 {
    margin: 0 0 10px;
    font-size: 20px;
    color: var(--si-text);
}

.si-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--si-text);
}

.si-card p {
    margin: 0 0 10px;
    color: rgba(255,255,255,.78);
    line-height: 1.6;
}

/* Callouts */
.si-callout {
    margin-top: 12px;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.25);
}

.si-callout-title {
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--si-text);
}

.si-callout-warn {
    border-color: rgba(245,180,0,.28);
    background: rgba(245,180,0,.08);
}

.si-callout-info {
    border-color: rgba(76,207,255,.24);
    background: rgba(76,207,255,.08);
}

.si-callout-danger {
    border-color: rgba(239,68,68,.28);
    background: rgba(239,68,68,.08);
}

/* KPI pills */
.si-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .si-kpis span {
        font-size: 12px;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(255,255,255,.04);
        color: var(--si-text);
        font-weight: 800;
    }

/* Pre */
.si-pre {
    margin: 0;
    padding: 14px;
    border-radius: 12px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.88);
    overflow: auto;
    font-size: 12.5px;
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px) {
    .si-hero {
        flex-direction: column;
    }

    .si-grid {
        grid-template-columns: 1fr;
    }

    .si-rewards-split {
        grid-template-columns: 1fr;
    }
}
/* Page background (fixed) */
.sp-bg {
    position: fixed;
    inset: 0;
    z-index: -3;
    background: url("/img/bg/2.png") center / cover no-repeat;
    transform: scale(1.02);
}

    /* Dark overlays so text stays readable + premium look */
.sp-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 700px at 20% 10%, rgba(76,207,255,.18), transparent 55%), radial-gradient(900px 650px at 80% 20%, rgba(245,180,0,.10), transparent 60%), linear-gradient(180deg, var(--aa-page-overlay-top, rgba(7, 10, 18, .50)), var(--aa-page-overlay-mid, rgba(7, 10, 18, .62)) 45%, var(--aa-page-overlay-bottom, rgba(7, 10, 18, .80)));
    backdrop-filter: blur(var(--aa-page-backdrop-blur, 2px));
    -webkit-backdrop-filter: blur(var(--aa-page-backdrop-blur, 2px));
}

/* Ensure content stays above background */
.si-wrap {
    position: relative;
    z-index: 0;
}
