/* ============================================
   GameReach — Liquid Glass Design System
   Cloned from gamingvc-immutable.netlify.app
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

:root {
    /* Core palette — warm amber/gold */
    --gold: #F5C842;
    --gold-dim: rgba(245, 200, 66, 0.18);
    --blue: #93C5FD;

    /* Text hierarchy */
    --text: #FFFFFF;
    --text-2: rgba(255, 255, 255, 0.75);
    --text-3: rgba(255, 255, 255, 0.45);

    /* Glass surfaces */
    --glass: rgba(255, 255, 255, 0.07);
    --glass-hi: rgba(255, 255, 255, 0.12);
    --glass-hv: rgba(255, 255, 255, 0.11);

    /* Edges & dividers */
    --edge: rgba(255, 255, 255, 0.14);
    --edge-in: rgba(255, 255, 255, 0.22);
    --divider: rgba(255, 255, 255, 0.09);

    /* Platform colors */
    --youtube: #FF4444;
    --tiktok: #00F2EA;
    --twitch: #B084FF;

    /* Layout */
    --radius: 14px;
    --radius-sm: 10px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background: #0C0700;
}

/* ── Scene wrapper with noise texture ────── */
.scene {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #0C0700;
}

.scene::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    background-size: 128px;
    pointer-events: none;
    z-index: 1;
}

/* ── Ambient orbs ────────────────────────── */
.orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    pointer-events: none;
}

.orb-1 {
    width: 1000px; height: 880px;
    background: radial-gradient(circle, rgb(212,120,10) 0%, rgb(168,80,8) 60%, transparent 100%);
    opacity: 0.72; top: -320px; left: -280px; filter: blur(100px);
}

.orb-2 {
    width: 700px; height: 650px;
    background: radial-gradient(circle, rgb(232,160,32) 0%, rgb(192,90,8) 70%, transparent 100%);
    opacity: 0.55; top: -80px; right: -180px; filter: blur(110px);
}

.orb-3 {
    width: 900px; height: 700px;
    background: radial-gradient(circle, rgb(200,144,10) 0%, rgb(144,80,16) 65%, transparent 100%);
    opacity: 0.38; bottom: -200px; left: 30%; filter: blur(130px);
}

.orb-4 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgb(180,100,8) 0%, rgb(112,24,8) 70%, transparent 100%);
    opacity: 0.45; top: 40%; right: 10%; filter: blur(100px);
}

.orb-5 {
    width: 600px; height: 500px;
    background: radial-gradient(circle, rgb(160,120,20) 0%, rgb(100,60,10) 65%, transparent 100%);
    opacity: 0.28; top: 60%; left: -100px; filter: blur(120px);
}

/* ── Glass utility ───────────────────────── */
.glass {
    background: var(--glass);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid var(--edge);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.3), inset 0 1px 0 var(--edge-in);
}

/* ── Container ───────────────────────────── */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ── Scrollbar ───────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.22); }

/* ── Hero ────────────────────────────────── */
.hero {
    position: relative;
    padding: 240px 0 40px;
    z-index: 2;
}

.hero-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.brand-name {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo svg rect {
    fill: var(--gold);
}

.hero-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.15;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-2);
    max-width: 700px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--gold);
    font-weight: 600;
}

/* ── Filters ─────────────────────────────── */
.filters-section {
    padding: 0 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Sticky backdrop for filter section */
.filters-section::before {
    content: '';
    position: absolute;
    inset: -10px -9999px;
    background: rgba(12, 7, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: -1;
}

.filters-wrapper {
    background: var(--glass);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid var(--edge);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 var(--edge-in);
}

.search-box {
    position: relative;
    margin-bottom: 16px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 48px;
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--edge);
    border-radius: 100px;
    color: var(--text);
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s, background 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--edge-in);
    background: var(--glass-hi);
}

.search-box input::placeholder {
    color: var(--text-3);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.filter-group label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 9.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-3);
    margin-bottom: 6px;
}

.filter-group select {
    width: 100%;
    padding: 10px 32px 10px 14px;
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--edge);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.2s, background 0.2s;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--edge-in);
    background: var(--glass-hi);
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-count {
    font-size: 14px;
    color: var(--text-3);
    flex: 1;
}

.btn-reset {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--edge);
    border-radius: 100px;
    color: var(--text-2);
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-reset:hover {
    background: var(--glass-hi);
    border-color: var(--edge-in);
    color: var(--text);
}

.btn-export {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--gold);
    border: none;
    border-radius: var(--radius-sm);
    color: #1a1200;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 12px rgba(245, 200, 66, 0.3);
}

.btn-export:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 200, 66, 0.4);
}

.btn-export svg {
    stroke: #1a1200;
}

/* ── Creator Cards ───────────────────────── */
.creators-section {
    padding: 0 0 60px;
    position: relative;
    z-index: 2;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.creator-card {
    background: var(--glass);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid var(--edge);
    border-radius: var(--radius);
    padding: 20px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.3), inset 0 1px 0 var(--edge-in);
    animation: cardIn 0.35s ease-out both;
}

.creator-card:hover {
    border-color: rgba(245,200,66,0.25);
    background: var(--glass-hv);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 4px 12px rgba(245,200,66,0.06), inset 0 1px 0 var(--edge-in);
}

/* Stagger card animations */
.creator-card:nth-child(1) { animation-delay: 0.02s; }
.creator-card:nth-child(2) { animation-delay: 0.04s; }
.creator-card:nth-child(3) { animation-delay: 0.06s; }
.creator-card:nth-child(4) { animation-delay: 0.08s; }
.creator-card:nth-child(5) { animation-delay: 0.1s; }
.creator-card:nth-child(6) { animation-delay: 0.12s; }

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245,200,66,0.3) 0%, rgba(212,120,10,0.4) 100%);
    border: 1px solid rgba(245,200,66,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-fallback {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.card-info {
    flex: 1;
    min-width: 0;
}

.card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-handle {
    font-size: 13px;
    color: var(--text-3);
    font-family: 'DM Mono', monospace;
}

.card-followers {
    text-align: right;
    flex-shrink: 0;
}

.card-followers .number {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'DM Mono', monospace;
}

.card-followers .label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.card-description {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Partnership Evidence Badge ──────────── */
.card-partnership {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 200, 66, 0.08);
    border: 1px solid rgba(245, 200, 66, 0.18);
    border-radius: 100px;
    padding: 5px 12px;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.4;
}

.card-partnership svg {
    flex-shrink: 0;
    stroke: var(--gold);
    fill: rgba(245, 200, 66, 0.3);
}

/* ── AI Overview ─────────────────────────── */
.card-ai-overview {
    background: rgba(245, 200, 66, 0.06);
    border: 1px solid rgba(245, 200, 66, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-bottom: 14px;
}

.ai-overview-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Mono', monospace;
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--gold);
    margin-bottom: 5px;
}

.ai-overview-label svg {
    opacity: 0.8;
    stroke: var(--gold);
}

.card-ai-overview p {
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.55;
    margin: 0;
}

/* ── Platform badges ─────────────────────── */
.card-platforms {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.platform-badge:hover {
    opacity: 0.85;
}

.platform-badge.youtube {
    background: rgba(255,68,68,0.15);
    color: var(--youtube);
    border-color: rgba(255,68,68,0.25);
}

.platform-badge.tiktok {
    background: rgba(0,242,234,0.12);
    color: var(--tiktok);
    border-color: rgba(0,242,234,0.2);
}

.platform-badge.twitch {
    background: rgba(176,132,255,0.15);
    color: var(--twitch);
    border-color: rgba(176,132,255,0.25);
}

/* ── Tags ────────────────────────────────── */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.genre-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
    letter-spacing: 0.01em;
    line-height: 1.5;
    white-space: nowrap;
    background: rgba(160,120,255,0.2);
    color: rgb(196,170,255);
    border: 1px solid rgba(160,120,255,0.25);
}

.region-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
    letter-spacing: 0.01em;
    line-height: 1.5;
    white-space: nowrap;
    background: rgba(80,150,255,0.2);
    color: rgb(147,197,253);
    border: 1px solid rgba(80,150,255,0.25);
}

/* ── Card Footer ─────────────────────────── */
.card-footer {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-contact {
    flex: 1;
    padding: 10px 14px;
    background: var(--gold);
    border: none;
    border-radius: var(--radius-sm);
    color: #1a1200;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 12px rgba(245, 200, 66, 0.25);
}

.btn-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 200, 66, 0.35);
}

.btn-channel {
    padding: 10px 14px;
    background: transparent;
    border: 1px solid var(--edge);
    border-radius: var(--radius-sm);
    color: var(--text-2);
    font-size: 13px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-channel:hover {
    background: var(--glass-hi);
    border-color: var(--edge-in);
    color: var(--text);
}

/* ── Load More ───────────────────────────── */
.load-more-wrapper {
    text-align: center;
    margin-top: 32px;
}

.btn-load-more {
    padding: 14px 40px;
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--edge);
    border-radius: 100px;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3), inset 0 1px 0 var(--edge-in);
}

.btn-load-more:hover {
    background: var(--glass-hi);
    border-color: rgba(245,200,66,0.25);
    box-shadow: 0 4px 20px rgba(245,200,66,0.08), inset 0 1px 0 var(--edge-in);
}

/* ── No Results ──────────────────────────── */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-3);
}

.no-results svg {
    margin-bottom: 16px;
    stroke: var(--text-3);
}

.no-results p {
    font-size: 15px;
}

/* ── Footer ──────────────────────────────── */
.footer {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid var(--divider);
    color: var(--text-3);
    font-size: 13px;
    position: relative;
    z-index: 2;
}

.footer-note {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.6;
}

/* ── Animations ──────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .filter-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .creators-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 32px 0 24px;
    }
    .brand-name {
        font-size: 24px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .hero-heading {
        font-size: 28px;
    }
    .filter-row {
        grid-template-columns: 1fr;
    }
    .creators-grid {
        grid-template-columns: 1fr;
    }
    .filter-actions {
        flex-wrap: wrap;
    }
    .results-count {
        width: 100%;
    }
    .orb {
        transform: scale(0.5);
    }
    .onboarding-card {
        margin: 20px;
        padding: 32px 24px;
    }
    .onboarding-heading {
        font-size: 24px;
    }
}

/* ── Steam Onboarding Overlay ────────────── */
.steam-onboarding {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 7, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.steam-onboarding.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.onboarding-card {
    background: var(--glass);
    border: 1px solid var(--edge);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 1px 0 var(--edge-in);
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
}

.onboarding-step {
    display: none;
}

.onboarding-step.active {
    display: block;
}

.onboarding-logo {
    margin-bottom: 20px;
}

.onboarding-logo svg {
    width: 48px;
    height: 48px;
}

.onboarding-heading {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.2;
}

.onboarding-subheading {
    font-size: 15px;
    color: var(--text-2);
    margin-bottom: 24px;
    line-height: 1.6;
}

.steam-input-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.steam-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
    pointer-events: none;
}

.steam-input {
    width: 100%;
    padding: 14px 14px 14px 42px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--edge);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.steam-input:focus {
    border-color: var(--gold);
}

.steam-input::placeholder {
    color: var(--text-3);
}

.onboarding-error {
    color: #FF6B6B;
    font-size: 13px;
    margin-bottom: 12px;
    min-height: 20px;
    display: none;
}

.onboarding-error.visible {
    display: block;
}

.btn-steam-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--gold);
    color: #1a1200;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-steam-submit:hover {
    background: #ffd84a;
    transform: translateY(-1px);
}

.btn-steam-submit:active {
    transform: translateY(0);
}

.btn-steam-submit .btn-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-skip {
    display: inline-block;
    margin-top: 16px;
    color: var(--text-3);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-skip:hover {
    color: var(--text);
    text-decoration: underline;
}

.onboarding-game-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.onboarding-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.onboarding-genre-tag {
    padding: 4px 12px;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Fit Score Badge ─────────────────────── */
.fit-score-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.fit-score-badge.high {
    background: var(--gold);
    color: #1a1200;
}

.fit-score-badge.medium {
    background: rgba(245, 200, 66, 0.2);
    color: var(--gold);
}

.fit-score-badge.low {
    background: var(--glass);
    color: var(--text-3);
}

.card-match-context {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px 0 0;
    margin-top: 8px;
    margin-bottom: 14px;
    border-top: 1px solid var(--divider);
}

.card-match-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-3);
    width: 100%;
    margin-bottom: 2px;
}

.match-genre-tag {
    padding: 2px 8px;
    background: rgba(245, 200, 66, 0.12);
    color: var(--gold);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* ── Steam Active Banner ─────────────────── */
.steam-active-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--gold-dim);
    border: 1px solid rgba(245, 200, 66, 0.25);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--gold);
}

.steam-active-banner strong {
    color: var(--text);
}

.steam-banner-clear {
    background: none;
    border: none;
    color: var(--text-3);
    font-size: 18px;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
    transition: color 0.2s;
}

.steam-banner-clear:hover {
    color: var(--text);
}

/* ── Growth Audit CTA Popup ─────────────── */
.cta-popup {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 420px;
    max-width: calc(100vw - 40px);
    background: rgba(28, 16, 2, 0.72);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--edge);
    border-radius: var(--radius);
    box-shadow: 0 12px 48px rgba(0,0,0,0.65), inset 0 1px 0 var(--edge-in), 0 0 0 1px rgba(245,200,66,0.06);
    padding: 20px 22px 20px 22px;
    z-index: 9000;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1), transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.cta-popup.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cta-popup.dismissed {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.cta-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-3);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 2px 6px;
    transition: color 0.2s;
}

.cta-popup-close:hover {
    color: var(--text);
}

.cta-popup-body {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-popup-text {
    flex: 1;
    min-width: 0;
}

.cta-popup-headline {
    margin: 0 0 5px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--text);
    padding-right: 20px;
}

.cta-popup-headline strong {
    color: var(--gold);
    font-weight: 700;
}

.cta-popup-sub {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.55;
    color: var(--text-3);
}

.cta-popup-btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 11px 16px;
    background: var(--gold);
    color: #1a1200;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(245,200,66,0.35);
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.cta-popup-btn:hover {
    background: #ffd84a;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(245,200,66,0.45);
}

@media (max-width: 500px) {
    .cta-popup {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
    }
    .cta-popup-body {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-popup-btn {
        width: 100%;
        text-align: center;
    }
}
