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

:root {
    --bg: radial-gradient(circle at 12% 18%, rgba(82, 247, 255, 0.18), transparent 30%),
           radial-gradient(circle at 84% 12%, rgba(255, 159, 67, 0.18), transparent 28%),
           radial-gradient(circle at 70% 82%, rgba(179, 255, 102, 0.14), transparent 26%),
           linear-gradient(145deg, #040712 0%, #070c1d 38%, #040712 100%);
    --bg-soft: #0b1226;
    --panel: rgba(10, 16, 35, 0.76);
    --panel-strong: rgba(12, 20, 44, 0.94);
    --panel-alt: rgba(7, 12, 28, 0.88);
    --line: rgba(148, 184, 255, 0.18);
    --line-strong: rgba(109, 232, 255, 0.34);
    --text: #edf7ff;
    --muted: #8ca5c7;
    --accent: #52f7ff;
    --accent-2: #b3ff66;
    --accent-3: #ff9f43;
    --accent-4: #ff6f91;
    --positive: #7dff9b;
    --danger: #ff6f91;
    --warning: #ffd166;
    --shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    --glow: 0 0 0 1px rgba(82, 247, 255, 0.08), 0 0 28px rgba(82, 247, 255, 0.16);
    --body-grid: rgba(135, 190, 255, 0.06);
    --body-glow: rgba(82, 247, 255, 0.08);
    --body-grid-rgb: 135, 190, 255;
    --body-glow-rgb: 82, 247, 255;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

/* Black Theme - Pure Black */
[data-theme="black"] {
    --bg: #000000;
    --bg-soft: #0f0f0f;
    --panel: #1a1a1a;
    --panel-strong: #222222;
    --panel-alt: #0d0d0d;
    --line: rgba(255, 255, 255, 0.15);
    --line-strong: rgba(255, 255, 255, 0.3);
    --text: #ffffff;
    --muted: #9a9a9a;
    --accent: #ffffff;
    --accent-2: #e0e0e0;
    --accent-3: #666666;
    --accent-4: #333333;
    --positive: #00ff00;
    --danger: #ff3333;
    --warning: #ffff00;
    --shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
    --glow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 28px rgba(255, 255, 255, 0.25);
    --body-grid: rgba(255, 255, 255, 0.03);
    --body-glow: rgba(255, 255, 255, 0.05);
    --body-grid-rgb: 255, 255, 255;
    --body-glow-rgb: 255, 255, 255;
}

/* White Theme - Pure White */
[data-theme="white"] {
    --bg: #ffffff;
    --bg-soft: #fafbfc;
    --panel: #ffffff;
    --panel-strong: #f5f5f5;
    --panel-alt: #eeeeee;
    --line: rgba(0, 0, 0, 0.15);
    --line-strong: rgba(0, 0, 0, 0.25);
    --text: #000000;
    --muted: #666666;
    --accent: #0066cc;
    --accent-2: #00aa00;
    --accent-3: #ff8800;
    --accent-4: #cc0000;
    --positive: #00aa00;
    --danger: #cc0000;
    --warning: #ff8800;
    --shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    --glow: 0 0 0 1px rgba(0, 102, 204, 0.2), 0 0 28px rgba(0, 102, 204, 0.15);
    --body-grid: rgba(0, 0, 0, 0.04);
    --body-glow: rgba(0, 0, 0, 0.05);
    --body-grid-rgb: 0, 0, 0;
    --body-glow-rgb: 0, 0, 0;
}

html[data-theme="black"] {
    --body-grid: rgba(255, 255, 255, 0.06);
    --body-glow: rgba(255, 255, 255, 0.1);
    --body-grid-rgb: 255, 255, 255;
    --body-glow-rgb: 255, 255, 255;
}

html[data-theme="white"] .public-nav,
html[data-theme="white"] .header,
html[data-theme="white"] .hero-panel,
html[data-theme="white"] .landing-section,
html[data-theme="white"] .card,
html[data-theme="white"] .table-wrap,
html[data-theme="white"] .market-board,
html[data-theme="white"] .empty-state,
html[data-theme="white"] .sidebar,
html[data-theme="white"] .sidebar-brand,
html[data-theme="white"] .sidebar-status {
    background: var(--panel);
    border-color: var(--line);
    color: var(--text);
}

html[data-theme="white"] .public-nav {
    background: rgba(255, 255, 255, 0.85);
}

html[data-theme="white"] .header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

html[data-theme="white"] .button.secondary,
html[data-theme="white"] .action-btn.secondary,
html[data-theme="white"] .chip.secondary {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.1);
}

html[data-theme="white"] .empty-state {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.12);
}

html[data-theme="white"] .sidebar-nav a,
html[data-theme="white"] .sidebar-profile-role,
html[data-theme="white"] .sidebar-brand-copy strong,
html[data-theme="white"] .sidebar-brand-copy span {
    color: var(--text);
}

html[data-theme="black"] .public-nav,
html[data-theme="black"] .header,
html[data-theme="black"] .hero-panel,
html[data-theme="black"] .landing-section,
html[data-theme="black"] .card,
html[data-theme="black"] .table-wrap,
html[data-theme="black"] .market-board,
html[data-theme="black"] .empty-state,
html[data-theme="black"] .sidebar,
html[data-theme="black"] .sidebar-brand,
html[data-theme="black"] .sidebar-status {
    background: var(--panel);
    border-color: var(--line);
    color: var(--text);
}

html[data-theme="black"] .public-nav {
    background: rgba(10, 16, 35, 0.92);
}

html[data-theme="black"] .header {
    background: rgba(9, 15, 31, 0.88);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

html[data-theme="black"] .button.secondary,
html[data-theme="black"] .action-btn.secondary,
html[data-theme="black"] .chip.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="black"] .empty-state {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    transition: background 260ms ease, color 260ms ease;
}

body.sidebar-scroll-lock {
    overflow: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background:
        linear-gradient(rgba(var(--body-grid-rgb, 135, 190, 255), 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--body-grid-rgb, 135, 190, 255), 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 38%, transparent 88%);
    opacity: 0.45;
}

body::after {
    background: radial-gradient(circle at center, rgba(var(--body-glow-rgb, 82, 247, 255), 0.08), transparent 62%);
    filter: blur(40px);
    opacity: 0.7;
}

body::after {
    background: radial-gradient(circle at center, rgba(82, 247, 255, 0.08), transparent 62%);
    filter: blur(40px);
    opacity: 0.7;
}

img {
    max-width: 100%;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
.button,
.chip,
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(82, 247, 255, 0.18);
    border-radius: 999px;
    padding: 12px 18px;
    color: #04111f;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    box-shadow: 0 18px 40px rgba(82, 247, 255, 0.18);
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

button:hover,
.button:hover,
.chip:hover,
.action-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 20px 46px rgba(82, 247, 255, 0.24);
}

button:focus-visible,
.button:focus-visible,
.chip:focus-visible,
.action-btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 2px solid rgba(179, 255, 102, 0.75);
    outline-offset: 2px;
}

.button.secondary,
.button.ghost,
.chip.secondary,
.chip.ghost,
.action-btn.secondary,
.modal-close {
    background: rgba(10, 16, 35, 0.64);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--glow);
}

.button.secondary:hover,
.button.ghost:hover,
.chip.secondary:hover,
.chip.ghost:hover,
.action-btn.secondary:hover,
.modal-close:hover {
    box-shadow: 0 0 0 1px rgba(179, 255, 102, 0.18), 0 0 32px rgba(179, 255, 102, 0.16);
}

.button.danger,
.action-btn.danger {
    color: white;
    background: linear-gradient(135deg, var(--danger) 0%, var(--accent-4) 100%);
    border-color: rgba(255, 111, 145, 0.22);
    box-shadow: 0 18px 40px rgba(255, 111, 145, 0.2);
}

.app-shell {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: stretch;
    --sidebar-width: 240px;
}

.page-shell,
.content-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 18px 0;
}

.page-shell {
    padding-top: 78px;
}

.sidebar-toggle {
    position: fixed;
    top: 18px;
    left: calc(var(--sidebar-width, 240px) + 18px);
    z-index: 1300;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 14, 28, 0.95);
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: left 0.3s ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.sidebar-toggle:hover {
    transform: translateY(-1px);
    background: rgba(82, 247, 255, 0.08);
    border-color: rgba(82, 247, 255, 0.18);
}

.sidebar-toggle-icon {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sidebar-toggle-text {
    display: inline-block;
    white-space: nowrap;
}

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1220;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(3, 8, 20, 0.56);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.sidebar {
    position: sticky;
    top: 0;
    align-self: flex-start;
    width: var(--sidebar-width);
    flex-shrink: 0;
    min-height: 100vh;
    margin: 18px;
    padding: 24px 18px;
    border-radius: 28px;
    border: 1px solid rgba(111, 223, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(11, 18, 38, 0.96) 0%, rgba(6, 10, 24, 0.94) 100%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: width 0.3s ease, transform 0.3s ease, opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease, border 0.3s ease;
}

.app-shell.sidebar-hidden {
    --sidebar-width: 0px;
}

.app-shell.sidebar-hidden .sidebar {
    display: none;
    width: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
}

.app-shell.sidebar-hidden .sidebar .sidebar-brand,
.app-shell.sidebar-hidden .sidebar .sidebar-status,
.app-shell.sidebar-hidden .sidebar .sidebar-nav,
.app-shell.sidebar-hidden .sidebar .sidebar-profile,
.app-shell.sidebar-hidden .sidebar .sidebar-logout {
    display: none;
}

.app-shell.sidebar-hidden .sidebar-toggle {
    left: 18px;
}

.sidebar-glow {
    position: absolute;
    inset: auto auto -25% -10%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(82, 247, 255, 0.28) 0%, transparent 72%);
    filter: blur(14px);
    pointer-events: none;
}

.sidebar-brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.sidebar-brand-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    padding: 10px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(82, 247, 255, 0.2), rgba(255, 159, 67, 0.16));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 24px rgba(82, 247, 255, 0.14);
}

.sidebar-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sidebar-brand-copy strong,
.public-brand,
.header-title,
.page-title,
.hero-title,
.section-title,
.metric-card h3,
.feature-card h3,
.tip-card h3,
.card h2,
.modal-title {
    font-family: 'Sora', sans-serif;
}

.sidebar-brand-copy strong {
    font-size: 16px;
    letter-spacing: -0.03em;
}

.sidebar-brand-copy span {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.sidebar-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(82, 247, 255, 0.08);
    border: 1px solid rgba(82, 247, 255, 0.18);
    color: #dffbff;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-2);
    box-shadow: 0 0 12px rgba(179, 255, 102, 0.8);
    animation: pulse-dot 1.8s ease-in-out infinite;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-link,
.sidebar-nav a,
.nav-action {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    color: #d8ebff;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.nav-link:hover,
.nav-link.active,
.sidebar-nav a:hover,
.sidebar-nav a.active,
.nav-action:hover,
.nav-action.active {
    transform: translateX(4px);
    border-color: rgba(82, 247, 255, 0.28);
    background: linear-gradient(135deg, rgba(82, 247, 255, 0.18), rgba(255, 159, 67, 0.12));
    box-shadow: 0 0 0 1px rgba(82, 247, 255, 0.18), 0 16px 34px rgba(0, 0, 0, 0.22);
}

.nav-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-2);
    flex-shrink: 0;
}

.nav-text {
    font-weight: 600;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sidebar-profile-avatar {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
}

.sidebar-profile-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sidebar-logout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin: 18px 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sidebar-logout:hover {
    transform: translateX(2px);
    background: rgba(82, 247, 255, 0.08);
    border-color: rgba(82, 247, 255, 0.18);
}

.sidebar-profile-name {
    font-size: 14px;
    font-weight: 700;
}

.sidebar-profile-role {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.sidebar-profile-kicker {
    color: var(--accent-3);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
}

.sidebar-profile-name {
    font-size: 18px;
    font-weight: 700;
}

.sidebar-profile-role {
    color: var(--muted);
    font-size: 13px;
}

.header {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 30px 22px;
    margin-bottom: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(111, 223, 255, 0.1);
    background: linear-gradient(180deg, rgba(9, 15, 31, 0.82) 0%, rgba(9, 14, 29, 0.56) 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(82, 247, 255, 0.52), transparent);
}

.header-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 760px;
}

.eyebrow,
.sidebar-profile-kicker,
.section-note,
.stat-label,
.header-subtitle strong {
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.eyebrow {
    color: var(--accent-2);
    font-size: 11px;
    font-weight: 700;
}

.header-title,
.page-title,
.hero-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.hero-title-xl {
    font-family: 'Sora', sans-serif;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    margin: 0;
}

.hero-title-lg {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0;
}

.header-subtitle,
.page-subtitle,
.hero-subtitle,
.hero-lead,
.form-footer,
.empty-state,
.account-meta,
.guide-text,
.metric-card p,
.feature-card p,
.tip-card p,
.card p {
    color: var(--muted);
}

.header-actions,
.inline-actions,
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.main-content {
    padding: 22px 8px 34px 22px;
}

.dashboard-market-panel {
    margin-left: 22px !important;
    margin-right: 8px !important;
}

.card,
.form-container,
.chart-card,
.table-card,
.auth-card,
.hero-panel,
.feature-card,
.tip-card,
.metric-card,
.cta-card,
.account-item,
.guide-item,
.stat-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(111, 223, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(13, 20, 42, 0.88) 0%, rgba(8, 13, 29, 0.82) 100%);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.card::before,
.form-container::before,
.chart-card::before,
.table-card::before,
.auth-card::before,
.hero-panel::before,
.feature-card::before,
.tip-card::before,
.metric-card::before,
.cta-card::before,
.account-item::before,
.guide-item::before,
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(82, 247, 255, 0.08), transparent 44%, rgba(255, 159, 67, 0.06));
    pointer-events: none;
}

.card,
.form-container,
.chart-card,
.table-card,
.auth-card,
.hero-panel,
.feature-card,
.tip-card,
.metric-card,
.cta-card {
    padding: 24px;
}

.card.compact {
    padding: 18px 20px;
}

.grid-two,
.grid-three,
.stat-grid,
.metric-grid,
.feature-grid,
.tip-grid,
.pie-grid,
.auth-layout,
.dashboard-grid,
.stack-grid,
.mini-grid,
.process-grid {
    display: grid;
    gap: 18px;
}

.grid-two,
.auth-layout,
.dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three,
.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stack-grid {
    grid-template-columns: 1fr;
}

.stat-grid,
.metric-grid,
.pie-grid,
.mini-grid,
.feature-grid,
.tip-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.dashboard-grid {
    align-items: start;
}

.dashboard-grid > .card:first-child {
    min-height: 100%;
}

.dashboard-overview {
    display: grid;
    gap: 18px;
}

.dashboard-data-stack {
    display: grid;
    gap: 18px;
}

.chart-shell,
.pie-chart-wrap {
    position: relative;
}

.chart-shell {
    min-height: 340px;
}

.chart-shell canvas {
    width: 100% !important;
    height: 340px !important;
}

.breakdown-card {
    padding-top: 22px;
}

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

.breakdown-panel {
    position: relative;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(111, 223, 255, 0.12);
    background: linear-gradient(180deg, rgba(14, 21, 44, 0.82), rgba(9, 13, 29, 0.7));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.breakdown-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(82, 247, 255, 0.08), transparent 48%, rgba(179, 255, 102, 0.06));
    pointer-events: none;
}

.breakdown-panel-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
}

.breakdown-panel-heading h3 {
    margin: 0 0 6px;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.pie-chart-wrap {
    min-height: 280px;
}

.pie-chart-wrap canvas {
    width: 100% !important;
    height: 280px !important;
}

.dashboard-data-card {
    padding-top: 22px;
}

.market-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
    gap: 14px;
}

.tradingview-quote-card {
    position: relative;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(111, 223, 255, 0.12);
    background: linear-gradient(180deg, rgba(14, 21, 44, 0.82), rgba(9, 13, 29, 0.7));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tradingview-quote-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(82, 247, 255, 0.08), transparent 48%, rgba(179, 255, 102, 0.06));
    pointer-events: none;
}

.tradingview-quote-card .section-note {
    position: relative;
    z-index: 1;
    display: block;
}

.tradingview-quote-card h3 {
    position: relative;
    z-index: 1;
    margin: 4px 0 10px;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.tradingview-quote-widget {
    position: relative;
    z-index: 1;
    min-height: 96px;
    border-radius: 16px;
    overflow: hidden;
}

.tradingview-quote-widget .tradingview-widget-container__widget,
.tradingview-quote-widget iframe {
    min-height: 96px !important;
    height: 96px !important;
    width: 100% !important;
}

.fx-hours-board {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(88, 168, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(19, 27, 49, 0.98), rgba(8, 13, 28, 0.96));
}

.fx-hours-head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.fx-hours-head h2,
.fx-volume-header h3 {
    margin: 0;
}

.fx-hours-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.fx-hours-meta-card {
    min-width: 150px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(120, 194, 255, 0.16);
    background: rgba(7, 13, 29, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fx-hours-meta-card span,
.fx-insight-card span,
.fx-session-window em {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fx-hours-meta-card span {
    color: var(--muted);
}

.fx-hours-meta-card strong {
    display: block;
    margin-top: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.fx-hours-timeline {
    position: relative;
    padding-top: 84px;
}

.fx-hours-bubble {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 3;
    min-width: 112px;
    padding: 12px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #34c0ff, #1387ff);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(23, 132, 255, 0.22);
    transform: translateX(-50%);
}

.fx-hours-bubble::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 18px;
    height: 18px;
    background: #1c97ff;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
}

.fx-hours-bubble strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.fx-hours-bubble span {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.fx-hours-scale,
.fx-volume-scale {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.fx-scale-mark {
    position: relative;
    min-height: 18px;
    padding-top: 12px;
}

.fx-scale-mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 10px;
    background: rgba(180, 203, 236, 0.26);
}

.fx-scale-mark:last-child {
    text-align: right;
}

.fx-scale-mark:last-child::before {
    left: auto;
    right: 0;
}

.fx-scale-mark span {
    color: rgba(180, 203, 236, 0.76);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.fx-hours-grid-wrap {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(123, 178, 255, 0.12);
    background: linear-gradient(180deg, rgba(16, 24, 44, 0.96), rgba(9, 15, 30, 0.9));
}

.fx-hours-grid-wrap::before,
.fx-session-track::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.06) 0 1px,
        transparent 1px calc(100% / 24)
    );
    pointer-events: none;
}

.fx-hours-now-line,
.fx-volume-now-line {
    position: absolute;
    top: 14px;
    bottom: 14px;
    z-index: 2;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(66, 196, 255, 0.16), rgba(66, 196, 255, 0.9), rgba(66, 196, 255, 0.16));
    box-shadow: 0 0 0 1px rgba(66, 196, 255, 0.12), 0 0 22px rgba(66, 196, 255, 0.22);
    transform: translateX(-50%);
    pointer-events: none;
}

.fx-session-rows {
    position: relative;
    display: grid;
    gap: 14px;
}

.fx-session-row {
    position: relative;
}

.fx-session-track {
    position: relative;
    min-height: 82px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.fx-session-row.active .fx-session-track {
    border-color: rgba(96, 201, 255, 0.2);
    background: rgba(18, 35, 60, 0.58);
}

.fx-session-window {
    position: absolute;
    top: 10px;
    bottom: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.fx-session-window strong {
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.fx-session-window small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fx-session-window em {
    color: rgba(255, 255, 255, 0.64);
    font-style: normal;
}

.fx-session-chip {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.fx-session-window.sydney {
    background: linear-gradient(135deg, rgba(91, 168, 255, 0.68), rgba(55, 104, 255, 0.46));
}

.fx-session-window.tokyo {
    background: linear-gradient(135deg, rgba(255, 112, 134, 0.64), rgba(213, 60, 110, 0.42));
}

.fx-session-window.london {
    background: linear-gradient(135deg, rgba(255, 189, 91, 0.72), rgba(209, 119, 40, 0.46));
}

.fx-session-window.new_york {
    background: linear-gradient(135deg, rgba(114, 231, 191, 0.7), rgba(35, 172, 145, 0.46));
}

.fx-volume-panel {
    margin-top: 20px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(123, 178, 255, 0.12);
    background:
        radial-gradient(circle at top right, rgba(71, 255, 209, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(15, 22, 40, 0.96), rgba(8, 13, 29, 0.92));
}

.fx-volume-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.fx-volume-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.fx-volume-tab {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(231, 242, 255, 0.78);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.fx-volume-tab:hover,
.fx-volume-tab:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(108, 214, 255, 0.26);
    color: #ffffff;
    outline: none;
}

.fx-volume-tab.active {
    border-color: rgba(78, 255, 211, 0.36);
    background: rgba(26, 193, 168, 0.16);
    color: #e7fff9;
    box-shadow: 0 14px 28px rgba(26, 193, 168, 0.14);
}

.fx-volume-chart {
    position: relative;
    overflow: hidden;
    min-height: 238px;
    padding: 18px 18px 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 18, 34, 0.92), rgba(8, 14, 28, 0.84));
}

.fx-volume-chart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to top,
        rgba(255, 255, 255, 0.05) 0 1px,
        transparent 1px 20%
    );
    pointer-events: none;
}

.fx-volume-bars {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: end;
    grid-template-columns: repeat(24, minmax(0, 1fr));
    gap: 8px;
    height: 200px;
}

.fx-volume-bar {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.fx-volume-bar span {
    display: block;
    width: 100%;
    min-height: 18px;
    height: calc(var(--bar-height) * 1%);
    border-radius: 12px 12px 4px 4px;
    background: linear-gradient(180deg, #24f4d5, #11bc9c);
    box-shadow: 0 12px 24px rgba(17, 188, 156, 0.2);
}

.fx-volume-bar.current span {
    background: linear-gradient(180deg, #63ffee, #1dd1b0);
    box-shadow: 0 0 0 2px rgba(99, 255, 238, 0.14), 0 16px 28px rgba(29, 209, 176, 0.26);
}

.fx-volume-note {
    margin: 12px 0 0;
    color: rgba(186, 206, 233, 0.76);
    font-size: 12px;
    line-height: 1.5;
}

.fx-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.fx-insight-card {
    padding: 20px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.fx-insight-card.best {
    background: linear-gradient(135deg, rgba(19, 217, 186, 0.92), rgba(14, 158, 184, 0.78));
}

.fx-insight-card.worst {
    background: linear-gradient(135deg, rgba(255, 121, 114, 0.92), rgba(215, 87, 92, 0.78));
}

.fx-insight-card.witching {
    background: linear-gradient(135deg, rgba(255, 93, 199, 0.92), rgba(182, 67, 255, 0.78));
}

.fx-insight-card strong {
    display: block;
    margin: 10px 0 8px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.fx-insight-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.5;
}

.field,
.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label,
.field span {
    color: #d6edff;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(128, 175, 255, 0.18);
    background: rgba(5, 12, 28, 0.85);
    color: var(--text);
    padding: 14px 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

input[type='checkbox'] {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    accent-color: var(--accent);
    box-shadow: none;
}

input::placeholder,
textarea::placeholder {
    color: #6582a7;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(82, 247, 255, 0.44);
    box-shadow: 0 0 0 4px rgba(82, 247, 255, 0.08), 0 0 30px rgba(82, 247, 255, 0.08);
    outline: none;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.section-heading h2,
.section-title {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.section-note {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.hero-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.hero-badges,
.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-badge,
.status-chip,
.mini-chip,
.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(82, 247, 255, 0.18);
    background: rgba(82, 247, 255, 0.08);
    color: #dcfbff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-badge.alt,
.mini-chip.alt {
    background: rgba(255, 159, 67, 0.12);
    border-color: rgba(255, 159, 67, 0.18);
    color: #ffe7c6;
}

.hero-copy-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.control-card,
.mini-card,
.info-card {
    position: relative;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(111, 223, 255, 0.14);
    background: linear-gradient(180deg, rgba(8, 14, 30, 0.92), rgba(7, 12, 28, 0.72));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow);
}

.mini-grid {
    margin-top: 18px;
}

.mini-card strong,
.info-card strong {
    display: block;
    margin-top: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    letter-spacing: -0.04em;
}

.mini-card span,
.info-card span {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stat-card {
    padding: 20px;
}

.stat-card[data-tone='accent'] {
    box-shadow: 0 0 0 1px rgba(82, 247, 255, 0.12), 0 24px 44px rgba(82, 247, 255, 0.08);
}

.stat-card[data-tone='lime'] {
    box-shadow: 0 0 0 1px rgba(179, 255, 102, 0.12), 0 24px 44px rgba(179, 255, 102, 0.08);
}

.stat-card[data-tone='warning'] {
    box-shadow: 0 0 0 1px rgba(255, 159, 67, 0.12), 0 24px 44px rgba(255, 159, 67, 0.08);
}

.stat-card[data-tone='danger'] {
    box-shadow: 0 0 0 1px rgba(255, 111, 145, 0.12), 0 24px 44px rgba(255, 111, 145, 0.08);
}

.stat-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-label {
    color: #9bc4f3;
    font-size: 11px;
    font-weight: 700;
}

.stat-value {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.stat-foot {
    color: var(--muted);
    font-size: 13px;
}

.positive {
    color: var(--positive);
}

.negative {
    color: var(--danger);
}

.table-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-table-wrap {
    background: rgba(4, 10, 22, 0.52);
}

.dashboard-table-wrap .data-table {
    background: transparent;
}

.trades-table {
    min-width: 1480px;
}

.journal-table {
    min-width: 980px;
}

.strategy-table {
    min-width: 860px;
}

.trades-table th,
.trades-table td,
.strategy-table th,
.strategy-table td {
    white-space: nowrap;
}

.journal-table th:nth-child(1),
.journal-table td:nth-child(1),
.journal-table th:nth-child(3),
.journal-table td:nth-child(3),
.journal-table th:nth-child(4),
.journal-table td:nth-child(4) {
    white-space: nowrap;
}

.journal-table th:nth-child(2),
.journal-table td:nth-child(2) {
    min-width: 420px;
}

.journal-table td:nth-child(2) {
    white-space: normal;
    line-height: 1.65;
}

table,
.data-table {
    width: 100%;
    min-width: 740px;
    border-collapse: collapse;
    background: rgba(4, 10, 22, 0.4);
}

table th,
table td,
.data-table th,
.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    vertical-align: top;
}

table thead th,
.data-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(8, 14, 30, 0.96);
    color: #9bc4f3;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

table tbody tr,
.data-table tbody tr {
    transition: background 160ms ease, transform 160ms ease;
}

table tbody tr:hover,
.data-table tbody tr:hover {
    background: rgba(82, 247, 255, 0.05);
}

.badge,
.tag-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge.open {
    background: rgba(82, 247, 255, 0.12);
    color: #d6fcff;
    border: 1px solid rgba(82, 247, 255, 0.18);
}

.badge.closed,
.tag-badge {
    background: rgba(179, 255, 102, 0.12);
    color: #eeffd8;
    border: 1px solid rgba(179, 255, 102, 0.16);
}

.empty-state {
    border-radius: 18px;
    border: 1px dashed rgba(111, 223, 255, 0.18);
    background: rgba(10, 16, 35, 0.48);
    padding: 18px 20px;
}

.public-page .page-shell,
.public-page .content-wrap {
    padding-right: 18px;
}

.public-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 32px 0;
}

.public-brand {
    font-size: 18px;
    letter-spacing: -0.04em;
}

.public-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mobile-menu-trigger {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid rgba(111, 223, 255, 0.18);
    background: rgba(8, 14, 30, 0.92);
    color: var(--text);
    font-size: 15px;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.team-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border-radius: 22px;
    background: rgba(9, 15, 28, 0.92);
    border: 1px solid rgba(111, 223, 255, 0.12);
}

.team-photo,
.team-placeholder {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(82, 247, 255, 0.08);
    color: #eef7ff;
    font-size: 22px;
    font-weight: 700;
}

.member-name {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.2;
}

.team-role {
    font-size: 13px;
    color: var(--muted);
}

.strategy-layout {
    display: flex;
    gap: 18px;
    align-items: start;
}

@media (max-width: 960px) {
    .strategy-layout {
        flex-direction: column;
    }
}

.metric-card,
.feature-card,
.tip-card,
.account-item,
.guide-item {
    padding: 22px;
}

.metric-card h3 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1;
    color: var(--accent);
}

.feature-card h3,
.tip-card h3,
.account-name,
.guide-title {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.hero-list,
.tip-list {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.hero-list li,
.tip-list li {
    margin-bottom: 10px;
}

.guide-list {
    display: grid;
    gap: 14px;
}

.public-brand strong {
    display: block;
    font-family: 'Sora', sans-serif;
}

.public-brand span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.landing-page {
    max-width: 1500px;
    margin: 0 auto;
    padding: 34px 32px 72px;
}

.landing-hero-panel {
    grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.82fr);
    gap: 28px;
}

.landing-hero-copy {
    max-width: 840px;
}

.landing-overview-card {
    padding: 28px;
}

.landing-mini-grid {
    gap: 14px;
}

.landing-overview-actions {
    margin-top: 22px;
}

.landing-panel-head {
    margin-bottom: 20px;
}

.landing-panel-head .section-title {
    margin: 6px 0 8px;
}

.landing-panel-head .section-note,
.landing-section-heading .section-note {
    display: block;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: none;
}

.landing-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.landing-stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(111, 223, 255, 0.12);
    background: linear-gradient(180deg, rgba(13, 20, 42, 0.88) 0%, rgba(8, 13, 29, 0.82) 100%);
    box-shadow: var(--shadow);
    padding: 22px;
}

.landing-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(82, 247, 255, 0.08), transparent 44%, rgba(255, 159, 67, 0.06));
    pointer-events: none;
}

.landing-stat-label {
    position: relative;
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.landing-stat-card strong {
    position: relative;
    display: block;
    margin-bottom: 8px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--text);
}

.landing-stat-card p {
    position: relative;
    margin: 0;
    color: var(--muted);
}

.landing-section-heading {
    align-items: flex-end;
    margin-bottom: 20px;
}

.landing-section-heading h2 {
    margin: 8px 0 0;
}

.landing-section-heading .section-note {
    max-width: 460px;
    text-align: right;
}

.landing-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.landing-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.landing-process-card,
.landing-cta,
.landing-overview-card,
.landing-nav {
    position: relative;
}

.landing-footer {
    max-width: 1500px;
    margin: 0 auto 32px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(111, 223, 255, 0.14);
    background: linear-gradient(180deg, rgba(11, 18, 38, 0.96) 0%, rgba(6, 10, 24, 0.94) 100%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
    gap: 22px;
}

.landing-footer-brand strong,
.landing-footer-item,
.landing-footer-bottom {
    position: relative;
}

.landing-footer-logo {
    display: block;
    width: 120px;
    height: auto;
    margin-bottom: 14px;
    background: transparent;
}

.landing-footer-brand strong {
    display: block;
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    letter-spacing: -0.03em;
    color: var(--text);
}

.landing-footer-brand p,
.landing-footer-item p {
    margin: 0;
    color: var(--muted);
}

.landing-footer-item {
    padding-left: 16px;
    border-left: 1px solid rgba(111, 223, 255, 0.12);
}

.landing-footer-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.landing-footer-link {
    color: var(--text);
    font-weight: 700;
    word-break: break-word;
}

.landing-footer-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(111, 223, 255, 0.12);
    color: rgba(140, 165, 199, 0.78);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}

body[data-page='index'] {
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(82, 247, 255, 0.18), transparent 30%),
        radial-gradient(circle at 84% 12%, rgba(255, 159, 67, 0.18), transparent 28%),
        radial-gradient(circle at 70% 82%, rgba(179, 255, 102, 0.14), transparent 26%),
        linear-gradient(145deg, #040712 0%, #070c1d 38%, #040712 100%);
}

body[data-page='index']::before {
    background:
        linear-gradient(rgba(135, 190, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(135, 190, 255, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 38%, transparent 88%);
    opacity: 0.45;
}

body[data-page='index']::after {
    background: radial-gradient(circle at center, rgba(82, 247, 255, 0.08), transparent 62%);
    filter: blur(40px);
    opacity: 0.7;
}

body[data-page='index'] .landing-nav {
    max-width: 1500px;
    margin: 18px auto 0;
    padding: 22px 28px;
    border-radius: 28px;
    border: 1px solid rgba(111, 223, 255, 0.14);
    background: linear-gradient(180deg, rgba(11, 18, 38, 0.96) 0%, rgba(6, 10, 24, 0.94) 100%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body[data-page='index'] .hero-panel,
body[data-page='index'] .control-card,
body[data-page='index'] .mini-card,
body[data-page='index'] .feature-card,
body[data-page='index'] .tip-card,
body[data-page='index'] .cta-card {
    border-color: rgba(111, 223, 255, 0.12);
    background: linear-gradient(180deg, rgba(13, 20, 42, 0.9) 0%, rgba(8, 13, 29, 0.84) 100%);
    box-shadow: var(--shadow);
}

body[data-page='index'] .landing-nav::before,
body[data-page='index'] .landing-overview-card::before,
body[data-page='index'] .landing-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(82, 247, 255, 0.06), transparent 46%, rgba(255, 159, 67, 0.05));
    pointer-events: none;
}

body[data-page='index'] .public-brand strong,
body[data-page='index'] .hero-title-xl,
body[data-page='index'] .section-title,
body[data-page='index'] .feature-card h3,
body[data-page='index'] .tip-card h3,
body[data-page='index'] .cta-card h2,
body[data-page='index'] .mini-card strong,
body[data-page='index'] .landing-stat-card strong {
    color: var(--text);
}

body[data-page='index'] .public-brand span,
body[data-page='index'] .hero-lead,
body[data-page='index'] .hero-list,
body[data-page='index'] .section-note,
body[data-page='index'] .feature-card p,
body[data-page='index'] .tip-card p,
body[data-page='index'] .cta-card p,
body[data-page='index'] .mini-card span,
body[data-page='index'] .landing-stat-card p {
    color: var(--muted);
}

body[data-page='index'] .landing-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

body[data-page='index'] .landing-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

body[data-page='index'] .landing-header-logo {
    width: 92px;
    height: auto;
    display: block;
    background: transparent;
    flex-shrink: 0;
}

body[data-page='index'] .landing-section-heading {
    gap: 18px;
}

.auth-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    padding: 28px 32px 46px;
    align-items: stretch;
    gap: 24px;
}

.auth-copy-card {
    min-height: 100%;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(111, 223, 255, 0.12);
    background: linear-gradient(180deg, rgba(13, 20, 42, 0.88) 0%, rgba(8, 13, 29, 0.82) 100%);
    box-shadow: var(--shadow);
    overflow: visible;
}

.auth-copy-card .hero-title {
    margin-top: 10px;
}

.auth-copy-card .hero-subtitle {
    margin-top: 12px;
    max-width: 620px;
}

.auth-copy-card .hero-list {
    margin-top: 22px;
    padding-left: 22px;
    line-height: 1.8;
}

.auth-copy-card-roomy {
    padding-right: 34px;
}

.auth-form-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-subtitle,
.auth-footer-copy {
    margin-top: 8px;
}

.auth-message {
    margin-bottom: 16px;
    border-style: solid;
}

.auth-message-error {
    border-color: #fecaca;
    color: var(--danger);
}

.auth-message-success {
    border-color: #bbf7d0;
    color: var(--positive);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-options {
    margin-top: 4px;
}

.remember-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
}

.remember-check span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.auth-form-actions {
    margin-top: 6px;
}

.auth-card {
    min-height: 100%;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    padding: 20px;
    background: rgba(3, 6, 16, 0.72);
    backdrop-filter: blur(14px);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal.open {
    display: block;
}

.modal-card {
    width: min(920px, 100%);
    margin: 28px auto;
    border-radius: 28px;
    border: 1px solid rgba(111, 223, 255, 0.18);
    background: linear-gradient(180deg, rgba(10, 16, 35, 0.98), rgba(7, 12, 28, 0.96));
    box-shadow: var(--shadow);
    max-height: calc(100vh - 56px);
    overflow: auto;
}

.modal-card.small {
    width: min(560px, 100%);
}

.modal-header,
.modal-body {
    padding: 24px;
}

.modal-body {
    max-height: calc(100vh - 188px);
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-title {
    margin: 0;
    font-size: 24px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}

.toast-stack {
    position: fixed;
    top: 22px;
    right: 22px;
    display: grid;
    gap: 12px;
    z-index: 1200;
}

.toast {
    min-width: 260px;
    max-width: 340px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(111, 223, 255, 0.18);
    background: rgba(8, 14, 30, 0.96);
    color: var(--text);
    box-shadow: var(--shadow);
    animation: toast-in 220ms ease;
}

.toast.success {
    border-color: rgba(179, 255, 102, 0.24);
}

.toast.error {
    border-color: rgba(255, 111, 145, 0.24);
}

.toast-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 6px;
}

.toast-message {
    font-weight: 600;
}

.journal-photo {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
}

.footer {
    margin-top: auto;
    padding: 18px 16px 6px 28px;
    color: rgba(140, 165, 199, 0.78);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dashboard-hero,
.trade-hero {
    margin-bottom: 28px;
}

.dashboard-grid,
.trade-grid {
    margin-top: 18px;
}

.live-clock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7efff;
    font-size: 12px;
    font-weight: 600;
}

.live-clock::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(82, 247, 255, 0.75);
}

.loading-shimmer {
    position: relative;
    overflow: hidden;
}

.loading-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
}

@keyframes pulse-dot {
    0%,
    100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(-8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes shimmer {
    to { transform: translateX(100%); }
}

@media (max-width: 1180px) {
    .landing-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-page='index'] .landing-stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-page='index'] .landing-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-shell {
        --sidebar-width: 220px;
    }

    .sidebar {
        margin: 14px;
        padding: 22px 16px;
    }

    .page-shell,
    .content-wrap {
        padding: 72px 14px 14px 0;
    }

    .main-content {
        padding: 18px 0 28px 18px;
    }

    .dashboard-market-panel {
        margin-left: 18px !important;
        margin-right: 0 !important;
    }

    .sidebar-toggle {
        top: 14px;
        left: calc(var(--sidebar-width, 220px) + 14px);
    }

    .hero-panel {
        grid-template-columns: 1fr;
    }

    .market-snapshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .header,
    .hero-panel,
    .grid-two,
    .grid-three,
    .auth-layout,
    .dashboard-grid,
    .breakdown-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .header {
        padding: 22px 20px;
    }

    body[data-page='index'] .landing-nav {
        margin: 18px 18px 0;
    }

    .auth-copy-card {
        padding: 26px;
    }

    .fx-hours-head,
    .fx-volume-header {
        flex-direction: column;
    }

    .fx-hours-meta,
    .fx-volume-tabs {
        justify-content: flex-start;
    }

    .fx-insight-grid {
        grid-template-columns: 1fr;
    }

    .landing-footer {
        margin: 0 18px 24px;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr;
    }

    .landing-footer-item {
        padding-left: 0;
        border-left: 0;
        padding-top: 14px;
        border-top: 1px solid rgba(111, 223, 255, 0.1);
    }

    body[data-page='index'] .landing-page {
        padding: 30px 22px 60px;
    }

    body[data-page='index'] .landing-stat-strip,
    body[data-page='index'] .landing-feature-grid,
    body[data-page='index'] .landing-process-grid {
        grid-template-columns: 1fr;
    }

    body[data-page='index'] .landing-section-heading {
        align-items: flex-start;
    }

    body[data-page='index'] .landing-section-heading .section-note {
        max-width: none;
        text-align: left;
    }

    .fx-session-window strong {
        font-size: 16px;
    }

    .main-content,
    .hero,
    .auth-layout,
    .public-nav {
        padding-left: 0;
        padding-right: 0;
    }

    .header-actions,
    .inline-actions,
    .hero-actions,
    .public-links {
        width: 100%;
    }

    .header-actions > *,
    .inline-actions > *,
    .hero-actions > *,
    .public-links > * {
        width: 100%;
    }

    .public-nav {
        align-items: center;
        flex-wrap: wrap;
    }

    .public-nav .mobile-menu-trigger,
    .sidebar .mobile-menu-trigger {
        display: inline-flex;
    }

    .public-nav .public-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        margin-top: 14px;
    }

    .public-nav.mobile-menu-open .public-links {
        display: flex;
    }

    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        width: min(286px, calc(100vw - 32px));
        max-width: calc(100vw - 32px);
        min-height: 100dvh;
        height: 100dvh;
        margin: 0;
        padding: 82px 16px 24px;
        border-radius: 0 24px 24px 0;
        z-index: 1240;
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        transform: translateX(-108%);
        transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .app-shell.sidebar-mobile-open .sidebar {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .app-shell.sidebar-mobile-open .sidebar-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .sidebar-toggle {
        top: 14px;
        left: 14px;
        padding: 10px 14px;
    }

    .sidebar-toggle-text {
        display: none;
    }

    .sidebar .sidebar-brand {
        justify-content: flex-start;
        margin-bottom: 18px;
    }

    .sidebar .sidebar-brand-copy {
        display: block;
    }

    .sidebar .sidebar-nav {
        display: flex;
    }

    .sidebar .sidebar-profile {
        display: flex;
        margin-top: 18px;
    }

    .sidebar .sidebar-status,
    .sidebar .sidebar-logout {
        display: inline-flex;
    }

    .page-shell,
    .content-wrap {
        padding: 72px 16px 16px;
    }

    .main-content {
        padding: 18px 0 28px;
    }

    .dashboard-market-panel {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .market-snapshot-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-card > div {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .dashboard-overview,
    .dashboard-data-stack {
        grid-template-columns: 1fr;
    }

    .chart-shell {
        min-height: 300px;
    }

    .chart-shell canvas,
    .pie-chart-wrap canvas {
        height: 300px !important;
    }

    .footer {
        padding-left: 8px;
    }
}

@media (max-width: 640px) {
    body[data-page='index'] .landing-nav {
        padding: 16px 18px;
    }

    body[data-page='index'] .landing-header-logo {
        width: 72px;
    }

    .auth-layout {
        padding: 24px 18px 42px;
    }

    .landing-footer {
        padding: 20px 18px;
    }

    .landing-footer-logo {
        width: 96px;
    }

    body[data-page='index'] .landing-page {
        padding: 26px 18px 48px;
    }

    body[data-page='index'] .landing-overview-card,
    body[data-page='index'] .landing-stat-card {
        padding: 18px;
    }

    .breakdown-panel {
        padding: 18px;
    }

    .pie-chart-wrap {
        min-height: 240px;
    }

    .pie-chart-wrap canvas {
        height: 240px !important;
    }

    /* Final theme overrides for full-page theming */
    html[data-theme="white"] body,
    html[data-theme="white"] .public-nav,
    html[data-theme="white"] .header,
    html[data-theme="white"] .hero-panel,
    html[data-theme="white"] .landing-section,
    html[data-theme="white"] .card,
    html[data-theme="white"] .page-shell,
    html[data-theme="white"] .content-wrap,
    html[data-theme="white"] .sidebar,
    html[data-theme="white"] .sidebar-brand,
    html[data-theme="white"] .sidebar-status,
    html[data-theme="white"] .table-wrap,
    html[data-theme="white"] .market-board,
    html[data-theme="white"] .empty-state,
    html[data-theme="white"] .landing-footer,
    html[data-theme="white"] .footer,
    html[data-theme="white"] .feature-card,
    html[data-theme="white"] .tip-card,
    html[data-theme="white"] .metric-card,
    html[data-theme="white"] .breakdown-panel,
    html[data-theme="white"] .dashboard-data-card,
    html[data-theme="white"] .dashboard-stats,
    html[data-theme="white"] .landing-brand,
    html[data-theme="white"] .landing-brand-copy,
    html[data-theme="white"] .hero-copy-block,
    html[data-theme="white"] .hero-actions,
    html[data-theme="white"] .public-links,
    html[data-theme="white"] .landing-footer-item,
    html[data-theme="white"] .landing-footer-bottom {
        background: var(--panel) !important;
        color: var(--text) !important;
        border-color: var(--line) !important;
    }

    html[data-theme="white"] body {
        background: var(--bg) !important;
    }

    html[data-theme="white"] .public-nav,
    html[data-theme="white"] .header,
    html[data-theme="white"] .sidebar,
    html[data-theme="white"] .landing-footer {
        box-shadow: var(--shadow) !important;
    }

    html[data-theme="black"] body,
    html[data-theme="black"] .public-nav,
    html[data-theme="black"] .header,
    html[data-theme="black"] .hero-panel,
    html[data-theme="black"] .landing-section,
    html[data-theme="black"] .card,
    html[data-theme="black"] .page-shell,
    html[data-theme="black"] .content-wrap,
    html[data-theme="black"] .sidebar,
    html[data-theme="black"] .sidebar-brand,
    html[data-theme="black"] .sidebar-status,
    html[data-theme="black"] .table-wrap,
    html[data-theme="black"] .market-board,
    html[data-theme="black"] .empty-state,
    html[data-theme="black"] .landing-footer,
    html[data-theme="black"] .footer,
    html[data-theme="black"] .feature-card,
    html[data-theme="black"] .tip-card,
    html[data-theme="black"] .metric-card,
    html[data-theme="black"] .breakdown-panel,
    html[data-theme="black"] .dashboard-data-card,
    html[data-theme="black"] .dashboard-stats,
    html[data-theme="black"] .landing-brand,
    html[data-theme="black"] .landing-brand-copy,
    html[data-theme="black"] .hero-copy-block,
    html[data-theme="black"] .hero-actions,
    html[data-theme="black"] .public-links,
    html[data-theme="black"] .landing-footer-item,
    html[data-theme="black"] .landing-footer-bottom {
        background: var(--panel) !important;
        color: var(--text) !important;
        border-color: var(--line) !important;
    }

    html[data-theme="black"] body {
        background: var(--bg) !important;
    }

    html[data-theme="black"] .public-nav,
    html[data-theme="black"] .header,
    html[data-theme="black"] .sidebar,
    html[data-theme="black"] .landing-footer {
        box-shadow: var(--shadow) !important;
    }

    /* Universal element theme fixes */
    html[data-theme="white"] a,
    html[data-theme="white"] button,
    html[data-theme="white"] input,
    html[data-theme="white"] textarea,
    html[data-theme="white"] select,
    html[data-theme="white"] label,
    html[data-theme="white"] span,
    html[data-theme="white"] div,
    html[data-theme="white"] p {
        color: var(--text) !important;
    }

    html[data-theme="white"] input,
    html[data-theme="white"] textarea,
    html[data-theme="white"] select {
        background: var(--panel) !important;
        border-color: var(--line) !important;
        color: var(--text) !important;
    }

    html[data-theme="white"] input::placeholder,
    html[data-theme="white"] textarea::placeholder {
        color: var(--muted) !important;
    }

    /* Comprehensive White Theme Section Coverage */
    html[data-theme="white"] .app-shell,
    html[data-theme="white"] .page-shell,
    html[data-theme="white"] .main-content,
    html[data-theme="white"] .tip-grid,
    html[data-theme="white"] .tip-card,
    html[data-theme="white"] .section-heading,
    html[data-theme="white"] .section-title,
    html[data-theme="white"] .section-note,
    html[data-theme="white"] .tip-list,
    html[data-theme="white"] .footer,
    html[data-theme="white"] .public-page,
    html[data-theme="white"] .landing-page,
    html[data-theme="white"] .hero,
    html[data-theme="white"] .hero-chip-row,
    html[data-theme="white"] .hero-badge,
    html[data-theme="white"] .hero-copy-block,
    html[data-theme="white"] .landing-hero-copy,
    html[data-theme="white"] .landing-hero-panel,
    html[data-theme="white"] .market-preview,
    html[data-theme="white"] .section-heading,
    html[data-theme="white"] .landing-section-heading,
    html[data-theme="white"] .eyebrow,
    html[data-theme="white"] .header-title,
    html[data-theme="white"] .header-subtitle,
    html[data-theme="white"] .page-subtitle,
    html[data-theme="white"] .team-admin-grid,
    html[data-theme="white"] .form-container,
    html[data-theme="white"] .team-admin-preview,
    html[data-theme="white"] .field,
    html[data-theme="white"] .inline-actions,
    html[data-theme="white"] .team-section,
    html[data-theme="white"] .team-grid,
    html[data-theme="white"] .team-member,
    html[data-theme="white"] .team-member-photo,
    html[data-theme="white"] .team-member-info,
    html[data-theme="white"] .team-member-name,
    html[data-theme="white"] .team-member-role,
    html[data-theme="white"] .trade-log-page,
    html[data-theme="white"] .trade-form,
    html[data-theme="white"] .trade-table,
    html[data-theme="white"] .trade-row,
    html[data-theme="white"] .trade-cell,
    html[data-theme="white"] .dashboard-page,
    html[data-theme="white"] .dashboard-grid,
    html[data-theme="white"] .dashboard-section,
    html[data-theme="white"] .stats-overview,
    html[data-theme="white"] .chart-container,
    html[data-theme="white"] .journal-page,
    html[data-theme="white"] .journal-entry,
    html[data-theme="white"] .journal-form,
    html[data-theme="white"] .strategies-page,
    html[data-theme="white"] .strategy-card,
    html[data-theme="white"] .strategy-form,
    html[data-theme="white"] .settings-page,
    html[data-theme="white"] .settings-section,
    html[data-theme="white"] .help-page,
    html[data-theme="white"] .help-section,
    html[data-theme="white"] .admin-page,
    html[data-theme="white"] .admin-section,
    html[data-theme="white"] .modal,
    html[data-theme="white"] .modal-content,
    html[data-theme="white"] .modal-header,
    html[data-theme="white"] .modal-body,
    html[data-theme="white"] .modal-footer,
    html[data-theme="white"] .toast,
    html[data-theme="white"] .toast-stack,
    html[data-theme="white"] .form-group,
    html[data-theme="white"] .form-row,
    html[data-theme="white"] .form-actions,
    html[data-theme="white"] .data-table,
    html[data-theme="white"] .table-header,
    html[data-theme="white"] .table-body,
    html[data-theme="white"] .table-row,
    html[data-theme="white"] .table-cell,
    html[data-theme="white"] .pagination,
    html[data-theme="white"] .page-link,
    html[data-theme="white"] .status-indicator,
    html[data-theme="white"] .status-up,
    html[data-theme="white"] .status-down,
    html[data-theme="white"] .status-neutral,
    html[data-theme="white"] .badge,
    html[data-theme="white"] .badge-success,
    html[data-theme="white"] .badge-warning,
    html[data-theme="white"] .badge-danger,
    html[data-theme="white"] .badge-info,
    html[data-theme="white"] .alert,
    html[data-theme="white"] .alert-success,
    html[data-theme="white"] .alert-warning,
    html[data-theme="white"] .alert-danger,
    html[data-theme="white"] .alert-info,
    html[data-theme="white"] .progress-bar,
    html[data-theme="white"] .progress-fill,
    html[data-theme="white"] .loading-spinner,
    html[data-theme="white"] .loading-overlay,
    html[data-theme="white"] .dropdown,
    html[data-theme="white"] .dropdown-menu,
    html[data-theme="white"] .dropdown-item,
    html[data-theme="white"] .tab-nav,
    html[data-theme="white"] .tab-content,
    html[data-theme="white"] .tab-pane,
    html[data-theme="white"] .accordion,
    html[data-theme="white"] .accordion-item,
    html[data-theme="white"] .accordion-header,
    html[data-theme="white"] .accordion-body,
    html[data-theme="white"] .breadcrumb,
    html[data-theme="white"] .breadcrumb-item,
    html[data-theme="white"] .nav-tabs,
    html[data-theme="white"] .nav-pills,
    html[data-theme="white"] .navbar,
    html[data-theme="white"] .navbar-brand,
    html[data-theme="white"] .navbar-nav,
    html[data-theme="white"] .navbar-toggler,
    html[data-theme="white"] .collapse,
    html[data-theme="white"] .carousel,
    html[data-theme="white"] .carousel-item,
    html[data-theme="white"] .carousel-control,
    html[data-theme="white"] .carousel-indicators,
    html[data-theme="white"] .tooltip,
    html[data-theme="white"] .popover,
    html[data-theme="white"] .offcanvas,
    html[data-theme="white"] .offcanvas-header,
    html[data-theme="white"] .offcanvas-body {
        background: var(--panel) !important;
        color: var(--text) !important;
        border-color: var(--line) !important;
    }

    html[data-theme="white"] .app-shell,
    html[data-theme="white"] .page-shell,
    html[data-theme="white"] .main-content,
    html[data-theme="white"] .tip-grid,
    html[data-theme="white"] .tip-card,
    html[data-theme="white"] .section-heading,
    html[data-theme="white"] .section-title,
    html[data-theme="white"] .section-note,
    html[data-theme="white"] .tip-list,
    html[data-theme="white"] .footer,
    html[data-theme="white"] .public-page,
    html[data-theme="white"] .landing-page,
    html[data-theme="white"] .hero,
    html[data-theme="white"] .hero-chip-row,
    html[data-theme="white"] .hero-badge,
    html[data-theme="white"] .hero-copy-block,
    html[data-theme="white"] .landing-hero-copy,
    html[data-theme="white"] .landing-hero-panel,
    html[data-theme="white"] .market-preview,
    html[data-theme="white"] .section-heading,
    html[data-theme="white"] .landing-section-heading,
    html[data-theme="white"] .eyebrow,
    html[data-theme="white"] .header-title,
    html[data-theme="white"] .header-subtitle,
    html[data-theme="white"] .page-subtitle,
    html[data-theme="white"] .team-admin-grid,
    html[data-theme="white"] .form-container,
    html[data-theme="white"] .team-admin-preview,
    html[data-theme="white"] .field,
    html[data-theme="white"] .inline-actions,
    html[data-theme="white"] .team-section,
    html[data-theme="white"] .team-grid,
    html[data-theme="white"] .team-member,
    html[data-theme="white"] .team-member-photo,
    html[data-theme="white"] .team-member-info,
    html[data-theme="white"] .team-member-name,
    html[data-theme="white"] .team-member-role,
    html[data-theme="white"] .trade-log-page,
    html[data-theme="white"] .trade-form,
    html[data-theme="white"] .trade-table,
    html[data-theme="white"] .trade-row,
    html[data-theme="white"] .trade-cell,
    html[data-theme="white"] .dashboard-page,
    html[data-theme="white"] .dashboard-grid,
    html[data-theme="white"] .dashboard-section,
    html[data-theme="white"] .stats-overview,
    html[data-theme="white"] .chart-container,
    html[data-theme="white"] .journal-page,
    html[data-theme="white"] .journal-entry,
    html[data-theme="white"] .journal-form,
    html[data-theme="white"] .strategies-page,
    html[data-theme="white"] .strategy-card,
    html[data-theme="white"] .strategy-form,
    html[data-theme="white"] .settings-page,
    html[data-theme="white"] .settings-section,
    html[data-theme="white"] .help-page,
    html[data-theme="white"] .help-section,
    html[data-theme="white"] .admin-page,
    html[data-theme="white"] .admin-section,
    html[data-theme="white"] .modal,
    html[data-theme="white"] .modal-content,
    html[data-theme="white"] .modal-header,
    html[data-theme="white"] .modal-body,
    html[data-theme="white"] .modal-footer,
    html[data-theme="white"] .toast,
    html[data-theme="white"] .toast-stack,
    html[data-theme="white"] .form-group,
    html[data-theme="white"] .form-row,
    html[data-theme="white"] .form-actions,
    html[data-theme="white"] .data-table,
    html[data-theme="white"] .table-header,
    html[data-theme="white"] .table-body,
    html[data-theme="white"] .table-row,
    html[data-theme="white"] .table-cell,
    html[data-theme="white"] .pagination,
    html[data-theme="white"] .page-link,
    html[data-theme="white"] .status-indicator,
    html[data-theme="white"] .status-up,
    html[data-theme="white"] .status-down,
    html[data-theme="white"] .status-neutral,
    html[data-theme="white"] .badge,
    html[data-theme="white"] .badge-success,
    html[data-theme="white"] .badge-warning,
    html[data-theme="white"] .badge-danger,
    html[data-theme="white"] .badge-info,
    html[data-theme="white"] .alert,
    html[data-theme="white"] .alert-success,
    html[data-theme="white"] .alert-warning,
    html[data-theme="white"] .alert-danger,
    html[data-theme="white"] .alert-info,
    html[data-theme="white"] .progress-bar,
    html[data-theme="white"] .progress-fill,
    html[data-theme="white"] .loading-spinner,
    html[data-theme="white"] .loading-overlay,
    html[data-theme="white"] .dropdown,
    html[data-theme="white"] .dropdown-menu,
    html[data-theme="white"] .dropdown-item,
    html[data-theme="white"] .tab-nav,
    html[data-theme="white"] .tab-content,
    html[data-theme="white"] .tab-pane,
    html[data-theme="white"] .accordion,
    html[data-theme="white"] .accordion-item,
    html[data-theme="white"] .accordion-header,
    html[data-theme="white"] .accordion-body,
    html[data-theme="white"] .breadcrumb,
    html[data-theme="white"] .breadcrumb-item,
    html[data-theme="white"] .nav-tabs,
    html[data-theme="white"] .nav-pills,
    html[data-theme="white"] .navbar,
    html[data-theme="white"] .navbar-brand,
    html[data-theme="white"] .navbar-nav,
    html[data-theme="white"] .navbar-toggler,
    html[data-theme="white"] .collapse,
    html[data-theme="white"] .carousel,
    html[data-theme="white"] .carousel-item,
    html[data-theme="white"] .carousel-control,
    html[data-theme="white"] .carousel-indicators,
    html[data-theme="white"] .tooltip,
    html[data-theme="white"] .popover,
    html[data-theme="white"] .offcanvas,
    html[data-theme="white"] .offcanvas-header,
    html[data-theme="white"] .offcanvas-body {
        box-shadow: var(--shadow) !important;
    }

    html[data-theme="black"] a,
    html[data-theme="black"] button,
    html[data-theme="black"] input,
    html[data-theme="black"] textarea,
    html[data-theme="black"] select,
    html[data-theme="black"] label,
    html[data-theme="black"] span,
    html[data-theme="black"] div,
    html[data-theme="black"] p {
        color: var(--text) !important;
    }

    html[data-theme="black"] input,
    html[data-theme="black"] textarea,
    html[data-theme="black"] select {
        background: var(--panel) !important;
        border-color: var(--line) !important;
        color: var(--text) !important;
    }

    html[data-theme="black"] input::placeholder,
    html[data-theme="black"] textarea::placeholder {
        color: var(--muted) !important;
    }

    /* Comprehensive Black Theme Section Coverage */
    html[data-theme="black"] .app-shell,
    html[data-theme="black"] .page-shell,
    html[data-theme="black"] .main-content,
    html[data-theme="black"] .tip-grid,
    html[data-theme="black"] .tip-card,
    html[data-theme="black"] .section-heading,
    html[data-theme="black"] .section-title,
    html[data-theme="black"] .section-note,
    html[data-theme="black"] .tip-list,
    html[data-theme="black"] .footer,
    html[data-theme="black"] .public-page,
    html[data-theme="black"] .landing-page,
    html[data-theme="black"] .hero,
    html[data-theme="black"] .hero-chip-row,
    html[data-theme="black"] .hero-badge,
    html[data-theme="black"] .hero-copy-block,
    html[data-theme="black"] .landing-hero-copy,
    html[data-theme="black"] .landing-hero-panel,
    html[data-theme="black"] .market-preview,
    html[data-theme="black"] .section-heading,
    html[data-theme="black"] .landing-section-heading,
    html[data-theme="black"] .eyebrow,
    html[data-theme="black"] .header-title,
    html[data-theme="black"] .header-subtitle,
    html[data-theme="black"] .page-subtitle,
    html[data-theme="black"] .team-admin-grid,
    html[data-theme="black"] .form-container,
    html[data-theme="black"] .team-admin-preview,
    html[data-theme="black"] .field,
    html[data-theme="black"] .inline-actions,
    html[data-theme="black"] .team-section,
    html[data-theme="black"] .team-grid,
    html[data-theme="black"] .team-member,
    html[data-theme="black"] .team-member-photo,
    html[data-theme="black"] .team-member-info,
    html[data-theme="black"] .team-member-name,
    html[data-theme="black"] .team-member-role,
    html[data-theme="black"] .trade-log-page,
    html[data-theme="black"] .trade-form,
    html[data-theme="black"] .trade-table,
    html[data-theme="black"] .trade-row,
    html[data-theme="black"] .trade-cell,
    html[data-theme="black"] .dashboard-page,
    html[data-theme="black"] .dashboard-grid,
    html[data-theme="black"] .dashboard-section,
    html[data-theme="black"] .stats-overview,
    html[data-theme="black"] .chart-container,
    html[data-theme="black"] .journal-page,
    html[data-theme="black"] .journal-entry,
    html[data-theme="black"] .journal-form,
    html[data-theme="black"] .strategies-page,
    html[data-theme="black"] .strategy-card,
    html[data-theme="black"] .strategy-form,
    html[data-theme="black"] .settings-page,
    html[data-theme="black"] .settings-section,
    html[data-theme="black"] .help-page,
    html[data-theme="black"] .help-section,
    html[data-theme="black"] .admin-page,
    html[data-theme="black"] .admin-section,
    html[data-theme="black"] .modal,
    html[data-theme="black"] .modal-content,
    html[data-theme="black"] .modal-header,
    html[data-theme="black"] .modal-body,
    html[data-theme="black"] .modal-footer,
    html[data-theme="black"] .toast,
    html[data-theme="black"] .toast-stack,
    html[data-theme="black"] .form-group,
    html[data-theme="black"] .form-row,
    html[data-theme="black"] .form-actions,
    html[data-theme="black"] .data-table,
    html[data-theme="black"] .table-header,
    html[data-theme="black"] .table-body,
    html[data-theme="black"] .table-row,
    html[data-theme="black"] .table-cell,
    html[data-theme="black"] .pagination,
    html[data-theme="black"] .page-link,
    html[data-theme="black"] .status-indicator,
    html[data-theme="black"] .status-up,
    html[data-theme="black"] .status-down,
    html[data-theme="black"] .status-neutral,
    html[data-theme="black"] .badge,
    html[data-theme="black"] .badge-success,
    html[data-theme="black"] .badge-warning,
    html[data-theme="black"] .badge-danger,
    html[data-theme="black"] .badge-info,
    html[data-theme="black"] .alert,
    html[data-theme="black"] .alert-success,
    html[data-theme="black"] .alert-warning,
    html[data-theme="black"] .alert-danger,
    html[data-theme="black"] .alert-info,
    html[data-theme="black"] .progress-bar,
    html[data-theme="black"] .progress-fill,
    html[data-theme="black"] .loading-spinner,
    html[data-theme="black"] .loading-overlay,
    html[data-theme="black"] .dropdown,
    html[data-theme="black"] .dropdown-menu,
    html[data-theme="black"] .dropdown-item,
    html[data-theme="black"] .tab-nav,
    html[data-theme="black"] .tab-content,
    html[data-theme="black"] .tab-pane,
    html[data-theme="black"] .accordion,
    html[data-theme="black"] .accordion-item,
    html[data-theme="black"] .accordion-header,
    html[data-theme="black"] .accordion-body,
    html[data-theme="black"] .breadcrumb,
    html[data-theme="black"] .breadcrumb-item,
    html[data-theme="black"] .nav-tabs,
    html[data-theme="black"] .nav-pills,
    html[data-theme="black"] .navbar,
    html[data-theme="black"] .navbar-brand,
    html[data-theme="black"] .navbar-nav,
    html[data-theme="black"] .navbar-toggler,
    html[data-theme="black"] .collapse,
    html[data-theme="black"] .carousel,
    html[data-theme="black"] .carousel-item,
    html[data-theme="black"] .carousel-control,
    html[data-theme="black"] .carousel-indicators,
    html[data-theme="black"] .tooltip,
    html[data-theme="black"] .popover,
    html[data-theme="black"] .offcanvas,
    html[data-theme="black"] .offcanvas-header,
    html[data-theme="black"] .offcanvas-body {
        background: var(--panel) !important;
        color: var(--text) !important;
        border-color: var(--line) !important;
    }

    html[data-theme="black"] .app-shell,
    html[data-theme="black"] .page-shell,
    html[data-theme="black"] .main-content,
    html[data-theme="black"] .tip-grid,
    html[data-theme="black"] .tip-card,
    html[data-theme="black"] .section-heading,
    html[data-theme="black"] .section-title,
    html[data-theme="black"] .section-note,
    html[data-theme="black"] .tip-list,
    html[data-theme="black"] .footer,
    html[data-theme="black"] .public-page,
    html[data-theme="black"] .landing-page,
    html[data-theme="black"] .hero,
    html[data-theme="black"] .hero-chip-row,
    html[data-theme="black"] .hero-badge,
    html[data-theme="black"] .hero-copy-block,
    html[data-theme="black"] .landing-hero-copy,
    html[data-theme="black"] .landing-hero-panel,
    html[data-theme="black"] .market-preview,
    html[data-theme="black"] .section-heading,
    html[data-theme="black"] .landing-section-heading,
    html[data-theme="black"] .eyebrow,
    html[data-theme="black"] .header-title,
    html[data-theme="black"] .header-subtitle,
    html[data-theme="black"] .page-subtitle,
    html[data-theme="black"] .team-admin-grid,
    html[data-theme="black"] .form-container,
    html[data-theme="black"] .team-admin-preview,
    html[data-theme="black"] .field,
    html[data-theme="black"] .inline-actions,
    html[data-theme="black"] .team-section,
    html[data-theme="black"] .team-grid,
    html[data-theme="black"] .team-member,
    html[data-theme="black"] .team-member-photo,
    html[data-theme="black"] .team-member-info,
    html[data-theme="black"] .team-member-name,
    html[data-theme="black"] .team-member-role,
    html[data-theme="black"] .trade-log-page,
    html[data-theme="black"] .trade-form,
    html[data-theme="black"] .trade-table,
    html[data-theme="black"] .trade-row,
    html[data-theme="black"] .trade-cell,
    html[data-theme="black"] .dashboard-page,
    html[data-theme="black"] .dashboard-grid,
    html[data-theme="black"] .dashboard-section,
    html[data-theme="black"] .stats-overview,
    html[data-theme="black"] .chart-container,
    html[data-theme="black"] .journal-page,
    html[data-theme="black"] .journal-entry,
    html[data-theme="black"] .journal-form,
    html[data-theme="black"] .strategies-page,
    html[data-theme="black"] .strategy-card,
    html[data-theme="black"] .strategy-form,
    html[data-theme="black"] .settings-page,
    html[data-theme="black"] .settings-section,
    html[data-theme="black"] .help-page,
    html[data-theme="black"] .help-section,
    html[data-theme="black"] .admin-page,
    html[data-theme="black"] .admin-section,
    html[data-theme="black"] .modal,
    html[data-theme="black"] .modal-content,
    html[data-theme="black"] .modal-header,
    html[data-theme="black"] .modal-body,
    html[data-theme="black"] .modal-footer,
    html[data-theme="black"] .toast,
    html[data-theme="black"] .toast-stack,
    html[data-theme="black"] .form-group,
    html[data-theme="black"] .form-row,
    html[data-theme="black"] .form-actions,
    html[data-theme="black"] .data-table,
    html[data-theme="black"] .table-header,
    html[data-theme="black"] .table-body,
    html[data-theme="black"] .table-row,
    html[data-theme="black"] .table-cell,
    html[data-theme="black"] .pagination,
    html[data-theme="black"] .page-link,
    html[data-theme="black"] .status-indicator,
    html[data-theme="black"] .status-up,
    html[data-theme="black"] .status-down,
    html[data-theme="black"] .status-neutral,
    html[data-theme="black"] .badge,
    html[data-theme="black"] .badge-success,
    html[data-theme="black"] .badge-warning,
    html[data-theme="black"] .badge-danger,
    html[data-theme="black"] .badge-info,
    html[data-theme="black"] .alert,
    html[data-theme="black"] .alert-success,
    html[data-theme="black"] .alert-warning,
    html[data-theme="black"] .alert-danger,
    html[data-theme="black"] .alert-info,
    html[data-theme="black"] .progress-bar,
    html[data-theme="black"] .progress-fill,
    html[data-theme="black"] .loading-spinner,
    html[data-theme="black"] .loading-overlay,
    html[data-theme="black"] .dropdown,
    html[data-theme="black"] .dropdown-menu,
    html[data-theme="black"] .dropdown-item,
    html[data-theme="black"] .tab-nav,
    html[data-theme="black"] .tab-content,
    html[data-theme="black"] .tab-pane,
    html[data-theme="black"] .accordion,
    html[data-theme="black"] .accordion-item,
    html[data-theme="black"] .accordion-header,
    html[data-theme="black"] .accordion-body,
    html[data-theme="black"] .breadcrumb,
    html[data-theme="black"] .breadcrumb-item,
    html[data-theme="black"] .nav-tabs,
    html[data-theme="black"] .nav-pills,
    html[data-theme="black"] .navbar,
    html[data-theme="black"] .navbar-brand,
    html[data-theme="black"] .navbar-nav,
    html[data-theme="black"] .navbar-toggler,
    html[data-theme="black"] .collapse,
    html[data-theme="black"] .carousel,
    html[data-theme="black"] .carousel-item,
    html[data-theme="black"] .carousel-control,
    html[data-theme="black"] .carousel-indicators,
    html[data-theme="black"] .tooltip,
    html[data-theme="black"] .popover,
    html[data-theme="black"] .offcanvas,
    html[data-theme="black"] .offcanvas-header,
    html[data-theme="black"] .offcanvas-body {
        box-shadow: var(--shadow) !important;
    }
}

/* Team Section Styles */
.team-section {
    transition: all 300ms ease;
    opacity: 1;
}

.team-section.hidden {
    display: none !important;
    opacity: 0;
}

.team-section.visible {
    display: block !important;
    animation: slideInTeam 300ms ease;
}

@keyframes slideInTeam {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Market Board Styles */
.market-board {
    margin-top: 24px;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.market-tile {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--glow);
    transition: all 200ms ease;
}

.market-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(82, 247, 255, 0.15);
}

.market-tile[data-direction="up"] {
    border-color: var(--positive);
    box-shadow: 0 0 0 1px rgba(125, 255, 155, 0.2), 0 0 20px rgba(125, 255, 155, 0.1);
}

.market-tile[data-direction="down"] {
    border-color: var(--danger);
    box-shadow: 0 0 0 1px rgba(255, 111, 145, 0.2), 0 0 20px rgba(255, 111, 145, 0.1);
}

.market-tile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.market-label {
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
}

.market-direction {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.market-tile[data-direction="up"] .market-direction {
    background: rgba(125, 255, 155, 0.1);
    color: var(--positive);
}

.market-tile[data-direction="down"] .market-direction {
    background: rgba(255, 111, 145, 0.1);
    color: var(--danger);
}

.market-tile[data-direction="flat"] .market-direction {
    background: rgba(255, 255, 255, 0.1);
    color: var(--muted);
}

.market-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    font-family: 'Sora', sans-serif;
}

.market-change {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.market-tile[data-direction="up"] .market-change {
    color: var(--positive);
}

.market-tile[data-direction="down"] .market-change {
    color: var(--danger);
}

.market-board-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.market-board-meta span {
    font-weight: 500;
}

@media (max-width: 720px) {
    .fx-hours-meta-card,
    .fx-volume-panel {
        padding: 16px;
    }

    .fx-hours-grid-wrap,
    .fx-volume-chart {
        padding: 14px;
    }

    .fx-hours-bubble {
        min-width: 92px;
        padding: 10px 14px;
    }

    .fx-hours-bubble strong {
        font-size: 22px;
    }

    .fx-hours-scale,
    .fx-volume-scale {
        gap: 4px;
    }

    .fx-scale-mark span {
        font-size: 10px;
    }

    .fx-volume-bars {
        gap: 5px;
    }

    .fx-session-window {
        padding: 8px 10px;
    }

    .fx-session-window strong {
        font-size: 15px;
    }

    .fx-session-window small,
    .fx-session-window em {
        font-size: 10px;
    }
}







