/* --- DESIGN SYSTEM & CUSTOM PROPERTIES --- */
:root {
    /* Color System */
    --bg-dark-obsidian: #090A0F;
    --bg-card-navy: rgba(16, 17, 26, 0.75);
    --bg-sidebar: #0C0D14;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-glow: rgba(138, 43, 226, 0.25);
    
    /* Neon Accent Palette */
    --neon-violet: #8A2BE2;
    --neon-violet-glow: rgba(138, 43, 226, 0.4);
    --neon-cyan: #00E5FF;
    --neon-cyan-glow: rgba(0, 229, 255, 0.4);
    --neon-emerald: #00FF87;
    --neon-emerald-glow: rgba(0, 255, 135, 0.3);
    --neon-yellow: #FFD700;
    --neon-red: #FF3366;
    
    /* Typography */
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --font-heading: 'Space Grotesk', 'Outfit', system-ui, -apple-system, sans-serif;
    --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    
    /* Layout Dimensions & Shadows */
    --sidebar-width: 280px;
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --glass-blur: blur(14px);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- ROOT STYLES & RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark-obsidian);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    height: 100vh;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-obsidian);
}
::-webkit-scrollbar-thumb {
    background: #1E2030;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-violet);
}

/* --- MAIN DASHBOARD LAYOUT --- */
.dashboard-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* --- SIDEBAR NAVIGATION --- */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 24px;
    z-index: 10;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.brand-logo {
    font-size: 24px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan-glow);
    font-weight: 800;
}

.brand-name h1 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    line-height: 1.1;
}

.brand-name span {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

.sidebar-nav {
    flex: 1;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.nav-btn {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.03);
    padding-left: 20px;
}

.nav-btn.active {
    color: var(--text-primary);
    background-color: rgba(138, 43, 226, 0.12);
    border: 1px solid rgba(138, 43, 226, 0.25);
    box-shadow: inset 0 0 10px rgba(138, 43, 226, 0.05);
}

.nav-btn.active .nav-icon {
    text-shadow: 0 0 12px var(--neon-violet-glow);
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.green {
    background-color: var(--neon-emerald);
    box-shadow: 0 0 8px var(--neon-emerald-glow);
}

.status-dot.blue {
    background-color: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan-glow);
}

.status-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.version-badge {
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.03);
    padding: 4px 8px;
    border-radius: 4px;
    align-self: flex-start;
    font-weight: 600;
}

/* --- MAIN CONTENT VIEWPORT --- */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    padding: 40px;
}

/* Header Panel */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.header-pretitle {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.25);
    display: block;
    margin-bottom: 4px;
}

.header-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

/* --- BUTTONS --- */
.btn {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--neon-violet);
    color: var(--text-primary);
    box-shadow: 0 4px 14px 0 var(--neon-violet-glow);
}

.btn-primary:hover {
    background-color: #9d3bf0;
    box-shadow: 0 6px 20px 0 var(--neon-violet-glow);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 6px;
}

/* --- CARDS & BLOCKS --- */
.card {
    background: var(--bg-card-navy);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 24px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* --- TABS SYSTEM --- */
.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-pane.active {
    display: block;
}

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

/* --- TAB 1: OVERVIEW METRIC CARDS --- */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.metric-card {
    background: var(--bg-card-navy);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Sleek Glowing Card Overlays */
.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.glow-purple::before {
    background-color: var(--neon-violet);
    box-shadow: 0 0 12px var(--neon-violet);
}
.glow-purple:hover {
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.15), var(--card-shadow);
    border-color: var(--border-color-glow);
}

.glow-cyan::before {
    background-color: var(--neon-cyan);
    box-shadow: 0 0 12px var(--neon-cyan);
}
.glow-cyan:hover {
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.15), var(--card-shadow);
    border-color: rgba(0, 229, 255, 0.2);
}

.glow-green::before {
    background-color: var(--neon-emerald);
    box-shadow: 0 0 12px var(--neon-emerald);
}
.glow-green:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 135, 0.12), var(--card-shadow);
    border-color: rgba(0, 255, 135, 0.15);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.metric-title {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-badge {
    font-size: 9px;
    font-weight: 700;
    color: var(--neon-violet);
    background-color: rgba(138, 43, 226, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
}

.metric-badge-blue {
    font-size: 9px;
    font-weight: 700;
    color: var(--neon-cyan);
    background-color: rgba(0, 229, 255, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
}

.metric-badge-green {
    font-size: 9px;
    font-weight: 700;
    color: var(--neon-emerald);
    background-color: rgba(0, 255, 135, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-subtext {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --- DATA TABLE STYLING --- */
.card-header-controls select {
    background-color: #12131C;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.card-header-controls select:hover {
    border-color: var(--neon-violet);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.data-table th {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.data-table tbody tr {
    transition: var(--transition-smooth);
}

.data-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.015);
}

.gpu-cell-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.badge-platform {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-block;
}

.badge-clore {
    background-color: rgba(255, 51, 102, 0.12);
    color: #FF3366;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.badge-tensordock {
    background-color: rgba(0, 229, 255, 0.12);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.badge-vast {
    background-color: rgba(138, 43, 226, 0.12);
    color: var(--neon-violet);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.badge-runpod {
    background-color: rgba(255, 215, 0, 0.12);
    color: var(--neon-yellow);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.badge-thunder {
    background-color: rgba(99, 102, 241, 0.12);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.badge-spheron {
    background-color: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.green-text {
    color: var(--neon-emerald) !important;
    font-weight: 600;
}

.cyan-text {
    color: var(--neon-cyan) !important;
    font-weight: 600;
}

.muted-text {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

/* --- TAB 2: CALCULATOR LAYOUT --- */
.calculator-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 24px;
    align-items: start;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--neon-cyan);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.form-group {
    margin-bottom: 20px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 500;
}

.slider-val {
    color: var(--text-primary);
    font-weight: 600;
    font-family: var(--font-heading);
}

/* Modern Input Sliders */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #191B26;
    border-radius: 4px;
    border: none;
}

input[type=range]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--neon-violet);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -5px;
    box-shadow: 0 0 10px var(--neon-violet-glow);
    transition: var(--transition-smooth);
}

input[type=range]::-webkit-slider-thumb:hover {
    background: var(--neon-cyan);
    box-shadow: 0 0 12px var(--neon-cyan-glow);
    transform: scale(1.1);
}

/* Results grid on right */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.result-card {
    background: var(--bg-card-navy);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--card-shadow);
}

.secondary-glow {
    border-color: rgba(255, 255, 255, 0.05);
}

.primary-glow {
    border-color: rgba(138, 43, 226, 0.2);
    background: linear-gradient(135deg, rgba(16, 17, 26, 0.8) 0%, rgba(30, 20, 50, 0.4) 100%);
    box-shadow: 0 8px 32px 0 rgba(138, 43, 226, 0.08), var(--card-shadow);
}

.result-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
}

.highlighted-value {
    font-size: 32px;
    line-height: 1.1;
    margin: 4px 0;
}

.result-subtext {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

/* Chart block */
.chart-card {
    margin-bottom: 0;
}

.chart-container {
    position: relative;
    height: 240px;
    width: 100%;
}

/* --- TAB 3: STRATEGIC PLAYBOOK --- */
.playbook-container {
    max-width: 1000px;
}

/* Playbook alert details */
.playbook-alert {
    border-left: 4px solid var(--neon-emerald);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 28px;
    background: rgba(0, 255, 135, 0.04);
    display: flex;
    gap: 16px;
    box-shadow: var(--card-shadow);
}

.alert-icon {
    font-size: 24px;
}

.alert-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.alert-content p {
    font-size: 13.5px;
    color: var(--text-secondary);
}

.playbook-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

/* Lists formatting */
.hardware-list, .platform-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hw-item, .pf-item {
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 16px;
    transition: var(--transition-smooth);
}

.hw-item:hover, .pf-item:hover {
    background-color: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.06);
}

.hw-header, .pf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.hw-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
}

.pf-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--neon-cyan);
}

.hw-vram {
    font-size: 11px;
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.pf-role {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.hw-score {
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-emerald);
}

.hw-desc {
    font-size: 12.5px;
    color: var(--text-secondary);
}

.hw-cons {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    border-top: 1px dashed rgba(255, 255, 255, 0.03);
    padding-top: 4px;
}

.pf-meta {
    font-size: 12px;
    color: var(--text-secondary);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 6px;
}

.pf-best {
    font-size: 11px;
    color: var(--text-muted);
    border-top: 1px dashed rgba(255, 255, 255, 0.03);
    padding-top: 4px;
}

/* Timeline/Checklist layout */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 5px;
    width: 2px;
    height: calc(100% - 40px);
    background: #191B26;
}

.timeline-item {
    position: relative;
    margin-bottom: 28px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-step {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #12131C;
    border: 2px solid var(--neon-violet);
    box-shadow: 0 0 10px var(--neon-violet-glow);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--text-secondary);
}

.timeline-content code {
    font-family: monospace;
    background-color: #12131C;
    color: var(--neon-cyan);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

/* Operational Risks section */
.risks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.risk-item {
    background-color: rgba(255, 51, 102, 0.02);
    border: 1px solid rgba(255, 51, 102, 0.05);
    border-radius: 10px;
    padding: 16px;
}

.risk-item h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.risk-item p {
    font-size: 12px;
    color: var(--text-secondary);
}

.risk-item strong {
    color: var(--neon-emerald);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1200px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .calculator-layout {
        grid-template-columns: 1fr;
    }
    .playbook-grid {
        grid-template-columns: 1fr;
    }
    .risks-grid {
        grid-template-columns: 1fr;
    }
}

/* --- COLUMN SORTING & HEADER STYLING --- */
.data-table th[onclick]:hover {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
}

.data-table th span {
    margin-left: 4px;
    font-size: 10px;
    color: var(--text-muted);
}

/* --- DYNAMIC BUY/SELL SIGNALS DESK --- */
.signals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .signals-grid {
        grid-template-columns: 1fr;
    }
}

.signal-card {
    background: var(--bg-card-navy);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--text-muted);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.signal-card:hover {
    transform: translateY(-2px);
}

.signal-card.strong-buy {
    border-left-color: var(--neon-emerald);
    box-shadow: 0 4px 20px rgba(0, 255, 135, 0.05), var(--card-shadow);
}

.signal-card.buy {
    border-left-color: var(--neon-cyan);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.05), var(--card-shadow);
}

.signal-card.hold {
    border-left-color: rgba(100, 116, 139, 0.4);
}

.signal-badge {
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.signal-badge.strong-buy {
    background-color: rgba(0, 255, 135, 0.12);
    color: var(--neon-emerald);
    border: 1px solid rgba(0, 255, 135, 0.2);
}

.signal-badge.buy {
    background-color: rgba(0, 229, 255, 0.12);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.signal-badge.hold {
    background-color: rgba(100, 116, 139, 0.12);
    color: var(--text-secondary);
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.signal-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.03);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
}

.signal-stat {
    display: flex;
    flex-direction: column;
}

.signal-stat-label {
    font-size: 9.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.signal-stat-val {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 600;
    margin-top: 2px;
}

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

.signal-tag {
    font-size: 11px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--text-secondary);
    font-weight: 500;
}
