/* ============================================
   Fast Sniper - Main Stylesheet
   Palette: #000000, #ff8830, #d1b8a0, #aeced2, #cbdcdf
   ============================================ */

:root {
    --color-black:      #000000;
    --color-orange:     #ff8830;
    --color-sand:       #d1b8a0;
    --color-ice-blue:   #aeced2;
    --color-light-blue: #cbdcdf;

    --bg-primary:       #000000;
    --bg-card:          rgba(203, 220, 223, 0.05);
    --bg-card-hover:    rgba(203, 220, 223, 0.10);
    --border-subtle:    rgba(174, 206, 210, 0.15);
    --text-primary:     #cbdcdf;
    --text-secondary:   #d1b8a0;
    --text-muted:       rgba(209, 184, 160, 0.5);
    --accent:           #ff8830;
    --accent-hover:     #ff9d52;
}

/* ---- Reset ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---- Base ---- */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 60px;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.85;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: color 0.2s, background-color 0.2s;
}

.nav-link:hover {
    color: var(--accent);
    background-color: rgba(255, 136, 48, 0.08);
}

.nav-link.active {
    color: var(--accent);
    background-color: rgba(255, 136, 48, 0.12);
}

.nav-link.disabled {
    opacity: 0.35;
    pointer-events: none;
}

.nav-link.locked {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-divider {
    color: var(--text-muted);
    font-size: 0.75rem;
    user-select: none;
}

/* ============================================
   CONTENT
   ============================================ */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* ============================================
   HERO (Landing Page)
   ============================================ */
.hero {
    text-align: center;
    padding: 6rem 1rem 4rem;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 136, 48, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: 0.75rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 136, 48, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    border-color: var(--color-ice-blue);
    background: rgba(174, 206, 210, 0.08);
    transform: translateY(-1px);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-bottom: 4rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(174, 206, 210, 0.25);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   PAGE SECTIONS (Sniper, Wallets, Coming Soon)
   ============================================ */
.page-section {
    padding: 4rem 1rem;
    text-align: center;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.page-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

.coming-soon .coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ============================================
   SNIPER TOOLBAR (Chain & Dex selectors)
   ============================================ */
.sniper-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    padding-top: 0.5rem;
    position: fixed;
    left: 2rem;
    top: 76px;
    z-index: 50;
}

.selector {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.selector-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
    white-space: nowrap;
    user-select: none;
}

.selector-btn:hover {
    border-color: var(--accent);
    background: rgba(255, 136, 48, 0.06);
}

.selector-btn.active {
    border-color: var(--accent);
    color: var(--accent);
}

.selector-menu {
    position: absolute;
    top: 0;
    left: calc(100% + 0.5rem);
    display: none;
    flex-wrap: nowrap;
    gap: 0.25rem;
    padding: 0.35rem 0.5rem;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    backdrop-filter: blur(12px);
    z-index: 50;
    white-space: nowrap;
}

.selector-menu.open {
    display: flex;
}

.selector-option {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
    white-space: nowrap;
    user-select: none;
}

.selector-option:hover {
    background: rgba(255, 136, 48, 0.12);
    color: var(--accent);
}

.selector-option.selected {
    background: rgba(255, 136, 48, 0.18);
    color: var(--accent);
}

/* ============================================
   TOKEN ADDRESS INPUT
   ============================================ */
.token-input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
}

.token-input {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    width: 420px;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
}

.token-input::placeholder {
    color: var(--text-muted);
}

.token-input:focus {
    border-color: var(--accent);
}

.token-input.valid {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================
   SNIPE BUTTON
   ============================================ */
.snipe-btn {
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background-color 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.snipe-btn:hover {
    border-color: var(--accent);
    background: rgba(255, 136, 48, 0.1);
    transform: scale(1.05);
}

.snipe-btn:active {
    transform: scale(0.95);
}

/* ============================================
   STOP BUTTON
   ============================================ */
.stop-btn {
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 0.55rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.03em;
    transition: border-color 0.2s, background-color 0.2s, transform 0.15s, opacity 0.25s;
    flex-shrink: 0;
}

.stop-btn svg {
    color: #ef4444;
}

.stop-btn:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    transform: scale(1.05);
}

.stop-btn:active {
    transform: scale(0.95);
}

.stop-btn.hidden {
    display: none;
}

/* ============================================
   SNIPER MODE SELECTOR (fixed bottom-left)
   ============================================ */
.sniper-mode {
    position: fixed;
    right: 2rem;
    top: 76px;
    z-index: 50;
}

.sniper-mode .selector-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mode-icon {
    flex-shrink: 0;
}

.selector-menu-left {
    left: auto !important;
    right: calc(100% + 0.5rem);
}

/* ============================================
   TOAST NOTIFICATIONS (stackable)
   ============================================ */
.toast-container {
    position: fixed;
    top: 76px;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 200;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s, transform 0.3s;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.hide {
    opacity: 0;
    transform: translateX(100%);
}

.toast-success {
    background: #15803d;
}

.toast-error {
    background: #b91c1c;
}

.toast-warning {
    background: #c97a2e;
}

.toast-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem;
    border-radius: 4px;
    transition: color 0.15s, background-color 0.15s;
}

.toast-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-transition.active {
    pointer-events: all;
    opacity: 1;
}

.transition-gradient {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0;
}

.transition-gradient-left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 136, 48, 0.55) 0%, rgba(255, 136, 48, 0.35) 25%, rgba(255, 136, 48, 0.15) 50%, rgba(80, 80, 80, 0.06) 75%, transparent 100%);
}

.transition-gradient-right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 136, 48, 0.55) 0%, rgba(255, 136, 48, 0.35) 25%, rgba(255, 136, 48, 0.15) 50%, rgba(80, 80, 80, 0.06) 75%, transparent 100%);
}

/* Phase 1: entrance (click → navigate) */
.page-transition.entering .transition-gradient {
    animation: gradientIn 0.6s ease-out forwards;
}

.page-transition.entering .transition-bolt {
    animation: boltIn 0.5s 0.1s ease-out forwards;
}

/* Phase 2: exit (page loaded → fade out) */
.page-transition.exiting .transition-gradient {
    opacity: 1;
    animation: gradientOut 0.6s 0.2s ease-in forwards;
}

.page-transition.exiting .transition-bolt {
    transform: scale(1);
    opacity: 1;
    animation: boltOut 0.5s 0.1s ease-in forwards;
}

.transition-bolt {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    transform: scale(0);
    opacity: 0;
}

@keyframes gradientIn {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes gradientOut {
    0%   { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes boltIn {
    0%   { transform: scale(0); opacity: 0; }
    70%  { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes boltOut {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.5); opacity: 0; }
}

/* ============================================
   MONITOR PAGE
   ============================================ */
.monitor-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse at center, rgba(255, 136, 48, 0.12) 0%, rgba(255, 136, 48, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Two-panel layout: conlaunch | bankr pending */
.monitor-panels {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;   /* graceful on narrow screens */
}

.monitor-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Keep old .monitor-container for back-compat */
.monitor-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.monitor-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.monitor-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.monitor-title a:hover {
    color: var(--accent);
}

.monitor-card {
    width: 340px;
    min-height: 420px;
    max-height: 70vh;
    border: 1px solid #ffffff;
    border-radius: 12px;
    background: transparent;
    overflow-y: auto;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.monitor-card::-webkit-scrollbar {
    width: 4px;
}

.monitor-card::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.monitor-empty {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 2rem 0;
}

/* Token entry inside monitor card */
.token-entry {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.6rem;
    animation: tokenFadeIn 0.3s ease-out;
}

.token-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.token-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.token-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.token-ca-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.4rem;
}

.token-ca-label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.token-ca-address {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.token-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.15s;
    flex-shrink: 0;
}

.token-copy-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.token-copy-btn.copied {
    color: #22c55e;
}

.token-gmgn-btn {
    display: inline-block;
    background: #22c55e;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.15s;
    cursor: pointer;
}

.token-gmgn-btn:hover {
    background: #16a34a;
}

.token-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.token-detected-time {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-family: monospace;
    letter-spacing: 0.02em;
}

@keyframes tokenFadeIn {
    0%   { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Real-time new token highlight */
.token-entry-new {
    animation: tokenHighlight 2s ease-out;
}

@keyframes tokenHighlight {
    0%   { background: rgba(255, 136, 48, 0.35); transform: translateY(-8px); opacity: 0; }
    15%  { background: rgba(255, 136, 48, 0.25); transform: translateY(0); opacity: 1; }
    100% { background: transparent; }
}

/* ============================================
   BANKR PENDING LAUNCHES (inside monitor page)
   ============================================ */

/* Individual launch card entry */
.bankr-entry {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.7rem;
    animation: tokenFadeIn 0.3s ease-out;
}

.bankr-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Row 1: name + symbol + badge */
.bankr-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.35rem;
    gap: 0.5rem;
}

.bankr-name-row {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}

.bankr-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bankr-symbol {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* PENDING status badge — yellow/gold, matches design */
.bankr-badge {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    background: #f59e0b;
    color: #000000;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
}

/* DEPLOYED badge — green */
.bankr-badge-deployed {
    background: #22c55e;
    color: #000000;
}

/* Other/unknown status badge — neutral grey */
.bankr-badge-other {
    background: rgba(174, 206, 210, 0.35);
    color: var(--text-secondary);
}

/* ERROR badge — red */
.bankr-badge-error {
    background: #ef4444;
    color: #ffffff;
}

/* CA not yet available — "Deploying…" in orange */
.bankr-ca-deploying {
    color: var(--color-orange);
    font-style: italic;
}

/* From / To meta rows */
.bankr-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.35rem;
}

.bankr-meta-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.bankr-meta-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    width: 2.4rem;
    flex-shrink: 0;
}

.bankr-meta-value {
    font-size: 0.72rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bankr-handle {
    color: var(--color-ice-blue);
    font-weight: 500;
}

/* Clickable @handle — links to X/Twitter profile */
.bankr-user-link {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 500;
}
.bankr-user-link:hover {
    text-decoration: underline;
}

/* CA row (reuses monitor token-ca-row styles) */
.bankr-ca-row {
    margin-bottom: 0.4rem;
}

/* ── Filter button ───────────────────────────────────────────────────────── */

.bankr-pending-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.bankr-filter-btn {
    background: none;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 5px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    line-height: 0;
}
.bankr-filter-btn:hover {
    color: var(--color-orange);
    border-color: rgba(255,136,48,0.35);
    background: rgba(255,136,48,0.07);
}
.bankr-filter-btn.active {
    color: var(--color-orange);
    border-color: rgba(255,136,48,0.5);
    background: rgba(255,136,48,0.1);
}

/* ── Filter overlay wrapper ──────────────────────────────────────────────── */

.bankr-pending-wrap {
    position: relative;
    width: 340px;    /* matches .monitor-card width */
}

/* The overlay sits on top of the card, starts invisible */
.bankr-filter-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    border-radius: 12px;
    overflow: hidden;
}
.bankr-filter-overlay.open {
    pointer-events: all;
}

/* Two bars: one from top, one from bottom */
.bankr-filter-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    background: rgba(14, 14, 14, 0.97);
    transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.bankr-filter-bar-top    { top: 0;    border-radius: 12px 12px 0 0; }
.bankr-filter-bar-bottom { bottom: 0; border-radius: 0 0 12px 12px; }

.bankr-filter-overlay.open .bankr-filter-bar-top,
.bankr-filter-overlay.open .bankr-filter-bar-bottom { height: 50%; }

/* Filter form — centred, fades in after bars close */
.bankr-filter-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 21;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease 0.28s;
}
.bankr-filter-overlay.open .bankr-filter-center {
    opacity: 1;
    pointer-events: all;
}

.bankr-filter-box {
    width: 82%;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.bankr-filter-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 0.3rem;
    color: var(--color-orange);
}
.bankr-filter-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.bankr-filter-input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 7px;
    color: var(--text-primary);
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
    outline: none;
    transition: border-color 0.2s;
}
.bankr-filter-input:focus {
    border-color: rgba(255,136,48,0.55);
    background: rgba(255,255,255,0.08);
}
.bankr-filter-input::placeholder {
    color: rgba(255,255,255,0.22);
}

/* ── Filter separator + BLACKLIST heading ───────────────────────────────── */

.bankr-filter-sep {
    width: 100%;
    height: 1px;
    background: var(--color-orange);
    opacity: 0.45;
    margin: 0.75rem 0 0.6rem;
}

.bankr-blacklist-heading {
    color: var(--color-orange) !important;
    opacity: 0.8;
    font-size: 0.75rem !important;
    margin-bottom: 0.2rem !important;
}

/* ── Token highlight when filter matches ─────────────────────────────────── */

.bankr-entry.bankr-entry-match {
    background: rgba(60, 160, 220, 0.13);
    border-color: rgba(60, 160, 220, 0.50);
}

/* Highlighted text inside matched tokens */
.bankr-entry.bankr-entry-match .filter-hl {
    color: #5bc8f0;
    font-weight: 700;
}

/* Highlighted handle (from / to) */
.bankr-entry.bankr-entry-match .bankr-handle.filter-handle-hl {
    color: #5bc8f0;
    font-weight: 700;
}

.bankr-ca {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* Bottom row: BANKR button + time */
.bankr-bottom-row {
    align-items: center;
}


/* Tweet / X link button */
.bankr-tweet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1;
    padding: 0.22rem 0.4rem;
    border-radius: 4px;
    background: rgba(174, 206, 210, 0.15);
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.bankr-tweet-btn:hover {
    background: rgba(174, 206, 210, 0.30);
    color: var(--color-ice-blue);
}

/* "From:" handle becomes a clickable tweet link */
.bankr-tweet-link {
    color: var(--color-orange);
    text-decoration: none;
}

.bankr-tweet-link:hover {
    text-decoration: underline;
}

/* Placeholder when no CA yet (greyed-out button) */
.bankr-no-ca-btn {
    display: inline-block;
    background: rgba(245, 158, 11, 0.25);
    color: rgba(0, 0, 0, 0.45);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    cursor: default;
}

.bankr-time-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.08rem;
}

.bankr-ago {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* New launch highlight — yellow flash (matches BANKR brand) */
.bankr-entry-new {
    animation: bankrHighlight 2s ease-out;
}

/* ── Tax badge (status badge + tax badge stacked in top-right) ─────────────── */

.bankr-badge-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.22rem;
    flex-shrink: 0;
    align-self: flex-start;
}

.bankr-tax-badge {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    white-space: nowrap;
}

/* Tax > 15%: red — auction active, high fee */
.bankr-tax-badge-active {
    background: rgba(239, 68, 68, 0.18);
    color: #ef4444;
}

/* Tax ≤ 15%: amber — fee falling, approaching final */
.bankr-tax-badge-warning {
    background: rgba(161, 98, 7, 0.25);
    color: #fbbf24;
}

/* Tax = 1.2% final: gray — auction over */
.bankr-tax-badge-final {
    background: rgba(200, 200, 200, 0.12);
    color: #9ca3af;
}

@keyframes bankrHighlight {
    0%   { background: rgba(245, 158, 11, 0.30); transform: translateY(-8px); opacity: 0; }
    15%  { background: rgba(245, 158, 11, 0.20); transform: translateY(0);     opacity: 1; }
    100% { background: transparent; }
}

/* ============================================
   CHECKER PAGE
   ============================================ */
.checker-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    position: relative;
    z-index: 1;
}

.checker-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.checker-input-row {
    margin-bottom: 1rem;
}

.checker-input {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    width: 420px;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
}

.checker-input::placeholder {
    color: var(--text-muted);
}

.checker-input:focus {
    border-color: var(--accent);
}

.checker-btn {
    background: #22c55e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    margin-bottom: 1.5rem;
}

.checker-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.checker-btn:active {
    transform: scale(0.97);
}

.checker-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.checker-results {
    text-align: left;
    width: 340px;
    animation: tokenFadeIn 0.3s ease-out;
}

.checker-results.hidden {
    display: none;
}

.checker-results-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.checker-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
}

.checker-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.checker-value {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: monospace;
}

.checker-error {
    color: #ef4444;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

.checker-error.hidden {
    display: none;
}

.checker-loading {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.checker-loading.hidden {
    display: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* --- Why? Button & Reasons --- */
.checker-row {
    position: relative;
}

.checker-why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    padding: 0;
    background: transparent;
    color: var(--color-sand);
    border: 1px solid var(--color-sand);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.checker-why-btn:hover {
    opacity: 1;
    color: var(--accent);
    border-color: var(--accent);
}

.checker-reasons {
    margin: 0.3rem 0 0.6rem 1rem;
    padding: 0.5rem 0.8rem;
    background: rgba(174, 206, 210, 0.05);
    border-left: 2px solid var(--color-sand);
    border-radius: 0 4px 4px 0;
}

.checker-reasons.hidden {
    display: none;
}

.checker-reason-item {
    color: var(--color-sand);
    font-size: 0.78rem;
    line-height: 1.5;
    padding: 0.15rem 0;
}

.checker-reason-item::before {
    content: "\2192 ";
    color: var(--accent);
}

/* Top 10 holders breakdown */
.checker-top10-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: monospace;
}
.checker-top10-item::before { content: none; }
.top10-rank {
    color: var(--color-ice-blue);
    font-size: 0.72rem;
    min-width: 2rem;
    text-align: right;
}
.top10-wallet {
    color: var(--color-sand);
    flex: 1;
    font-size: 0.78rem;
}
.top10-pct {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 0.78rem;
    min-width: 4rem;
    text-align: right;
}

/* --- Nansen Section --- */
.checker-nansen-section.hidden { display: none; }

.checker-divider {
    border-top: 1px solid var(--border-subtle);
    margin: 0.8rem 0;
}

.checker-nansen-section .checker-label {
    color: var(--color-ice-blue);
}

/* --- Proof Banners (Jito confirmed, Dev buyer) --- */
.checker-proof-banner {
    width: 100%;
    padding: 0.6rem 1rem;
    margin-bottom: 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
}

.checker-proof-banner.hidden {
    display: none;
}

.checker-jito-banner {
    background: rgba(220, 38, 38, 0.18);
    border: 1px solid rgba(220, 38, 38, 0.7);
    color: #ff6b6b;
}

.checker-dev-banner {
    background: rgba(255, 136, 48, 0.15);
    border: 1px solid rgba(255, 136, 48, 0.6);
    color: var(--color-orange);
}

.checker-transfer-banner {
    background: rgba(220, 38, 38, 0.22);
    border: 1px solid rgba(220, 38, 38, 0.85);
    color: #ff4444;
    animation: transfer-pulse 1.8s ease-in-out infinite;
}

@keyframes transfer-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
    50%       { box-shadow: 0 0 8px 2px rgba(220, 38, 38, 0.35); }
}

/* --- AI Suggest Button --- */
.ai-suggest-btn {
    display: block;
    margin: 1.5rem auto 0;
    padding: 0.6rem 2rem;
    background: transparent;
    color: var(--color-ice-blue);
    border: 1px solid var(--color-ice-blue);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.ai-suggest-btn:hover {
    background: rgba(174, 206, 210, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

/* --- AI Confirmation Modal --- */
.ai-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.ai-modal.hidden {
    display: none;
}

.ai-modal-box {
    position: relative;
    background: #111;
    border: 1px solid var(--color-ice-blue);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    text-align: center;
    max-width: 380px;
    width: 90%;
}

.ai-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.7rem;
    background: transparent;
    border: none;
    color: var(--color-sand);
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    line-height: 1;
    padding: 0.2rem 0.4rem;
}

.ai-modal-close:hover {
    opacity: 1;
    color: #fff;
}

.ai-modal-question {
    color: var(--color-sand);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.ai-modal-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.ai-modal-btn {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    border: 2px solid;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-modal-btn.ai-yes {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #22c55e;
}

.ai-modal-btn.ai-yes:hover {
    background: rgba(34, 197, 94, 0.25);
}

.ai-modal-btn.ai-no {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.ai-modal-btn.ai-no:hover {
    background: rgba(239, 68, 68, 0.25);
}

.ai-modal-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

.ai-modal-status {
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-weight: 600;
}

.ai-modal-status.hidden {
    display: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .header-right {
        gap: 0;
    }

    .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }

    .nav-divider {
        display: none;
    }
}

@media (max-width: 600px) {
    /* ── Viral Tracker ── */
    .viral-card {
        width: calc(100vw - 1.5rem);
        min-height: 280px;
        max-height: 62vh;
    }

    .viral-container {
        padding-top: 1rem;
    }

    .tweet-name {
        max-width: 140px;
    }

    .tweet-metrics {
        gap: 0.65rem;
    }

    /* ── Monitor panels (bankr/conlaunch stacking) ── */
    .monitor-card {
        width: calc(100vw - 1.5rem);
    }

    .bankr-pending-wrap,
    .bankr-deployed-wrap {
        width: calc(100vw - 1.5rem);
    }

    /* ── Header on very small screens ── */
    .logo {
        font-size: 1.1rem;
    }

    .nav-link {
        font-size: 0.72rem;
        padding: 0.4rem 0.35rem;
    }
}

/* ── Monitor topbar (anchors the Hidden X button top-left) ──────────────── */

.monitor-topbar {
    height: 0;
    padding: 0;
    overflow: visible;   /* fixed child (.hidden-mgr) still renders */
}

/* ── Hidden panels manager ───────────────────────────────────────────────── */

.hidden-mgr {
    display: none;         /* JS sets to inline-block when count > 0 */
    position: fixed;
    top: 68px;
    left: 1.5rem;
    z-index: 99;
}

.hidden-mgr-btn {
    background: rgba(174, 206, 210, 0.07);
    border: 1px solid rgba(174, 206, 210, 0.2);
    color: var(--text-secondary);
    border-radius: 6px;
    padding: 0.28rem 0.7rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.02em;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.hidden-mgr-btn:hover {
    border-color: rgba(174, 206, 210, 0.4);
    background: rgba(174, 206, 210, 0.12);
    color: var(--text-primary);
}

/* Dropdown — plain, no background, just white names + restore button */
.hidden-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 200;
    display: none;
    flex-direction: column;
    gap: 0.05rem;
    padding: 0.2rem 0;
}
.hidden-dropdown.open {
    display: flex;
}

.hidden-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.12rem 0;
}

.hidden-item-name {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
}

.hidden-restore-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.12rem;
    cursor: pointer;
    line-height: 0;
    border-radius: 3px;
    transition: color 0.15s;
    flex-shrink: 0;
}
.hidden-restore-btn:hover {
    color: #ffffff;
}

/* ── Panel hide button (eye-slash beside each monitor title) ─────────────── */

.panel-hide-btn {
    background: none;
    border: 1px solid transparent;
    color: var(--text-muted);
    border-radius: 5px;
    padding: 0.2rem;
    cursor: pointer;
    line-height: 0;
    flex-shrink: 0;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.panel-hide-btn:hover {
    color: var(--text-primary);
    border-color: rgba(174, 206, 210, 0.25);
    background: rgba(174, 206, 210, 0.07);
}

/* ── Panel refresh button (absolute, bottom-right of card wrap) ──────────── */

.panel-refresh-btn {
    position: absolute;
    bottom: 0.55rem;
    right: 0.55rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(174, 206, 210, 0.18);
    color: var(--text-muted);
    border-radius: 6px;
    padding: 0.28rem;
    cursor: pointer;
    line-height: 0;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.panel-refresh-btn:hover {
    color: var(--text-primary);
    border-color: rgba(174, 206, 210, 0.38);
    background: rgba(174, 206, 210, 0.08);
}
.panel-refresh-btn svg {
    display: block;
}
.panel-refresh-btn.spinning svg {
    animation: panel-refresh-spin 0.5s linear;
}
@keyframes panel-refresh-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Wrap for deployed card — same as bankr-pending-wrap for refresh positioning */
.bankr-deployed-wrap {
    position: relative;
    width: 340px;
}

/* ============================================
   VIRAL TRACKER PAGE
   ============================================ */

.viral-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.viral-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}

/* Status bar (live dot + text) */
.viral-status {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.viral-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.viral-dot-connecting { background: #f59e0b; animation: pulse 1.2s ease-in-out infinite; }
.viral-dot-live        { background: #22c55e; }
.viral-dot-error       { background: #ef4444; animation: pulse 1s ease-in-out infinite; }

/* White-bordered tweet container */
.viral-card {
    width: 540px;
    min-height: 440px;
    max-height: 75vh;
    border: 1px solid #ffffff;
    border-radius: 12px;
    background: transparent;
    overflow-y: auto;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.viral-card::-webkit-scrollbar       { width: 4px; }
.viral-card::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

/* ── Tweet card ─────────────────────────────────────────────────────────── */

.tweet-card {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 0.75rem 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background-color 0.15s;
    cursor: pointer;
    border-radius: 8px;
}

.tweet-card:last-child { border-bottom: none; }

.tweet-card:hover { background: rgba(203, 220, 223, 0.05); }

/* New tweet highlight */
.tweet-card-new {
    animation: tweetSlideIn 2.2s ease-out;
}

@keyframes tweetSlideIn {
    0%   { background: rgba(255, 136, 48, 0.20); transform: translateY(-6px); opacity: 0; }
    12%  { background: rgba(255, 136, 48, 0.14); transform: translateY(0);    opacity: 1; }
    100% { background: transparent; }
}

.tweet-inner { display: flex; flex-direction: column; gap: 0.4rem; }

/* Header row: avatar | meta | time */
.tweet-header {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

/* Avatar */
.tweet-avatar-wrap { flex-shrink: 0; position: relative; width: 40px; height: 40px; }

.tweet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.tweet-avatar-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(174, 206, 210, 0.18);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
}

/* Name + handle */
.tweet-meta { flex: 1; min-width: 0; }

.tweet-name-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.tweet-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* X blue verified checkmark */
.tweet-verified {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    vertical-align: middle;
    margin-bottom: 2px;
    display: inline-block;
}

.tweet-handle {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.05rem;
}

.tweet-time {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 0.1rem;
}

/* Tweet body text */
.tweet-text {
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Media image */
.tweet-media {
    border-radius: 10px;
    overflow: hidden;
    max-height: 260px;
}

.tweet-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Metrics row */
.tweet-metrics {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.15rem;
}

.tweet-metric {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Views — highlighted in orange */
.tweet-metric-views {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
}

/* Likes — highlighted in soft pink */
.tweet-metric-likes { color: #f9a8d4; }

/* Flash when view count updates */
.views-flash {
    animation: viewsFlash 0.7s ease-out;
}

@keyframes viewsFlash {
    0%   { color: #ffffff; }
    100% { color: var(--accent); }
}

/* ── Viewer counter ──────────────────────────────────────────────────────── */

.viewer-count {
    position: fixed;
    bottom: 1.2rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 500;
    pointer-events: none;
    z-index: 50;
    user-select: none;
}

.viewer-count svg {
    opacity: 0.6;
    flex-shrink: 0;
}
