:root {
    --bg-1: #03111f;
    --bg-2: #071b30;
    --card: rgba(8, 20, 38, 0.9);
    --card-2: rgba(11, 28, 50, 0.95);
    --line: rgba(255, 255, 255, 0.08);
    --text: #e8eef9;
    --muted: #9fb0c7;
    --blue: #57b7ff;
    --cyan: #60e6ff;
    --green: #20c997;
    --amber: #f5b942;
    --red: #ff6b6b;
    --shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

html,
body {
    background:
        radial-gradient(circle at top right, rgba(40, 120, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #020b16 0%, #041120 35%, #07182b 100%);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100%;
}

a {
    text-decoration: none;
}

.page-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 22px 48px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(90deg, rgba(8, 25, 48, 0.96), rgba(4, 36, 54, 0.9));
    box-shadow: var(--shadow);
    margin-bottom: 22px;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text);
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #60e6ff);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.25);
}

.brand-title {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 0.96rem;
    margin-top: 4px;
    max-width: 820px;
}

.topbar-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.terminal-chip,
.terminal-chip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(96, 230, 255, 0.18);
    color: #dbeafe;
    background: rgba(7, 21, 40, 0.85);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.88rem;
}

.terminal-chip-link:hover {
    color: white;
    border-color: rgba(96, 230, 255, 0.42);
}

.api-btn {
    border-radius: 999px;
    padding-inline: 16px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.panel-card,
.board-wrap {
    background: linear-gradient(180deg, rgba(7, 19, 35, 0.96), rgba(10, 24, 42, 0.96));
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.panel-body {
    padding: 22px;
}

.panel-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8fb5ff;
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.3rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.hero-subtitle,
.section-subtitle,
.board-header-subtitle,
.metric-sub,
.footer-note,
.shift-prev-note {
    color: var(--muted);
}

.summary-box {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    color: #eef4ff;
    line-height: 1.6;
}

.metrics-grid,
.performance-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.metric-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(13, 24, 44, 0.94), rgba(18, 31, 52, 0.94));
    min-height: 112px;
}

.metric-label {
    color: #b7c5dc;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.shift-band,
.action-band {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 18px 22px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(7, 21, 38, 0.86);
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}

.shift-title,
.action-title,
.section-title,
.board-header-title {
    font-weight: 800;
    letter-spacing: -0.03em;
}

.shift-title,
.action-title {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.shift-text,
.action-sub {
    color: var(--muted);
    margin-bottom: 10px;
}

.shift-right {
    text-align: right;
    min-width: 180px;
}

.shift-action-main {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 10px;
}

.shift-score-note {
    color: var(--muted);
    margin-top: 6px;
    font-size: 0.9rem;
}

.topic-pill,
.status-pill,
.dir-pill,
.edge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.79rem;
    font-weight: 700;
    margin: 4px 6px 0 0;
    border: 1px solid transparent;
    white-space: nowrap;
}

.topic-pill {
    background: rgba(96, 165, 250, 0.12);
    color: #cfe5ff;
    border-color: rgba(96, 165, 250, 0.2);
}

.status-best {
    background: rgba(32, 201, 151, 0.13);
    color: #84f3ca;
    border-color: rgba(32, 201, 151, 0.26);
}

.status-watch {
    background: rgba(245, 185, 66, 0.13);
    color: #ffd885;
    border-color: rgba(245, 185, 66, 0.26);
}

.status-avoid {
    background: rgba(255, 107, 107, 0.13);
    color: #ffb0b0;
    border-color: rgba(255, 107, 107, 0.24);
}

.dir-bull {
    background: rgba(32, 201, 151, 0.13);
    color: #84f3ca;
    border-color: rgba(32, 201, 151, 0.26);
}

.dir-bear {
    background: rgba(255, 107, 107, 0.13);
    color: #ffb0b0;
    border-color: rgba(255, 107, 107, 0.24);
}

.dir-unclear {
    background: rgba(255, 255, 255, 0.08);
    color: #d5deeb;
    border-color: rgba(255, 255, 255, 0.12);
}

.edge-high {
    background: rgba(32, 201, 151, 0.13);
    color: #84f3ca;
    border-color: rgba(32, 201, 151, 0.26);
}

.edge-medium {
    background: rgba(245, 185, 66, 0.13);
    color: #ffd885;
    border-color: rgba(245, 185, 66, 0.26);
}

.edge-low {
    background: rgba(87, 183, 255, 0.12);
    color: #a9dbff;
    border-color: rgba(87, 183, 255, 0.22);
}

.edge-minimal {
    background: rgba(255, 255, 255, 0.08);
    color: #d5deeb;
    border-color: rgba(255, 255, 255, 0.12);
}

.btn-terminal,
.btn-terminal-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 1px solid var(--line);
    transition: 0.18s ease;
}

.btn-terminal {
    color: #041221;
    background: #eef4ff;
}

.btn-terminal:hover {
    color: #041221;
    opacity: 0.94;
}

.btn-terminal-outline {
    background: transparent;
    color: #dbeafe;
}

.btn-terminal-outline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.section-block {
    margin-bottom: 24px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 6px;
}

.best-bets-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bet-card {
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(9, 22, 40, 0.98), rgba(11, 27, 49, 0.98));
    box-shadow: var(--shadow);
    padding: 18px;
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.bet-card:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 230, 255, 0.24);
}

.bet-card-top,
.bet-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.bet-card-title {
    margin-top: 14px;
    margin-bottom: 12px;
    font-size: 1.12rem;
    line-height: 1.35;
    font-weight: 750;
}

.bet-stat {
    min-width: 72px;
}

.bet-stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.bet-stat-value {
    font-size: 1rem;
    font-weight: 750;
}

.bet-card-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: flex-end;
}

.bet-open-link {
    color: #9fd7ff;
    font-weight: 700;
    font-size: 0.9rem;
}

.board-wrap {
    overflow: hidden;
    margin-bottom: 24px;
}

.board-header {
    padding: 20px 22px 14px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    flex-wrap: wrap;
}

.board-header-title {
    font-size: 1.45rem;
    margin-bottom: 4px;
}

.board-meta {
    color: var(--muted);
    font-size: 0.95rem;
}

.table-responsive {
    overflow-x: auto;
}

.market-board-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1080px;
}

.market-board-table thead th {
    padding: 14px 16px;
    color: #c5d4ea;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    position: sticky;
    top: 0;
    z-index: 2;
}

.market-board-table tbody td {
    padding: 15px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}

.market-board-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.question-col {
    min-width: 360px;
    font-weight: 650;
    color: #eef4ff;
}

.num {
    text-align: right;
    white-space: nowrap;
}

.center {
    text-align: center;
}

.table-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 10px;
    border: 1px solid rgba(96, 230, 255, 0.18);
    color: #dff6ff;
    background: rgba(7, 21, 38, 0.92);
    font-size: 0.86rem;
    font-weight: 700;
}

.table-open-btn:hover {
    color: white;
    border-color: rgba(96, 230, 255, 0.35);
}

.empty-box {
    padding: 18px 22px;
    color: var(--muted);
}

.performance-metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.text-profit {
    color: #7cf1bf !important;
}

.text-loss {
    color: #ff8d8d !important;
}

.footer-note {
    margin-top: 18px;
    text-align: center;
    font-size: 0.92rem;
}

@media (max-width: 1200px) {

    .hero-grid,
    .best-bets-grid,
    .performance-metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .page-shell {
        padding: 16px 14px 32px;
    }

    .topbar,
    .shift-band,
    .action-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-grid,
    .metrics-grid,
    .best-bets-grid,
    .performance-metrics-grid {
        grid-template-columns: 1fr;
    }

    .brand-title {
        font-size: 1.55rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }
}

.market-card {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) auto auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.market-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.market-question {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: #f4f7fb;
    margin-bottom: 8px;
    max-width: 760px;
}

.market-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(214, 224, 238, 0.72);
}

.meta-pill {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(71, 122, 255, 0.12);
    border: 1px solid rgba(71, 122, 255, 0.18);
    color: #b9d0ff;
    font-weight: 600;
}

.market-prices {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-box {
    min-width: 104px;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
}

.price-box.yes {
    background: rgba(17, 185, 129, 0.10);
    border-color: rgba(17, 185, 129, 0.24);
}

.price-box.no {
    background: rgba(255, 255, 255, 0.03);
}

.price-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(214, 224, 238, 0.68);
    margin-bottom: 4px;
}

.price-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #f7fbff;
}

.market-side {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.status-badge {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #dbe6f3;
}

.status-badge.best {
    background: rgba(17, 185, 129, 0.12);
    border-color: rgba(17, 185, 129, 0.28);
    color: #7ef0bf;
}

.status-badge.watch {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.28);
    color: #ffd27a;
}

.open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: #0a1730;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f3f7fb;
    text-decoration: none;
    font-weight: 700;
}

.open-btn:hover {
    background: #102140;
}

@media (max-width: 1100px) {
    .market-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .market-side {
        justify-content: flex-start;
    }
}

/* html {
    font-size: 120%;
} */

/* NAV / TERMINAL PILLS SYSTEM */

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    /* spacing between items */
    font-size: 1.2em;
    /* 🔥 20% increase */
}

/* Base pill */
.terminal-chip-link,
.topbar-actions .btn {
    font-size: 1rem;
    padding: 8px 16px;
    /* bigger click area */
    border-radius: 999px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Link style (dark pills) */
.terminal-chip-link {
    color: #cbd5e1;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.terminal-chip-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Active state (glow) */
.terminal-chip-link.active,
.topbar-actions .btn-outline-info {
    color: #22d3ee;
    border: 1px solid #22d3ee;
    background: rgba(34, 211, 238, 0.08);
}

/* Auto refresh chip */
.terminal-chip {
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
}

.market-board-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px 18px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.market-board-copy {
    min-width: 320px;
    flex: 1 1 520px;
}

.market-board-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    flex: 0 1 auto;
}

.markets-count {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.68);
    letter-spacing: 0.01em;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.board-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(103, 232, 249, 0.34);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.18s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.board-pill:hover {
    color: #ffffff;
    border-color: rgba(103, 232, 249, 0.7);
    background: rgba(103, 232, 249, 0.08);
    transform: translateY(-1px);
}

.board-pill.is-active {
    color: #06131f;
    background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 100%);
    border-color: rgba(103, 232, 249, 0.95);
    box-shadow:
        0 0 0 1px rgba(103, 232, 249, 0.18),
        0 10px 30px rgba(34, 211, 238, 0.18);
}

.section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 18px;
}

.section-note {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 992px) {
    .market-board-header {
        padding: 24px 20px 16px 20px;
    }

    .market-board-meta {
        width: 100%;
        align-items: flex-start;
    }

    .category-pills {
        justify-content: flex-start;
    }
}

.board-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(103, 232, 249, 0.34);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.board-pill:hover {
    color: #ffffff;
    border-color: rgba(124, 242, 255, 0.95);
    background: linear-gradient(135deg,
            rgba(103, 232, 249, 0.12) 0%,
            rgba(34, 211, 238, 0.18) 100%);
    box-shadow:
        0 0 0 1px rgba(103, 232, 249, 0.12),
        0 10px 24px rgba(34, 211, 238, 0.14);
    transform: translateY(-1px);
}

.board-pill:active {
    transform: translateY(0);
    background: linear-gradient(135deg,
            rgba(103, 232, 249, 0.18) 0%,
            rgba(34, 211, 238, 0.26) 100%);
    border-color: rgba(103, 232, 249, 1);
    box-shadow:
        0 0 0 1px rgba(103, 232, 249, 0.22),
        0 4px 14px rgba(34, 211, 238, 0.18);
}

.board-pill.is-active {
    color: #06131f;
    background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 100%);
    border-color: rgba(103, 232, 249, 0.95);
    box-shadow:
        0 0 0 1px rgba(103, 232, 249, 0.18),
        0 10px 30px rgba(34, 211, 238, 0.18);
}

.board-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(103, 232, 249, 0.34);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* 🔥 hover = soft glow */
.board-pill:hover {
    color: #ffffff;
    border-color: rgba(124, 242, 255, 0.95);
    background: linear-gradient(135deg,
            rgba(103, 232, 249, 0.10) 0%,
            rgba(34, 211, 238, 0.16) 100%);
    box-shadow:
        0 0 0 1px rgba(103, 232, 249, 0.12),
        0 10px 24px rgba(34, 211, 238, 0.14);
    transform: translateY(-1px);
}

/* 🔥 click = slightly stronger */
.board-pill:active {
    transform: translateY(0);
    background: linear-gradient(135deg,
            rgba(103, 232, 249, 0.18) 0%,
            rgba(34, 211, 238, 0.26) 100%);
    border-color: rgba(103, 232, 249, 1);
    box-shadow:
        0 0 0 1px rgba(103, 232, 249, 0.22),
        0 4px 14px rgba(34, 211, 238, 0.18);
}

/* ✅ ONLY THIS CONTROLS ACTIVE STATE */
.board-pill.is-active {
    color: #06131f;
    background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 100%);
    border-color: rgba(103, 232, 249, 0.95);
    box-shadow:
        0 0 0 1px rgba(103, 232, 249, 0.18),
        0 10px 30px rgba(34, 211, 238, 0.18);
}

/* ✨ animated glow */
.board-pill.is-active {
    color: #06131f;
    background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 100%);
    border-color: rgba(103, 232, 249, 0.95);
    box-shadow:
        0 0 0 1px rgba(103, 232, 249, 0.18),
        0 10px 30px rgba(34, 211, 238, 0.18);
    position: relative;
    overflow: hidden;
}

/* soft pulse layer */
.board-pill.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%,
            rgba(103, 232, 249, 0.35),
            rgba(34, 211, 238, 0.15),
            transparent 70%);
    opacity: 0.6;
    animation: pillPulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pillPulse {
    0% {
        opacity: 0.35;
        transform: scale(0.98);
    }

    50% {
        opacity: 0.75;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.35;
        transform: scale(0.98);
    }
}

.info-tip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    vertical-align: middle;
    transition: color 0.18s ease;
}

.info-tip:hover {
    color: var(--cyan, #67e8f9);
}

.market-board-table thead th {
    white-space: nowrap;
}

.market-board-table thead th .info-tip {
    display: inline-flex;
    margin-left: 6px;
    vertical-align: middle;
}

.tooltip-left .tooltip-inner {
    text-align: left;
    max-width: 260px;
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 12px;
}

.tooltip-left .tooltip-inner {
    text-align: left;
    max-width: 260px;
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 12px;
}

/* Optional: nudge it slightly left for perfect alignment */
.tooltip-left {
    transform: translateX(-8px);
}

.tooltip-left .tooltip-inner {
    text-align: left;
    max-width: 260px;
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 12px;
}

.tooltip-left.bs-tooltip-top .tooltip-inner,
.tooltip-left.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-inner {
    text-align: left;
}

.tooltip-left.bs-tooltip-top {
    margin-left: -40px;
}

.tooltip-inner {
    text-align: left;
    max-width: 260px;
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 12px;
    background: rgba(10, 14, 20, 0.96);
    border: 1px solid rgba(103, 232, 249, 0.25);
    color: #e6edf3;
    border-radius: 10px;
}

.tooltip-inner b {
    color: #67e8f9;
    font-weight: 600;
}

/* Center ALL columns by default */
.market-board-table th,
.market-board-table td {
    text-align: center;
    vertical-align: middle;
}

/* Keep MARKET column left-aligned */
.market-board-table th:first-child,
.market-board-table td:first-child {
    text-align: left;
}

/* Optional: make numbers look cleaner */
.market-board-table td.num,
.market-board-table th.num {
    text-align: center;
}

/* Make sure headers align perfectly with icons */
.market-board-table thead th {
    white-space: nowrap;
}

.market-board-table td {
    font-variant-numeric: tabular-nums;
}

/* Center all columns by default */
.market-board-table th,
.market-board-table td {
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

/* Keep MARKET column left-aligned */
.market-board-table th:first-child,
.market-board-table td:first-child {
    text-align: left;
}

/* Terminal-style tighter spacing */
.market-board-table td {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.market-board-table th {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.1;
}

/* Keep numeric columns centered cleanly */
.market-board-table td.num,
.market-board-table th.num,
.market-board-table td.center,
.market-board-table th.center {
    text-align: center;
}

/* Slightly faster hover feel */
.clickable-row {
    transition: background 0.15s ease;
}

/* Tighten pills/badges */
.status-pill,
.topic-pill {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
}

/* Slightly reduce question text size for density */
.question-col {
    font-size: 15px;
    line-height: 1.25;
}