/* ===== Bittensor Dashboard — FintexNews Design System ===== */
/* Mirrors chainlink.css schema with Bittensor's dark/charcoal branding */

/* --- Design Tokens --- */
:root {
    --bt-accent: #111111;
    --bt-accent-light: #333333;
    --bt-accent-bg: rgba(17, 17, 17, 0.06);
    --bt-accent-border: rgba(17, 17, 17, 0.15);
    --bt-teal: #0d9488;
}

/* -- Light theme -- */
[data-theme="light"] .bt-page {
    --bt-bg: #FFFFFF;
    --bt-bg-muted: #F7F8F9;
    --bt-bg-card: #FFFFFF;
    --bt-text: #0C0F1A;
    --bt-text-secondary: #5B616E;
    --bt-text-muted: #89909E;
    --bt-border: #EEF0F3;
    --bt-accent: #111111;
    --bt-positive: #09853D;
    --bt-negative: #CF4714;
    /* Flywheel */
    --bt-fw-node-bg: #FFFFFF;
    --bt-fw-node-border: #DDE1E6;
    --bt-fw-orbit: #D0D5DD;
    --bt-fw-arrow: #89909E;
    --bt-fw-center-bg: #FFFFFF;
    --bt-fw-center-border: #DDE1E6;
}

/* -- Dark theme -- */
[data-theme="dark"] .bt-page {
    --bt-bg: #0C0F1A;
    --bt-bg-muted: #141824;
    --bt-bg-card: rgba(255,255,255,0.04);
    --bt-text: #F0F2F8;
    --bt-text-secondary: #8A95B5;
    --bt-text-muted: #8A95B5;
    --bt-border: rgba(255,255,255,0.08);
    --bt-accent: #F0F2F8;
    --bt-positive: #22AD73;
    --bt-negative: #FF6B4A;
    /* Flywheel */
    --bt-fw-node-bg: #141824;
    --bt-fw-node-border: rgba(255,255,255,0.18);
    --bt-fw-orbit: rgba(255,255,255,0.15);
    --bt-fw-arrow: rgba(255,255,255,0.45);
    --bt-fw-center-bg: #141824;
    --bt-fw-center-border: rgba(255,255,255,0.22);
}

/* Page class */
.bt-page {
    background: var(--bt-bg, #FFFFFF);
    color: var(--bt-text, #0C0F1A);
}

/* ===== HERO — Coinbase Big Headline ===== */
.bt-hero {
    position: relative;
    background: var(--bt-bg, #FFFFFF);
    padding: 160px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.bt-hero-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
}

/* Badge — pill style */
.bt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bt-accent-bg);
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bt-text-secondary, #5B616E);
    margin-bottom: 32px;
    letter-spacing: 0;
}

.bt-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111111;
    animation: bt-pulse 2s ease-in-out infinite;
}

[data-theme="dark"] .bt-badge-dot {
    background: #F0F2F8;
}

@keyframes bt-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Hero headline — Coinbase display */
.bt-hero-headline {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--bt-text, #0C0F1A);
    margin-bottom: 24px;
    text-wrap: balance;
}

/* Price display */
.bt-hero-price {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(2.5rem, 2vw + 2rem, 4rem);
    font-weight: 500;
    color: var(--bt-text, #0C0F1A);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.bt-price-currency {
    font-size: clamp(1.25rem, 0.5vw + 1rem, 2rem);
    color: var(--bt-text-muted, #89909E);
    font-weight: 400;
    margin-right: 4px;
}

.bt-hero-price-usd {
    font-size: 16px;
    color: var(--bt-text-muted, #89909E);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Stats Grid */
.bt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 880px;
    margin: 0 auto 12px;
}

.bt-stats-grid--small {
    grid-template-columns: repeat(2, 1fr);
    max-width: 440px;
}

.bt-stat {
    background: var(--bt-bg-card, #FFFFFF);
    border: 1px solid var(--bt-border, #EEF0F3);
    border-radius: 16px;
    padding: 16px 14px;
    transition: all 0.2s ease;
}

.bt-stat:hover {
    border-color: rgba(17, 17, 17, 0.2);
}

[data-theme="dark"] .bt-stat:hover {
    border-color: rgba(255,255,255,0.15);
}

.bt-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--bt-text, #0C0F1A);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.bt-stat-value.positive { color: var(--bt-positive, #09853D); }
.bt-stat-value.negative { color: var(--bt-negative, #CF4714); }

.bt-stat-label {
    font-size: 11px;
    color: var(--bt-text-muted, #89909E);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== INTRO SECTION — Wieso Bittensor ===== */
.bt-intro-section {
    padding: 80px 24px;
    background: var(--bt-bg-muted, #F7F8F9);
}

.bt-container {
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    padding: 0 24px;
}

.bt-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.bt-bittensor-logo {
    margin-bottom: 24px;
    color: #0C0F1A;
}

[data-theme="dark"] .bt-bittensor-logo {
    color: #F0F2F8;
}

[data-theme="dark"] .bt-bittensor-logo svg text {
    fill: #F0F2F8;
}

.bt-intro-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--bt-teal);
    margin-bottom: 16px;
    letter-spacing: 0;
}

.bt-section-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    color: var(--bt-text, #0C0F1A);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-align: center;
}

.bt-intro-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: var(--bt-text-secondary, #5B616E);
    margin-bottom: 20px;
}

.bt-intro-highlight {
    font-weight: 600;
    color: var(--bt-text, #0C0F1A);
    border-left: 3px solid var(--bt-teal);
    padding-left: 20px;
    margin-top: 24px;
}

.bt-intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.bt-intro-logo-large {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 24px 80px rgba(0, 0, 0, 0.15));
    animation: bt-logo-float 6s ease-in-out infinite;
}

[data-theme="dark"] .bt-intro-logo-large text {
    fill: url(#bt-tau-gradient-dark) !important;
}

@keyframes bt-logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ===== FLYWHEEL ===== */
.bt-flywheel-section {
    padding: 80px 0;
}

.bt-flywheel-wrap {
    max-width: 640px;
    margin: 48px auto 48px;
}

.bt-flywheel-svg {
    width: 100%;
    height: auto;
}

.bt-flywheel-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.bt-flywheel-card {
    background: var(--bt-bg-card, #FFFFFF);
    border: 1px solid var(--bt-border, #EEF0F3);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.bt-flywheel-card--wide {
    grid-column: 1 / -1;
    max-width: 680px;
    margin: 0 auto;
    border: 1.5px solid var(--bt-accent, #111111);
}

.bt-flywheel-card:hover {
    border-color: rgba(17,17,17,0.15);
}

[data-theme="dark"] .bt-flywheel-card:hover {
    border-color: rgba(255,255,255,0.12);
}

[data-theme="dark"] .bt-flywheel-card--wide {
    border-color: var(--bt-accent, #F0F2F8);
}

.bt-flywheel-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.bt-flywheel-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--bt-text, #0C0F1A);
    margin-bottom: 8px;
}

.bt-flywheel-card-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--bt-text-secondary, #5B616E);
}

/* -- Platform Cards -- */
.bt-platforms-section {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--bt-border, #EEF0F3);
}

.bt-platforms-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--bt-text, #0C0F1A);
    text-align: center;
    margin-bottom: 8px;
}

.bt-platforms-sub {
    font-size: 14px;
    color: var(--bt-text-muted, #89909E);
    text-align: center;
    margin-bottom: 32px;
}

.bt-platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bt-platform-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bt-bg-card, #FFFFFF);
    border: 1px solid var(--bt-border, #EEF0F3);
    border-radius: 14px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.bt-platform-card:hover {
    border-color: var(--bt-accent, #111111);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

[data-theme="dark"] .bt-platform-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.bt-platform-logo {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.bt-platform-logo svg {
    width: 100%;
    height: auto;
    color: var(--bt-text, #0C0F1A);
}

.bt-platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* TaoStats: wide wordmark — fit inside 48x48 with dark bg */
.bt-platform-logo--taostats {
    background: var(--bt-text, #0C0F1A);
    padding: 10px 6px;
}
.bt-platform-logo--taostats svg {
    color: var(--bt-bg, #FFFFFF);
}
[data-theme="dark"] .bt-page .bt-platform-logo--taostats {
    background: #F0F2F8;
}
[data-theme="dark"] .bt-page .bt-platform-logo--taostats svg {
    color: #0C0F1A;
}

/* TaoFi: tall icon — fit inside with padding */
.bt-platform-logo--taofi {
    background: var(--bt-bg-card, #FFFFFF);
    border: 1px solid var(--bt-border, #EEF0F3);
    padding: 6px 10px;
}
.bt-platform-logo--taofi svg {
    color: var(--bt-text, #0C0F1A);
}

/* VoidAI: white text on black bg */
.bt-platform-logo--voidai {
    background: #0C0F1A;
    padding: 12px 6px;
}
.bt-platform-logo--voidai svg {
    color: #FFFFFF;
}

/* TAO.BOT: dark themed favicon */
.bt-platform-logo--taobot {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.bt-platform-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--bt-text, #0C0F1A);
    margin-bottom: 4px;
}

.bt-platform-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--bt-text-secondary, #5B616E);
}

.bt-platform-arrow {
    flex-shrink: 0;
    color: var(--bt-text-muted, #89909E);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.bt-platform-card:hover .bt-platform-arrow {
    opacity: 1;
}

@media (max-width: 768px) {
    .bt-platforms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bt-flywheel-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
    .bt-flywheel-wrap {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .bt-flywheel-bottom {
        grid-template-columns: 1fr;
    }
}

/* ===== SECTIONS ===== */
.bt-section {
    background: var(--bt-bg, #FFFFFF);
    padding: 80px 0;
}

.bt-section--alt {
    background: var(--bt-bg-muted, #F7F8F9);
}

.bt-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.bt-section-sub {
    font-size: 15px;
    color: var(--bt-text-muted, #89909E);
    margin-top: 8px;
    text-align: center;
}

/* ===== SEARCH ===== */
.bt-search-wrap {
    position: relative;
    flex-shrink: 0;
}

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

.bt-search-input {
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--bt-border, #EEF0F3);
    border-radius: 999px;
    background: var(--bt-bg-card, #FFFFFF);
    color: var(--bt-text, #0C0F1A);
    font-family: var(--font);
    font-size: 14px;
    width: 280px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bt-search-input::placeholder {
    color: var(--bt-text-muted);
}

.bt-search-input:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

[data-theme="dark"] .bt-search-input:focus {
    border-color: #F0F2F8;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

/* ===== SORT TABS ===== */
.bt-sort-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    padding: 4px;
    background: var(--bt-bg-card, #FFFFFF);
    border-radius: 999px;
    border: 1px solid var(--bt-border);
    width: fit-content;
}

.bt-sort-tab {
    padding: 8px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--bt-text-muted);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bt-sort-tab:hover {
    color: var(--bt-text);
}

.bt-sort-tab.active {
    background: #111111;
    color: #FFFFFF;
    font-weight: 600;
}

[data-theme="dark"] .bt-sort-tab.active {
    background: #F0F2F8;
    color: #0C0F1A;
}

/* ===== TABLE ===== */
.bt-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--bt-border);
    border-radius: 16px;
    background: var(--bt-bg-card, #FFFFFF);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.bt-table-wrap--modal {
    max-height: 400px;
    overflow-y: auto;
}

.bt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.bt-table thead {
    position: sticky;
    top: 0;
    z-index: 2;
}

.bt-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--bt-text-muted);
    background: var(--bt-bg-muted);
    border-bottom: 1px solid var(--bt-border);
    white-space: nowrap;
}

.bt-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--bt-border);
    color: var(--bt-text);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.bt-table tbody tr {
    cursor: pointer;
    transition: background 0.15s ease;
}

.bt-table tbody tr:hover {
    background: var(--bt-bg-muted);
}

.bt-table tbody tr:last-child td {
    border-bottom: none;
}

.bt-table--compact th,
.bt-table--compact td {
    padding: 8px 12px;
    font-size: 12px;
}

.bt-table--compact tbody tr {
    cursor: default;
}

.bt-loading {
    text-align: center;
    padding: 32px !important;
    color: var(--bt-text-muted) !important;
    font-style: italic;
}

/* Table Footer */
.bt-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.bt-table-info {
    font-size: 12px;
    color: var(--bt-text-muted);
}

.bt-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bt-page-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--bt-border);
    border-radius: 8px;
    background: var(--bt-bg-card);
    color: var(--bt-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bt-page-btn:hover:not(:disabled) {
    border-color: #111111;
    color: #111111;
}

[data-theme="dark"] .bt-page-btn:hover:not(:disabled) {
    border-color: #F0F2F8;
    color: #F0F2F8;
}

.bt-page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.bt-page-info {
    font-size: 13px;
    font-weight: 600;
    color: var(--bt-text);
    min-width: 48px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* Subnet Name Cell */
.bt-subnet-name-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bt-subnet-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--bt-bg-muted);
    border: 1px solid var(--bt-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--bt-text);
    flex-shrink: 0;
}

.bt-subnet-name {
    font-weight: 600;
    color: var(--bt-text);
}

.bt-subnet-symbol {
    font-size: 11px;
    color: var(--bt-text-muted);
    font-weight: 500;
}

/* Sentiment Pill */
.bt-sentiment {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.bt-sentiment--greed { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.bt-sentiment--fear { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.bt-sentiment--neutral { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.bt-sentiment--extreme-greed { background: #d1fae5; color: #047857; border: 1px solid #6ee7b7; }
.bt-sentiment--extreme-fear { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

/* ===== MODAL ===== */
.bt-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.bt-modal-overlay.bt-open {
    opacity: 1;
    pointer-events: all;
}

.bt-modal {
    background: var(--bt-bg-card, #FFFFFF);
    border: 1px solid var(--bt-border);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 28px;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .bt-modal { background: #FFFFFF; }
[data-theme="dark"] .bt-modal { background: #141824; }

.bt-modal-overlay.bt-open .bt-modal {
    transform: translateY(0) scale(1);
}

.bt-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.bt-modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bt-modal-sn-badge {
    padding: 4px 12px;
    background: var(--bt-bg-muted);
    border: 1px solid var(--bt-border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--bt-text);
}

.bt-modal-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--bt-text);
}

.bt-modal-symbol {
    font-size: 14px;
    color: var(--bt-text-muted);
    font-weight: 500;
}

.bt-modal-close {
    background: var(--bt-bg-muted);
    border: 1px solid var(--bt-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bt-text-muted);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.bt-modal-close:hover {
    color: var(--bt-text);
}

/* Modal Stats */
.bt-modal-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.bt-modal-stat {
    background: var(--bt-bg-muted);
    border: 1px solid var(--bt-border);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.bt-modal-stat-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--bt-text);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.bt-modal-stat-label {
    font-size: 10px;
    color: var(--bt-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Modal Tabs */
.bt-modal-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--bt-border);
}

.bt-modal-tab {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--bt-text-muted);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.bt-modal-tab:hover { color: var(--bt-text); }

.bt-modal-tab.active {
    color: var(--bt-text);
    border-bottom-color: #111111;
}

[data-theme="dark"] .bt-modal-tab.active {
    border-bottom-color: #F0F2F8;
}

.bt-modal-tab-content { display: none; }
.bt-modal-tab-content.active { display: block; }

.bt-modal-tab-desc {
    font-size: 12px;
    color: var(--bt-text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

/* ===== NETWORK GRID ===== */
.bt-network-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.bt-network-card {
    background: var(--bt-bg-card, #FFFFFF);
    border: 1px solid var(--bt-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.bt-network-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--bt-text);
    margin-bottom: 20px;
}

.bt-network-card-title svg { color: var(--bt-text-muted); }

/* Delegates List */
.bt-delegates-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.bt-delegate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--bt-bg-muted);
    border: 1px solid var(--bt-border);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.bt-delegate-item:hover { border-color: rgba(17,17,17,0.2); }
[data-theme="dark"] .bt-delegate-item:hover { border-color: rgba(255,255,255,0.15); }

.bt-delegate-addr {
    font-family: 'DM Sans', monospace;
    font-size: 13px;
    font-weight: 500;
    color: var(--bt-text);
}

.bt-delegate-right { display: flex; gap: 16px; align-items: center; }

.bt-delegate-stat { text-align: right; }

.bt-delegate-stat-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--bt-text);
    font-variant-numeric: tabular-nums;
}

.bt-delegate-stat-label {
    font-size: 10px;
    color: var(--bt-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Top Subnets List */
.bt-top-subnets-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 520px;
    overflow-y: auto;
}

.bt-top-subnet-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--bt-bg-muted);
    border: 1px solid var(--bt-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bt-top-subnet-item:hover {
    border-color: rgba(17,17,17,0.2);
}

[data-theme="dark"] .bt-top-subnet-item:hover {
    border-color: rgba(255,255,255,0.15);
}

.bt-top-subnet-rank {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--bt-text);
    flex-shrink: 0;
}

.bt-top-subnet-info { flex: 1; min-width: 0; }

.bt-top-subnet-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--bt-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bt-top-subnet-apr { text-align: right; flex-shrink: 0; }
.bt-top-subnet-apr .bt-apr-value { font-size: 15px; }
.bt-top-subnet-stake { text-align: right; flex-shrink: 0; min-width: 80px; }

.bt-apr-value { color: var(--bt-teal); font-weight: 700; }

.bt-hotkey {
    font-family: 'DM Sans', monospace;
    font-size: 12px;
    color: var(--bt-text-muted);
}

/* ===== COST COMPARISON ===== */
.bt-cost-table-wrap {
    border-radius: 16px;
    margin-top: 32px;
    overflow: hidden;
}

.bt-cost-table { border-collapse: collapse; }

.bt-cost-cat {
    font-size: 13px;
    font-weight: 700;
    color: var(--bt-text);
}

.bt-cost-subnet {
    font-size: 13px;
    font-weight: 700;
    color: var(--bt-teal);
}

.bt-cost-by {
    font-size: 11px;
    color: var(--bt-text-muted);
    font-weight: 500;
}

.bt-cost-rival {
    font-size: 13px;
    font-weight: 600;
    color: var(--bt-text-muted);
}

.bt-cost-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--bt-text);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* Competitor price — crossed out */
.bt-cost-table td:nth-child(5) {
    color: var(--bt-text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(220, 38, 38, 0.3);
}

.bt-savings-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #111111, #333333);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

[data-theme="dark"] .bt-savings-badge {
    background: linear-gradient(135deg, #F0F2F8, #CCCCCC);
    color: #0C0F1A;
}

.bt-cost-disclaimer {
    font-size: 11px;
    color: var(--bt-text-muted);
    margin-top: 20px;
    line-height: 1.6;
    max-width: 700px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .bt-hero { padding: 120px 16px 60px; }
    .bt-hero-headline { font-size: 36px; }
    .bt-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bt-stats-grid--small { max-width: 100%; }
    .bt-intro-layout { grid-template-columns: 1fr; gap: 32px; }
    .bt-intro-visual { order: -1; }
    .bt-intro-logo-large { width: 220px; max-width: 60vw; }
    .bt-section-title[style] { text-align: center !important; }
    .bt-intro-eyebrow { display: block; text-align: center; }
    .bt-section-header { flex-direction: column; align-items: flex-start; }
    .bt-search-input { width: 100%; }
    .bt-search-wrap { width: 100%; }
    .bt-sort-tabs { overflow-x: auto; width: 100%; }
    .bt-modal-stats { grid-template-columns: repeat(3, 1fr); }
    .bt-network-grid { grid-template-columns: 1fr; }
    .bt-th-alpha, .bt-table td:nth-child(6) { display: none; }
    .bt-modal { padding: 20px; max-height: 90vh; }
    .bt-delegate-right { gap: 10px; }
    .bt-cost-table th, .bt-cost-table td { padding: 12px 12px; font-size: 12px; }
    .bt-cost-table th:nth-child(3), .bt-cost-table td:nth-child(3),
    .bt-cost-table th:nth-child(5), .bt-cost-table td:nth-child(5) { display: none; }
}

@media (max-width: 480px) {
    .bt-hero { padding: 100px 12px 40px; }
    .bt-hero-headline { font-size: 28px; }
    .bt-stats-grid { grid-template-columns: 1fr 1fr; }
    .bt-stat { padding: 12px 8px; }
    .bt-stat-value { font-size: 15px; }
    .bt-modal-stats { grid-template-columns: repeat(2, 1fr); }
    .bt-th-mcap, .bt-table td:nth-child(4),
    .bt-th-sentiment, .bt-table td:nth-child(7) { display: none; }
    .bt-modal-title-wrap { flex-wrap: wrap; gap: 8px; }
    .bt-cost-table th:nth-child(4), .bt-cost-table td:nth-child(4) { display: none; }
}

/* ===== NEWSLETTER CTA ===== */
.bt-nl-cta {
    background: var(--bt-bg-muted);
    border-top: 1px solid var(--bt-border);
    border-bottom: 1px solid var(--bt-border);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.bt-nl-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,148,136,0.06) 0%, transparent 60%);
    pointer-events: none;
}
[data-theme="dark"] .bt-nl-cta::before {
    background: linear-gradient(135deg, rgba(13,148,136,0.08) 0%, transparent 55%);
}
.bt-nl-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.bt-nl-cta-left {
    flex: 1;
    min-width: 0;
}
.bt-nl-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d9488;
    background: rgba(13,148,136,0.1);
    border: 1px solid rgba(13,148,136,0.25);
    border-radius: 999px;
    padding: 5px 12px 5px 9px;
    margin-bottom: 16px;
}
[data-theme="dark"] .bt-nl-cta-badge {
    color: #2dd4bf;
    background: rgba(45,212,191,0.1);
    border-color: rgba(45,212,191,0.25);
}
.bt-nl-cta-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0d9488;
    animation: bt-nl-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
[data-theme="dark"] .bt-nl-cta-pulse {
    background: #2dd4bf;
}
@keyframes bt-nl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}
.bt-nl-cta-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--bt-text);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}
.bt-nl-cta-sub {
    font-size: 14px;
    color: var(--bt-text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}
.bt-nl-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}
.bt-nl-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d9488;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(13,148,136,0.3);
}
.bt-nl-cta-btn:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13,148,136,0.4);
}
.bt-nl-cta-btn svg {
    transition: transform 0.18s;
}
.bt-nl-cta-btn:hover svg {
    transform: translateX(3px);
}
[data-theme="dark"] .bt-nl-cta-btn {
    background: #0d9488;
    box-shadow: 0 4px 24px rgba(13,148,136,0.35);
}
[data-theme="dark"] .bt-nl-cta-btn:hover {
    background: #14b8a6;
    box-shadow: 0 8px 32px rgba(20,184,166,0.45);
}
.bt-nl-cta-hint {
    font-size: 11.5px;
    color: var(--bt-text-muted);
    margin: 0;
    text-align: right;
}
@media (max-width: 680px) {
    .bt-nl-cta { padding: 40px 0; }
    .bt-nl-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .bt-nl-cta-right { align-items: flex-start; }
    .bt-nl-cta-hint { text-align: left; }
}

/* ===== SUBNET SOCIAL FEED ===== */
.bt-social-grid { margin-top: 24px; }

.bt-social-loading {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}
.bt-social-skeleton {
    height: 160px;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--bt-bg-card) 25%, rgba(255,255,255,0.04) 50%, var(--bt-bg-card) 75%);
    background-size: 200% 100%;
    animation: bt-shimmer 1.4s infinite;
    border: 1px solid var(--bt-border);
}
@keyframes bt-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

#socialFeedCards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.bt-post-card {
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s, transform .2s;
    cursor: default;
}
.bt-post-card:hover {
    border-color: var(--bt-accent-border);
    transform: translateY(-2px);
}

.bt-post-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bt-post-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1da1f2 0%, #0d6efd 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: #fff;
    flex-shrink: 0;
    font-family: 'DM Mono', monospace;
}
.bt-post-meta { flex: 1; min-width: 0; }
.bt-post-name {
    font-size: 13px; font-weight: 600;
    color: var(--bt-text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bt-post-handle {
    font-size: 11px; color: var(--bt-text-muted);
    font-family: 'DM Mono', monospace;
}
.bt-post-badge {
    font-size: 10px; font-family: 'DM Mono', monospace;
    background: var(--bt-accent-bg);
    color: var(--bt-text-secondary);
    border: 1px solid var(--bt-accent-border);
    border-radius: 4px;
    padding: 2px 6px;
    white-space: nowrap;
}

.bt-post-text {
    font-size: 13px; line-height: 1.6;
    color: var(--bt-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.bt-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
}
.bt-post-stats {
    font-size: 11px; color: var(--bt-text-muted);
    font-family: 'DM Mono', monospace;
    display: flex; gap: 10px;
}
.bt-post-stat { display: flex; align-items: center; gap: 3px; }
.bt-post-link {
    font-size: 11px; color: #1da1f2;
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    display: flex; align-items: center; gap: 4px;
    opacity: .7; transition: opacity .15s;
}
.bt-post-link:hover { opacity: 1; }
.bt-post-date {
    font-size: 11px; color: var(--bt-text-muted);
    font-family: 'DM Mono', monospace;
}

/* Filter buttons */
.bt-social-filter-btn {
    font-size: 11px; font-family: 'DM Mono', monospace;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--bt-border);
    background: transparent;
    color: var(--bt-text-secondary);
    cursor: pointer;
    transition: all .15s;
}
.bt-social-filter-btn:hover,
.bt-social-filter-btn.active {
    background: var(--bt-accent-bg);
    border-color: var(--bt-accent-border);
    color: var(--bt-text);
}

.bt-social-empty {
    text-align: center;
    padding: 48px 0;
    color: var(--bt-text-muted);
    font-size: 14px;
}

@media (max-width: 680px) {
    #socialFeedCards { grid-template-columns: 1fr; }
    .bt-social-loading { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ALPHA FINDER — NAV LINK ACCENT
═══════════════════════════════════════════════════════════════ */
.nav-link--alpha {
    position: relative;
    color: #F5A623 !important;
}
[data-theme="light"] .nav-link--alpha { color: #d4880c !important; }

/* ═══════════════════════════════════════════════════════════════
   ALPHA FINDER — ALERT BANNER
═══════════════════════════════════════════════════════════════ */
.bt-af-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(245,166,35,0.08);
    border: 1px solid rgba(245,166,35,0.22);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.bt-af-alert-icon { font-size: 15px; }
.bt-af-alert-label {
    font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
    color: #F5A623; background: rgba(245,166,35,0.15);
    padding: 2px 7px; border-radius: 3px; font-weight: 600; white-space: nowrap;
}
.bt-af-alert-text { font-size: 13px; color: var(--bt-text); flex: 1; }
.bt-af-alert-vel  { font-size: 13px; font-weight: 600; color: #F5A623; margin-left: auto; white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════════
   ALPHA FINDER — LOADING GRID
═══════════════════════════════════════════════════════════════ */
.bt-af-loading-grid {
    display: grid;
    grid-template-columns: 260px 1fr 240px;
    gap: 16px;
    margin-top: 8px;
}
.bt-af-loading-hint {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.75rem;
    font-family: var(--font-mono, "DM Mono", monospace);
    color: var(--bt-text-secondary);
    opacity: 0;
    transition: opacity 0.5s ease;
    margin: 4px 0 0;
}

/* ═══════════════════════════════════════════════════════════════
   ALPHA FINDER — 3-COLUMN LAYOUT
═══════════════════════════════════════════════════════════════ */
.bt-af-layout {
    display: grid;
    grid-template-columns: 260px 1fr 240px;
    gap: 16px;
    align-items: start;
}

.bt-af-col {
    min-width: 0;
}

.bt-af-col-header {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bt-text-muted);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bt-border);
    margin-bottom: 12px;
}

/* ── LEFT: WATCHLIST ─────────────────────── */
.bt-af-watch-card {
    padding: 13px;
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: border-color .15s;
}
.bt-af-watch-card:hover { border-color: var(--bt-border-hover, rgba(255,255,255,0.15)); }
.bt-af-watch-card--top  { border-color: rgba(245,166,35,0.3); }

.bt-af-wc-head {
    display: flex; align-items: center;
    justify-content: space-between; gap: 6px; margin-bottom: 10px;
}
.bt-af-wc-name { display: flex; align-items: center; gap: 6px; min-width: 0; }
.bt-af-wc-label {
    font-size: 12px; font-weight: 600; color: var(--bt-text);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.bt-af-mom {
    font-size: 10px; font-weight: 600; padding: 2px 7px;
    border-radius: 4px; white-space: nowrap; flex-shrink: 0;
}
.bt-af-mom--strong   { background: rgba(74,222,128,0.12);  color: #4ade80; }
.bt-af-mom--building { background: rgba(245,166,35,0.12);  color: #F5A623; }
.bt-af-mom--neutral  { background: var(--bt-bg-muted);     color: var(--bt-text-secondary); }

.bt-af-score-row {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 5px;
}
.bt-af-score-lbl { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bt-text-muted); }
.bt-af-score-val { font-size: 12px; font-weight: 600; font-family: 'DM Mono', monospace; }

.bt-af-bar-track { height: 3px; background: var(--bt-border); border-radius: 2px; overflow: hidden; margin-bottom: 10px; }
.bt-af-bar-fill  { height: 100%; border-radius: 2px; transition: width 0.8s cubic-bezier(0.4,0,0.2,1); }
.bt-af-bar--high { background: linear-gradient(90deg, #4ade80, #86efac); }
.bt-af-bar--med  { background: linear-gradient(90deg, #F5A623, #FFB84D); }
.bt-af-bar--low  { background: rgba(255,255,255,0.15); }

.bt-af-score--high { color: #4ade80; }
.bt-af-score--med  { color: #F5A623; }
.bt-af-score--low  { color: var(--bt-text-secondary); }

.bt-af-wc-foot { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.bt-af-influencer { font-size: 11px; color: var(--bt-text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bt-af-stats { font-size: 10px; color: var(--bt-text-muted); white-space: nowrap; }

/* ── CENTER: FEED ─────────────────────────── */
.bt-af-post {
    padding: 13px 0;
    border-bottom: 1px solid var(--bt-border);
}
.bt-af-post:last-child { border-bottom: none; }

.bt-af-post-head {
    display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.bt-af-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--bt-bg-muted); border: 1px solid var(--bt-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: var(--bt-text-secondary);
    flex-shrink: 0;
}
.bt-af-post-meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.bt-af-handle { font-size: 12px; font-weight: 600; color: var(--bt-text); }
.bt-af-time   { font-size: 10px; color: var(--bt-text-muted); }
.bt-af-post-text { font-size: 12px; line-height: 1.6; color: var(--bt-text-secondary); margin-bottom: 7px; }
.bt-af-post-foot { display: flex; align-items: center; justify-content: space-between; }
.bt-af-eng  { font-size: 11px; color: var(--bt-text-muted); }
.bt-af-link { font-size: 11px; color: var(--bt-text-muted); text-decoration: none; transition: color .15s; }
.bt-af-link:hover { color: var(--bt-text); }
.bt-af-empty-sub { font-size: 13px; color: var(--bt-text-muted); padding: 20px 0; }

/* ── RIGHT: TOP SIGNALS ───────────────────── */
.bt-af-top-card {
    padding: 12px;
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.bt-af-top-rank {
    font-size: 11px; font-weight: 700; color: #F5A623;
    min-width: 18px; padding-top: 1px;
}
.bt-af-top-info { flex: 1; min-width: 0; }
.bt-af-top-name {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 8px; font-size: 12px; font-weight: 600; color: var(--bt-text);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bt-af-top-bar-row {
    display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.bt-af-top-bar-track { flex: 1; height: 3px; background: var(--bt-border); border-radius: 2px; overflow: hidden; }
.bt-af-top-score { font-size: 11px; font-weight: 700; font-family: 'DM Mono', monospace; flex-shrink: 0; }
.bt-af-top-stats {
    display: flex; flex-wrap: wrap; gap: 6px;
    font-size: 10px; color: var(--bt-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .bt-af-layout,
    .bt-af-loading-grid { grid-template-columns: 1fr 1fr; }
    .bt-af-col--right { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
    .bt-af-layout,
    .bt-af-loading-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   DEAD CODE STUB — old bt-social-tabs kept minimal for compat
═══════════════════════════════════════════════════════════════ */
.bt-social-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--bt-border);
    margin-bottom: 0;
}

.bt-social-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 18px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--bt-text-secondary);
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color .15s, border-color .15s;
    margin-bottom: -1px;
    letter-spacing: 0.01em;
}

.bt-social-tab:hover {
    color: var(--bt-text);
}

.bt-social-tab.active {
    color: var(--bt-text);
    border-bottom-color: var(--bt-accent);
}

.bt-social-tab svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.bt-social-tab.active svg {
    opacity: 1;
}

.bt-alpha-tab-badge {
    font-size: 9px;
    letter-spacing: 0.12em;
    padding: 1px 5px;
    border-radius: 3px;
    background: rgba(245,166,35,0.18);
    color: #F5A623;
    border: 1px solid rgba(245,166,35,0.3);
    font-weight: 600;
}

.bt-social-tab-panel { display: block; }
.bt-social-tab-panel:not(.active) { display: none; }

/* ═══════════════════════════════════════════════════════════════
   ALPHA FINDER — ALERT BANNER
═══════════════════════════════════════════════════════════════ */
.bt-alpha-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(245,166,35,0.08);
    border: 1px solid rgba(245,166,35,0.2);
    margin: 16px 0 4px;
    flex-wrap: wrap;
}

.bt-alpha-alert-icon {
    font-size: 15px;
}

.bt-alpha-alert-label {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #F5A623;
    background: rgba(245,166,35,0.15);
    padding: 2px 7px;
    border-radius: 3px;
    font-weight: 600;
    white-space: nowrap;
}

.bt-alpha-alert-text {
    font-size: 12px;
    color: var(--bt-text);
    flex: 1;
}

.bt-alpha-alert-vel {
    font-size: 12px;
    font-weight: 600;
    color: #F5A623;
    margin-left: auto;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   ALPHA FINDER — SIGNAL CARDS GRID
═══════════════════════════════════════════════════════════════ */
.bt-alpha-grid {
    margin-top: 16px;
}

.bt-alpha-loading {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

#alphaSignalCards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.bt-alpha-card {
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    border-radius: 10px;
    padding: 16px;
    transition: border-color .15s, transform .15s;
}

.bt-alpha-card:hover {
    border-color: rgba(245,166,35,0.25);
    transform: translateY(-1px);
}

.bt-alpha-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 8px;
}

.bt-alpha-card-name {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.bt-alpha-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--bt-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bt-alpha-momentum {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.bt-alpha-mom--strong   { background: rgba(74,222,128,0.12); color: #4ade80; }
.bt-alpha-mom--building { background: rgba(245,166,35,0.12); color: #F5A623; }
.bt-alpha-mom--neutral  { background: var(--bt-bg-muted);    color: var(--bt-text-secondary); }

/* Score row */
.bt-alpha-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.bt-alpha-score-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bt-text-muted);
}

.bt-alpha-score-val {
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Mono', monospace;
}

.bt-alpha-score--high { color: #4ade80; }
.bt-alpha-score--med  { color: #F5A623; }
.bt-alpha-score--low  { color: var(--bt-text-secondary); }

/* Score bar */
.bt-alpha-bar-track {
    height: 3px;
    background: var(--bt-border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.bt-alpha-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

.bt-alpha-bar--high { background: linear-gradient(90deg, #4ade80, #86efac); }
.bt-alpha-bar--med  { background: linear-gradient(90deg, #F5A623, #FFB84D); }
.bt-alpha-bar--low  { background: rgba(255,255,255,0.2); }

/* Stats row */
.bt-alpha-stats-row {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.bt-alpha-stat {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.bt-alpha-stat-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--bt-text);
    font-family: 'DM Mono', monospace;
    line-height: 1.2;
}

.bt-alpha-stat-lbl {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bt-text-muted);
}

/* Top post block */
.bt-alpha-top-post {
    border-top: 1px solid var(--bt-border);
    padding-top: 10px;
    margin-top: 4px;
}

.bt-alpha-top-post-label {
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bt-text-muted);
    margin-bottom: 5px;
}

.bt-alpha-post-text {
    font-size: 11px;
    line-height: 1.55;
    color: var(--bt-text-secondary);
    margin-bottom: 7px;
}

.bt-alpha-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bt-alpha-post-link {
    font-size: 11px;
    color: var(--bt-text-secondary);
    text-decoration: none;
    transition: color .15s;
}

.bt-alpha-post-link:hover {
    color: var(--bt-text);
}

@media (max-width: 680px) {
    #alphaSignalCards,
    .bt-alpha-loading { grid-template-columns: 1fr; }
    .bt-social-tab { padding: 10px 12px; font-size: 12px; }
}

/* ===== Fear & Greed Strip ===== */
.bt-fg-strip {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}
.bt-fg-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.bt-fg-loading {
    display: flex;
    gap: 6px;
    padding: 8px 0;
}
.bt-fg-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    animation: bt-fg-pulse 1.2s ease-in-out infinite;
}
.bt-fg-dot:nth-child(2) { animation-delay: 0.2s; }
.bt-fg-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bt-fg-pulse { 0%,80%,100%{opacity:0.3} 40%{opacity:1} }

.bt-fg-gauge { position: relative; width: 140px; flex-shrink: 0; }
.bt-fg-svg { width: 100%; display: block; }
.bt-fg-center {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 1px;
    white-space: nowrap;
}
.bt-fg-num { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.bt-fg-lbl { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

.bt-fg-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

.bt-fg-title { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.bt-fg-title-text { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.06em; }
.bt-fg-source { font-size: 0.6rem; color: rgba(255,255,255,0.3); }

.bt-fg-metrics { display: flex; gap: 16px; flex-wrap: wrap; }
.bt-fg-metric { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.bt-fg-metric-val { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.bt-fg-metric-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }

.bt-fg-scale { display: flex; flex-direction: column; gap: 4px; font-size: 0.65rem; font-weight: 700; margin-left: auto; }

@media (max-width: 640px) {
    .bt-fg-inner { gap: 14px; }
    .bt-fg-gauge { width: 110px; }
    .bt-fg-scale { display: none; }
    .bt-fg-divider:last-of-type { display: none; }
}

/* ===== Gainers & Losers Strip ===== */
.bt-gl-strip {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}
.bt-gl-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.bt-gl-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
}
.bt-gl-source {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 1px 5px;
}
.bt-gl-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.bt-gl-col { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.bt-gl-col-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 5px;
}
.bt-gl-col-label--gain { color: #26de81; }
.bt-gl-col-label--loss { color: #fc5c65; }
.bt-gl-vdivider {
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.bt-gl-cards { display: flex; flex-direction: column; gap: 8px; }
.bt-gl-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 10px 12px;
}
.bt-gl-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}
.bt-gl-netuid {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    font-family: 'DM Mono', monospace;
}
.bt-gl-change {
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'DM Mono', monospace;
}
.bt-gl-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bt-gl-price {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    font-family: 'DM Mono', monospace;
    margin-top: 2px;
}
@media (max-width: 540px) {
    .bt-gl-inner { flex-direction: column; gap: 16px; }
    .bt-gl-vdivider { display: none; }
    .bt-gl-cards { flex-direction: row; flex-wrap: wrap; }
    .bt-gl-card { flex: 1; min-width: 120px; }
}

/* ===== Subnet About Cards ===== */
.bt-about-section {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.bt-about-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.bt-about-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
}
.bt-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.bt-about-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.2s;
}
.bt-about-card:hover { border-color: rgba(255,255,255,0.18); }
.bt-about-card-top { display: flex; flex-direction: column; gap: 6px; }
.bt-about-card-id {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bt-about-symbol {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D4A832;
    line-height: 1;
}
.bt-about-netuid {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    font-family: 'DM Mono', monospace;
}
.bt-about-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
}
.bt-about-tagline {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
    margin: 0;
}
.bt-about-block { display: flex; flex-direction: column; gap: 5px; }
.bt-about-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.3);
}
.bt-about-text {
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.bt-about-card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.bt-about-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.bt-about-link:hover { color: rgba(255,255,255,0.8); }
.bt-about-contact {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
}
@media (max-width: 768px) { .bt-about-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .bt-about-grid { grid-template-columns: repeat(2, 1fr); } }

/* About card metrics row */
.bt-about-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bt-about-metric { display: flex; flex-direction: column; gap: 2px; min-width: 52px; }
.bt-about-metric-val { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9); font-family: 'DM Mono', monospace; }
.bt-about-metric-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== SUBNET PULSE ===== */
.bt-pulse-section {
    padding: 36px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.bt-pulse-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.bt-pulse-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bt-pulse-live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #26de81;
    box-shadow: 0 0 0 0 rgba(38, 222, 129, 0.6);
    animation: bt-pulse-ping 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes bt-pulse-ping {
    0%, 100% { box-shadow: 0 0 0 0 rgba(38,222,129,0.6); }
    50%       { box-shadow: 0 0 0 6px rgba(38,222,129,0); }
}
.bt-pulse-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
}
.bt-pulse-grid {
    display: flex;
    gap: 0;
    align-items: flex-start;
}
.bt-pulse-col { flex: 1; }
.bt-pulse-col--trending { flex: 1.1; padding-right: 28px; }
.bt-pulse-col--updates  { flex: 0.9; padding-left: 28px; }
.bt-pulse-vdivider {
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.bt-pulse-col-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

/* TRENDING LIST */
.bt-pulse-trending-list { display: flex; flex-direction: column; gap: 6px; }
.bt-pulse-trend-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: background 0.15s, border-color 0.15s;
}
.bt-pulse-trend-item:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.bt-pulse-rank {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    font-family: 'DM Mono', monospace;
    min-width: 16px;
    padding-top: 1px;
}
.bt-pulse-trend-body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.bt-pulse-trend-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.bt-pulse-trend-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}
.bt-pulse-trend-sn {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.25);
    font-family: 'DM Mono', monospace;
}
.bt-pulse-change {
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'DM Mono', monospace;
    margin-left: auto;
}
.bt-pulse-bar-wrap {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}
.bt-pulse-bar {
    height: 100%;
    background: linear-gradient(90deg, #D4A832, #26de81);
    border-radius: 2px;
    transition: width 0.6s ease;
}
.bt-pulse-trend-meta {
    display: flex;
    gap: 10px;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.25);
    font-family: 'DM Mono', monospace;
}

/* IDENTITY UPDATES */
.bt-pulse-updates-list { display: flex; flex-direction: column; gap: 12px; }
.bt-pulse-update-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.15s;
}
.bt-pulse-update-card:hover { border-color: rgba(212,168,50,0.3); }
.bt-pulse-update-top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bt-pulse-logo {
    width: 36px; height: 36px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.bt-pulse-logo-placeholder {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(212,168,50,0.15);
    border: 1px solid rgba(212,168,50,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 800;
    color: #D4A832;
    font-family: 'DM Mono', monospace;
    flex-shrink: 0;
}
.bt-pulse-update-info { flex: 1; min-width: 0; }
.bt-pulse-update-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    gap: 6px;
}
.bt-pulse-update-sn {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.25);
    font-family: 'DM Mono', monospace;
    font-weight: 400;
}
.bt-pulse-update-time {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.25);
    font-family: 'DM Mono', monospace;
    margin-top: 2px;
}
.bt-pulse-update-desc {
    font-size: 0.76rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.bt-pulse-update-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.bt-pulse-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    padding: 3px 8px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    transition: all 0.15s;
}
.bt-pulse-link:hover {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}
@media (max-width: 768px) {
    .bt-pulse-grid { flex-direction: column; gap: 24px; }
    .bt-pulse-col--trending { padding-right: 0; }
    .bt-pulse-col--updates  { padding-left: 0; }
    .bt-pulse-vdivider { display: none; }
}

/* ── Community Digest ──────────────────────────────── */
.bt-digest-section {
    margin: 2.5rem auto;
    max-width: 1100px;
    padding: 0 1.5rem;
}
.bt-digest-header {
    margin-bottom: 1.5rem;
}
.bt-digest-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}
.bt-digest-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin: 0;
}
.bt-digest-subtitle {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.05em;
}
.bt-digest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}
.bt-digest-shimmer {
    height: 160px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
.bt-digest-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s, background 0.2s;
}
.bt-digest-card:hover {
    border-color: rgba(212,168,50,0.3);
    background: rgba(255,255,255,0.06);
}
.bt-digest-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}
.bt-digest-card-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.bt-digest-subnet-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
}
.bt-digest-sn {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.06);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}
.bt-digest-card-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.bt-digest-price {
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}
.bt-digest-change {
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
}
.bt-digest-analysis {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin: 0;
    flex: 1;
}
.bt-digest-card-footer {
    display: flex;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.6rem;
}
.bt-digest-meta {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
}
@media (max-width: 600px) {
    .bt-digest-grid { grid-template-columns: 1fr; }
}
