/* BitShares Modern Theme */
:root {
    --bs-bg: #06080b;
    --bs-bg-card: #0d1117;
    --bs-bg-card-hover: #121820;
    --bs-border: rgba(255, 79, 26, 0.15);
    --bs-orange: #ff4f1a;
    --bs-orange-glow: rgba(255, 79, 26, 0.35);
    --bs-orange-soft: rgba(255, 79, 26, 0.12);
    --bs-text: #ffffff;
    --bs-text-muted: #8a9199;
    --bs-green: #22c55e;
    --bs-gold: #f5b942;
    --bs-radius: 16px;
    --bs-font: 'Inter', 'Segoe UI', sans-serif;
}

body.bs-theme {
    background: #000;
    color: var(--bs-text);
    font-family: var(--bs-font);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.bs-theme .headerTop,
body.bs-theme .tradingview-widget-container { display: none !important; }

/* Site wrapper — full width with side spacing */
.bs-full-wrap {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
    box-sizing: border-box;
}

.bs-theme .bs-nav-wrap .bs-full-wrap,
.bs-theme .bs-hero > .bs-full-wrap,
.bs-theme .bs-footer .bs-full-wrap,
.bs-theme .bs-section > .bs-full-wrap {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* NAV */
.bs-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bs-border);
}

.bs-nav-wrap .container {
    position: relative;
}

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

.bs-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none !important;
    flex-shrink: 0;
    border: none;
    background: transparent;
    padding: 0;
    line-height: 0;
}

.bs-nav-logo-icon {
    width: 38px;
    height: 38px;
    display: block;
    flex-shrink: 0;
}

.bs-nav-logo-text .the,
.bs-nav-logo-text .shares { color: #fff; }
.bs-nav-logo-text .bit { color: var(--bs-orange); }

.bs-nav-login {
    padding: 9px 20px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    border: 1px solid var(--bs-orange) !important;
    background: transparent !important;
    color: #fff !important;
}

.bs-nav-login:hover {
    border-color: #ff632f !important;
    color: var(--bs-orange) !important;
    background: rgba(255, 79, 26, 0.08) !important;
}

.bs-nav-register {
    padding: 9px 20px !important;
    font-size: 14px !important;
}

.bs-nav-brand img { max-height: 88px; max-width: 180px; width: auto; height: auto; }

.bs-nav-logo-full {
    display: block;
    height: auto;
    width: auto;
    max-height: 88px;
    max-width: 180px;
    object-fit: contain;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    vertical-align: middle;
    -webkit-user-drag: none;
    user-select: none;
}

.bs-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.bs-nav-links a {
    color: #e8eaed;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 0;
    transition: .2s;
}

.bs-nav-links a:hover {
    color: #fff;
}

.bs-nav-links li.active a {
    color: var(--bs-orange) !important;
}

.bs-nav-actions { display: flex; gap: 16px; align-items: center; }

.bs-nav-signin {
    color: var(--bs-text) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--bs-orange);
    transition: .2s;
}

.bs-nav-signin:hover {
    color: var(--bs-orange) !important;
}

.bs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: .2s;
}

.bs-btn-primary {
    background: var(--bs-orange);
    color: #fff !important;
    box-shadow: 0 0 24px var(--bs-orange-glow);
}

.bs-btn-primary:hover {
    background: #ff632f;
    color: #fff;
    transform: translateY(-1px);
}

.bs-btn-outline {
    background: transparent;
    color: var(--bs-text) !important;
    border: 1px solid var(--bs-border);
}

.bs-btn-outline:hover { border-color: var(--bs-orange); color: var(--bs-orange) !important; }

.bs-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--bs-border);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.bs-nav-panel {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 16px;
    min-width: 0;
}

.bs-nav-panel-head {
    display: none;
}

.bs-nav-panel-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--bs-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bs-nav-close {
    display: none;
    background: transparent;
    border: 1px solid var(--bs-border);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 0;
    flex-shrink: 0;
}

.bs-nav-panel-body {
    display: contents;
}

.bs-nav-overlay {
    display: none;
}

/* Mobile drawer — class toggled via JS when panel is active drawer */
.bs-nav-panel.is-drawer {
    position: fixed !important;
    top: 0;
    left: 0;
    width: min(300px, 88vw);
    max-width: 320px;
    height: 100dvh;
    height: 100vh;
    max-height: 100dvh;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: stretch !important;
    flex: none !important;
    gap: 0;
    background: linear-gradient(180deg, #222a3a 0%, #1a2230 100%);
    border-right: 1px solid rgba(255, 79, 26, 0.25);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.35);
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.32s ease;
    overflow: hidden;
    pointer-events: none;
}

.bs-nav-panel.is-drawer.open {
    transform: translateX(0);
    pointer-events: auto;
}

.bs-nav-panel.is-drawer .bs-nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 79, 26, 0.2);
    background: rgba(255, 79, 26, 0.08);
}

.bs-nav-panel.is-drawer .bs-nav-panel-title {
    color: #fff;
    font-weight: 700;
}

.bs-nav-panel.is-drawer .bs-nav-close {
    display: inline-flex;
    border-color: rgba(255, 79, 26, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.bs-nav-panel.is-drawer .bs-nav-panel-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.bs-nav-panel.is-drawer .bs-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 10px 14px;
    gap: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 79, 26, 0.4) transparent;
}

.bs-nav-panel.is-drawer .bs-nav-links::-webkit-scrollbar {
    width: 4px;
}

.bs-nav-panel.is-drawer .bs-nav-links::-webkit-scrollbar-thumb {
    background: rgba(255, 79, 26, 0.35);
    border-radius: 4px;
}

.bs-nav-panel.is-drawer .bs-nav-links li {
    flex-shrink: 0;
    list-style: none;
}

.bs-nav-panel.is-drawer .bs-nav-links a {
    display: block;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.35;
    color: #f3f5f8;
    font-weight: 500;
    white-space: nowrap;
}

.bs-nav-panel.is-drawer .bs-nav-links a:hover {
    color: var(--bs-orange);
    background: rgba(255, 255, 255, 0.06);
}

.bs-nav-panel.is-drawer .bs-nav-links li.active a {
    background: rgba(255, 79, 26, 0.2);
    color: var(--bs-orange);
}

.bs-nav-panel.is-drawer .bs-nav-actions {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100%;
    padding: 14px 16px 20px;
    border-top: 1px solid rgba(255, 79, 26, 0.2);
    gap: 10px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.12);
}

.bs-nav-panel.is-drawer .bs-nav-login,
.bs-nav-panel.is-drawer .bs-nav-register {
    width: 100%;
    justify-content: center;
    padding: 11px 16px !important;
    font-size: 14px !important;
}

.bs-nav-overlay.is-drawer {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.bs-nav-overlay.is-drawer.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

html.bs-nav-open,
body.bs-nav-open {
    overflow: hidden;
    height: 100%;
}

/* SECTION BACKGROUNDS */
.bs-section { padding: 88px 0; position: relative; overflow: hidden; }
.bs-section-sm { padding: 72px 0; }
.bs-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.bs-section > .bs-full-wrap { position: relative; z-index: 1; }

.bs-section-bg-advantage {
    background: #050608;
}

/* OUR ADVANTAGE — mockup */
.bs-section-advantage {
    padding: 100px 0 110px;
    background: #050608;
}

.bs-advantage-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bs-adv-curve {
    position: absolute;
    width: 420px;
    height: 320px;
    pointer-events: none;
}
.bs-adv-curve-tr {
    top: -40px;
    right: -20px;
}
.bs-adv-curve-bl {
    bottom: -60px;
    left: -40px;
    transform: rotate(180deg);
}

.bs-adv-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4f1a;
    box-shadow: 0 0 10px rgba(255, 79, 26, 0.9), 0 0 24px rgba(255, 79, 26, 0.45);
}
.bs-adv-dot.lg {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 14px rgba(255, 79, 26, 1), 0 0 32px rgba(255, 79, 26, 0.5);
}
.bs-adv-dot.sm {
    width: 4px;
    height: 4px;
    opacity: 0.75;
}

.bs-advantage-title {
    font-size: clamp(34px, 4.2vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #fff;
}

.bs-advantage-title > span {
    color: #fff;
}

.bs-advantage-title .bs-orange-line {
    color: var(--bs-orange) !important;
}

.bs-advantage-sub {
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
    color: #8a9199;
}

.bs-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.bs-advantage-card {
    background: rgba(10, 12, 16, 0.92);
    border: 1px solid rgba(255, 79, 26, 0.14);
    border-radius: 18px;
    padding: 44px 32px 36px;
    text-align: center;
    transition: .3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
}

.bs-advantage-card:hover {
    border-color: rgba(255, 79, 26, 0.32);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.bs-adv-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-orange);
    font-size: 26px;
    background: transparent;
    border: 1.5px solid rgba(255, 79, 26, 0.55);
    box-shadow:
        0 0 0 10px rgba(255, 79, 26, 0.05),
        0 0 28px rgba(255, 79, 26, 0.22),
        inset 0 0 20px rgba(255, 79, 26, 0.04);
    position: relative;
}

.bs-adv-icon::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 79, 26, 0.18) 0%, transparent 70%);
    z-index: -1;
}

.bs-adv-icon i {
    color: var(--bs-orange);
    font-size: 26px;
    line-height: 1;
}

.bs-adv-icon svg {
    width: 30px;
    height: 30px;
    display: block;
    color: var(--bs-orange);
    stroke: currentColor;
    flex-shrink: 0;
}

.bs-advantage-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.bs-advantage-card .bs-card-line {
    width: 36px;
    height: 2px;
    background: var(--bs-orange);
    margin: 16px auto 18px;
    opacity: 0.85;
}

.bs-advantage-card p {
    color: #8a9199;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.bs-advantage-card .bs-card-arrow {
    display: block;
    margin-top: 28px;
    color: var(--bs-orange);
    font-size: 20px;
    line-height: 1;
    opacity: 0.9;
}

/* ADVANTAGE CARDS (legacy alias) */
.bs-section-bg-performance {
    background: radial-gradient(ellipse at 90% 10%, rgba(255,79,26,0.08) 0%, transparent 50%);
}
.bs-section-bg-live {
    background: radial-gradient(circle at 95% 5%, rgba(255,79,26,0.07) 0%, transparent 40%);
}
.bs-section-bg-steps {
    background:
        radial-gradient(circle at 10% 90%, rgba(255,79,26,0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255,79,26,0.04) 0%, transparent 35%);
}
.bs-section-bg-why {
    background: radial-gradient(circle at 95% 15%, rgba(255,79,26,0.06) 0%, transparent 45%);
}
.bs-section-bg-global {
    background: radial-gradient(circle at 70% 50%, rgba(255,79,26,0.05) 0%, transparent 55%);
}
.bs-section-bg-referral {
    background:
        radial-gradient(circle at 20% 50%, rgba(255,79,26,0.05) 0%, transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(255,79,26,0.04) 0%, transparent 40%);
}

.bs-label-line::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--bs-orange);
    margin: 10px auto 0;
}
.bs-label-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bs-label-inline::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--bs-orange);
}

.bs-title-stack-left { align-items: flex-start; text-align: left; }

/* ICON GLOW */
.bs-icon-glow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-orange);
    font-size: 24px;
    background: radial-gradient(circle, rgba(255,79,26,0.22) 0%, rgba(255,79,26,0.04) 55%, transparent 70%);
    box-shadow: 0 0 30px rgba(255,79,26,0.2);
}
.bs-icon-glow.sm {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin-bottom: 16px;
}

/* PERFORMANCE ENHANCED */
.bs-section-performance {
    position: relative;
    overflow: hidden;
    background: #050608;
}

.bs-perf-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bs-section-performance > .bs-full-wrap {
    position: relative;
    z-index: 1;
}

.bs-perf-outline-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 79, 26, 0.55);
    color: var(--bs-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(255, 79, 26, 0.12);
}

.bs-perf-outline-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
}

.bs-perf-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.bs-perf-head {
    text-align: left;
    margin-bottom: 8px;
}

.bs-perf-main,
.bs-perf-top {
    overflow: visible;
}

.bs-perf-select {
    color: var(--bs-text-muted);
    font-size: 13px;
    border: 1px solid var(--bs-border);
    border-radius: 8px;
    padding: 8px 36px 8px 14px;
    min-width: 190px;
    width: 100%;
    display: block;
    background: rgba(0,0,0,0.25);
    cursor: pointer;
    user-select: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
    line-height: 1.4;
}

.bs-perf-select-wrap {
    position: relative;
    z-index: 30;
    min-width: 190px;
}

.bs-perf-select-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.bs-perf-select option {
    background: #15171c;
    color: #e8eaed;
}

.bs-perf-select:focus {
    outline: none;
    border-color: rgba(255, 79, 26, 0.55);
    box-shadow: 0 0 0 2px rgba(255, 79, 26, 0.15);
}

.bs-perf-label {
    color: var(--bs-text-muted);
    font-size: 11px;
    letter-spacing: 1px;
    margin: 0 0 6px;
    text-transform: uppercase;
    text-align: left;
}

.bs-perf-chart-wrap {
    margin: 12px -8px 0;
    padding-top: 4px;
    width: calc(100% + 16px);
    overflow: visible;
}

.bs-perf-chart-svg {
    width: 100%;
    max-width: none;
    height: 210px;
    min-height: 200px;
    display: block;
    overflow: visible;
}

.bs-perf-disclaimer {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--bs-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.bs-perf-change {
    color: var(--bs-green);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0 0;
}

.bs-mini-label { font-size: 13px; color: var(--bs-text-muted); margin-bottom: 4px; }

.bs-bottom-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 28px;
    background: rgba(10, 12, 16, 0.95);
    border: 1px solid var(--bs-border);
    border-radius: var(--bs-radius);
    overflow: hidden;
    text-align: left;
}

.bs-bottom-stat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 24px 22px;
    border-right: 1px solid var(--bs-border);
    min-width: 0;
}
.bs-bottom-stat:last-child { border-right: none; }
.bs-bottom-stat > div:not(.bs-perf-outline-icon) {
    flex: 1;
    min-width: 0;
}
.bs-bottom-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    word-break: break-word;
}
.bs-bottom-stat span {
    display: block;
    font-size: 13px;
    color: var(--bs-text-muted);
    margin-top: 4px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.bs-bottom-stat small {
    display: block;
    font-size: 11px;
    color: #727a84;
    margin-top: 2px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

/* LIVE TABLE ENHANCED */
.bs-section-live {
    position: relative;
    overflow: hidden;
    background: #050608;
}

.bs-live-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bs-section-live > .bs-full-wrap {
    position: relative;
    z-index: 1;
}

.bs-live-link {
    color: var(--bs-orange) !important;
    font-size: 14px;
    text-decoration: none !important;
    font-weight: 500;
    white-space: nowrap;
}

.bs-live-dot {
    width: 8px;
    height: 8px;
    background: var(--bs-orange);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    animation: bs-pulse 1.5s infinite;
    box-shadow: 0 0 8px var(--bs-orange);
}

.bs-live-header > span {
    display: inline-flex;
    align-items: center;
    color: var(--bs-text-muted);
    font-size: 13px;
}

.bs-live-timer { color: var(--bs-text-muted); font-size: 12px; }

.bs-coin-icon,
.bs-icon-img.bs-coin-icon,
.bs-inline-icon-crypto {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    background: #fff;
}

.bs-coin-icon.bs-legacy-pair,
.bs-icon-img.bs-coin-icon.bs-legacy-pair,
.bs-pair-img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.bs-ex-icon,
.bs-icon-img.bs-ex-icon,
.bs-inline-icon-exchanges {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    background: #fff;
}

.bs-ex-icon.bs-legacy-ex,
.bs-icon-img.bs-ex-icon.bs-legacy-ex {
    width: auto;
    height: 28px;
    max-width: 40px;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
}

.bs-cell-text {
    min-width: 0;
    overflow: visible;
}

.bs-spread-col {
    text-align: center;
}

.bs-spread-pct {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
}

.bs-spread-pct.bs-spread-positive {
    color: var(--bs-green, #22c55e);
}

.bs-spread-pct.bs-spread-negative {
    color: var(--bs-orange, #ff4f1a);
}

.bs-spread-cell {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
    min-width: 180px;
}

.bs-sparkline {
    width: 84px;
    height: 28px;
    flex-shrink: 0;
    overflow: visible;
}

/* HOW IT WORKS STEPS */
.bs-section-steps {
    position: relative;
    overflow: hidden;
    background: #050608;
}

.bs-steps-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bs-section-steps > .bs-full-wrap {
    position: relative;
    z-index: 1;
}

.bs-steps-wrap {
    position: relative;
    margin-top: 52px;
}

.bs-steps-timeline {
    position: relative;
    max-width: 920px;
    margin: 0 auto 36px;
    height: 44px;
}

.bs-steps-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(255,79,26,0.15), rgba(255,79,26,0.85) 20%, rgba(255,79,26,0.85) 80%, rgba(255,79,26,0.15));
    box-shadow: 0 0 12px rgba(255, 79, 26, 0.25);
}

.bs-steps-timeline-points {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    padding: 0 4%;
}

.bs-step-point {
    flex-shrink: 0;
}

.bs-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    flex-shrink: 0;
}

.bs-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bs-step-card {
    background: rgba(10, 12, 16, 0.95);
    border: 1px solid var(--bs-border);
    border-radius: var(--bs-radius);
    padding: 32px 22px 28px;
    text-align: center;
    position: relative;
}

.bs-step-card h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.bs-step-card .bs-card-line {
    margin: 12px auto 14px;
}

.bs-step-card p {
    font-size: 13px;
    color: var(--bs-text-muted);
    line-height: 1.65;
    margin: 0;
}

.bs-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0a0c10;
    border: 2px solid var(--bs-orange);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(255, 79, 26, 0.45), inset 0 0 12px rgba(255, 79, 26, 0.12);
}

.bs-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-orange);
    border: 1.5px solid rgba(255, 79, 26, 0.45);
    background: radial-gradient(circle, rgba(255, 79, 26, 0.18) 0%, rgba(255, 79, 26, 0.04) 55%, transparent 72%);
    box-shadow: 0 0 28px rgba(255, 79, 26, 0.22);
}

.bs-step-icon svg {
    width: 30px;
    height: 30px;
    display: block;
    stroke: currentColor;
}

.bs-step-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 79, 26, 0.55);
    color: var(--bs-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(255, 79, 26, 0.12);
}

.bs-step-feature-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
}

.bs-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 36px;
    background: rgba(10, 12, 16, 0.95);
    border: 1px solid var(--bs-border);
    border-radius: var(--bs-radius);
    padding: 0;
    overflow: hidden;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.bs-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 24px 22px;
    text-align: left;
    border-right: 1px solid var(--bs-border);
    min-width: 0;
}

.bs-feature-item > div:last-child {
    min-width: 0;
    flex: 1;
}

.bs-feature-item:last-child { border-right: none; }

.bs-feature-item h4 {
    font-size: 14px;
    margin: 0 0 6px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.bs-feature-item p {
    font-size: 12px;
    color: var(--bs-text-muted);
    margin: 0;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

/* THEBITSHARES ECOSYSTEM (HOW IT WORKS) */
.bs-section-ecosystem {
    position: relative;
    overflow: hidden;
    background: #050608;
    padding: 88px 0 96px;
}

.bs-section-ecosystem > .bs-full-wrap {
    position: relative;
    z-index: 1;
}

.bs-eco-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.bs-eco-wrap .row {
    margin-left: 0;
    margin-right: 0;
}

.bs-eco-hero {
    margin-bottom: 52px;
}

.bs-eco-hero-brand {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

.bs-eco-brand-link {
    display: inline-block;
    line-height: 0;
}

.bs-eco-brand-logo {
    width: 100%;
    max-width: 210px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.bs-eco-hero-brand .bs-eco-kicker {
    margin: 10px 0 0;
    text-align: center;
    padding-left: 4px;
}

.bs-eco-hero-copy .bs-eco-sub {
    max-width: 520px;
    margin: 0 auto;
}

.bs-eco-hero-globe {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-eco-globe-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .bs-eco-hero-brand {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

    .bs-eco-brand-logo {
        margin: 0;
    }

    .bs-eco-hero-brand .bs-eco-kicker {
        text-align: left;
        padding-left: 6px;
    }

    .bs-eco-hero-globe {
        justify-content: flex-end;
        padding-right: clamp(12px, 2vw, 24px);
    }

    .bs-eco-globe-img {
        margin: 0 0 0 auto;
        max-width: 280px;
    }
}

.bs-eco-kicker {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bs-orange);
    margin: 0 0 14px;
    font-weight: 600;
}

.bs-eco-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 16px;
    line-height: 1.1;
    color: #fff;
}

.bs-eco-lead {
    font-size: clamp(13px, 1.6vw, 16px);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d7dde5;
    margin: 0 0 10px;
    font-weight: 600;
}

.bs-eco-sub {
    font-size: 15px;
    color: var(--bs-text-muted);
    line-height: 1.65;
}

.bs-eco-steps-row {
    margin-bottom: 44px;
}

.bs-eco-step-col {
    position: relative;
    padding-top: 10px;
    padding-bottom: 8px;
}

@media (min-width: 992px) {
    .bs-eco-step-col:not(:last-child)::after {
        content: '\f054';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: -6px;
        transform: translateY(-50%);
        color: var(--bs-orange);
        font-size: 14px;
        z-index: 3;
        opacity: 0.9;
        pointer-events: none;
    }
}

.bs-eco-step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: rgba(8, 10, 14, 0.94);
    border: 1px solid rgba(255, 79, 26, 0.42);
    border-radius: 16px;
    padding: 36px 18px 24px;
    text-align: center;
    box-shadow: 0 0 24px rgba(255, 79, 26, 0.06);
}

.bs-eco-step-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 32px;
    height: 26px;
    padding: 0 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 79, 26, 0.7);
    background: #0a0c10;
    color: var(--bs-orange);
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(255, 79, 26, 0.28);
}

.bs-eco-step-visual {
    width: 180px;
    height: 180px;
    margin: 4px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bs-eco-step-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.bs-eco-step-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bs-eco-step-card h3 {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 14px;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    flex-shrink: 0;
}

.bs-eco-step-body > p {
    font-size: 12px;
    color: var(--bs-text-muted);
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

.bs-eco-step-body .bs-eco-checks {
    flex: 1 1 auto;
}

.bs-eco-checks {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.bs-eco-checks li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--bs-text-muted);
    line-height: 1.65;
    margin-bottom: 10px;
}

.bs-eco-checks li:last-child {
    margin-bottom: 0;
}

.bs-eco-checks i {
    color: var(--bs-orange);
    font-size: 11px;
    margin-top: 4px;
    flex-shrink: 0;
}

.bs-eco-checks strong {
    color: #fff;
    font-weight: 700;
}

.bs-eco-features-panel {
    margin-bottom: 36px;
    border: 1px solid rgba(255, 79, 26, 0.42);
    border-radius: 14px;
    background: rgba(8, 10, 14, 0.94);
    overflow: hidden;
    box-shadow: 0 0 24px rgba(255, 79, 26, 0.05);
}

.bs-eco-features-bar {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
}

.bs-eco-feature-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 22px 14px;
    border-right: 1px solid var(--bs-border);
    height: 100%;
}

.bs-eco-feature-item:last-child {
    border-right: none;
}

.bs-eco-feature-item > div {
    min-width: 0;
    flex: 1 1 auto;
}

.bs-eco-feature-icon-img,
.bs-eco-stat-icon-img {
    width: 34px;
    height: 34px;
    min-width: 34px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.bs-eco-stat-icon-img {
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin: 0 auto 10px;
}

.bs-eco-feature h4,
.bs-eco-feature-item h4 {
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 6px;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
}

.bs-eco-feature p,
.bs-eco-feature-item p {
    font-size: 10px;
    color: var(--bs-text-muted);
    margin: 0;
    line-height: 1.55;
}

.bs-eco-feature p strong,
.bs-eco-feature-item p strong {
    color: #fff;
}

.bs-eco-transparency {
    border: 1px solid rgba(255, 79, 26, 0.42);
    border-radius: 16px;
    background: rgba(8, 10, 14, 0.94);
    padding: 28px 24px;
    box-shadow: 0 0 28px rgba(255, 79, 26, 0.06);
}

.bs-eco-transparency-copy {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.bs-eco-shield-img {
    width: 88px;
    height: 88px;
    min-width: 88px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.bs-eco-transparency-copy h3 {
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-orange);
    margin: 0 0 10px;
    font-weight: 800;
}

.bs-eco-transparency-copy p {
    font-size: 12px;
    color: var(--bs-text-muted);
    line-height: 1.7;
    margin: 0;
}

.bs-eco-stat {
    text-align: center;
    padding: 8px 4px;
    height: 100%;
}

.bs-eco-stat strong {
    display: block;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--bs-orange);
    line-height: 1.1;
}

.bs-eco-stat-label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    margin-top: 6px;
    font-weight: 700;
    line-height: 1.35;
}

.bs-eco-stat small {
    display: block;
    font-size: 10px;
    color: var(--bs-text-muted);
    margin-top: 4px;
    line-height: 1.45;
}

@media (max-width: 991px) and (min-width: 768px) {
    .bs-eco-features-bar {
        flex-wrap: wrap;
    }

    .bs-eco-feature-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid var(--bs-border);
    }

    .bs-eco-feature-item:nth-child(odd) {
        border-right: 1px solid var(--bs-border);
    }

    .bs-eco-feature-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (min-width: 992px) {
    .bs-eco-steps-row {
        display: flex;
        flex-wrap: wrap;
    }

    .bs-eco-steps-row > [class*='col-'] {
        display: flex;
    }
}

/* WHY BITSHARES */
.bs-section-why {
    position: relative;
    overflow: hidden;
    background: #050608;
}

.bs-why-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bs-why-curves {
    position: absolute;
    top: -30px;
    right: -60px;
    width: min(58vw, 620px);
    height: auto;
    pointer-events: none;
}

.bs-section-why > .bs-full-wrap {
    position: relative;
    z-index: 1;
}

.bs-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--bs-border);
    border-bottom: 1px solid var(--bs-border);
}

.bs-why-item {
    text-align: center;
    padding: 36px 24px 32px;
    border-right: 1px solid var(--bs-border);
}

.bs-why-item:last-child {
    border-right: none;
}

.bs-why-outline-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-orange);
    border: 1.5px solid rgba(255, 79, 26, 0.55);
    background: radial-gradient(circle, rgba(255, 79, 26, 0.14) 0%, rgba(255, 79, 26, 0.03) 55%, transparent 72%);
    box-shadow: 0 0 22px rgba(255, 79, 26, 0.18);
}

.bs-why-outline-icon.sm {
    width: 40px;
    height: 40px;
    margin: 0 0 14px;
}

.bs-why-outline-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    stroke: currentColor;
}

.bs-why-outline-icon.sm svg {
    width: 18px;
    height: 18px;
}

.bs-why-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.35;
    color: #fff;
}

.bs-why-highlight {
    color: var(--bs-orange);
}

.bs-why-item p {
    font-size: 13px;
    color: var(--bs-text-muted);
    margin: 0;
    line-height: 1.55;
}

.bs-trusted-card {
    margin-top: 40px;
    background: rgba(12, 14, 18, 0.98);
    border: 1px solid var(--bs-border);
    border-radius: 14px;
    overflow: hidden;
}

.bs-trusted-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0;
    margin-top: 0;
    align-items: stretch;
}

.bs-trusted-box {
    grid-column: 1;
    grid-row: 1;
    padding: 22px 24px;
    border-right: 1px solid var(--bs-border);
    background: transparent;
    border-radius: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.bs-trusted-stats-row {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    align-self: stretch;
    min-height: 100%;
}

.bs-trusted-partners {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid var(--bs-border);
    padding: 10px 12px 11px;
    background: rgba(255, 79, 26, 0.02);
}

.bs-trusted-right {
    display: contents;
}

.bs-trusted-stats-row .bs-stat-box {
    border-bottom: none;
    border-right: 1px solid var(--bs-border);
    padding: 16px 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bs-trusted-stats-row .bs-stat-box:last-child {
    border-right: none;
}

.bs-trusted-stats-row .bs-why-outline-icon.sm {
    width: 34px;
    height: 34px;
    margin: 0 0 10px;
}

.bs-trusted-stats-row .bs-why-outline-icon.sm svg {
    width: 16px;
    height: 16px;
}

.bs-trusted-stats-row .bs-stat-box .num {
    font-size: 22px;
    line-height: 1;
}

.bs-trusted-stats-row .bs-stat-box .txt {
    font-size: 12px;
    margin-top: 3px;
}

.bs-trusted-stats-row .bs-stat-box small {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.35;
}

.bs-trusted-partners {
    border-top: 1px solid var(--bs-border);
    padding: 10px 12px 11px;
    background: rgba(255, 79, 26, 0.02);
}

.bs-trusted-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.bs-trusted-logo {
    flex: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #707780;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 6px;
    line-height: 1;
    white-space: nowrap;
}

.bs-trusted-logo:last-child {
    border-right: none;
}

.bs-trusted-logo.is-lower {
    font-weight: 500;
    letter-spacing: 0;
    font-size: 12px;
    color: #656c75;
}

.bs-trusted-card .bs-title {
    font-size: clamp(20px, 2.2vw, 26px);
    margin-bottom: 8px;
    line-height: 1.2;
}

.bs-trusted-card .bs-label {
    margin-bottom: 8px;
}

.bs-trusted-desc {
    color: var(--bs-text-muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 16px;
    max-width: 340px;
}

.bs-trusted-card .bs-btn.bs-btn-primary {
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 7px;
    box-shadow: 0 0 14px rgba(255, 79, 26, 0.3);
    gap: 5px;
    line-height: 1.2;
    width: fit-content;
    align-self: flex-start;
}

.bs-trusted-card .bs-btn.bs-btn-primary svg {
    width: 13px;
    height: 13px;
}

.bs-btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bs-btn-arrow svg {
    display: block;
}

.bs-stat-box {
    background: transparent;
    border-bottom: 1px solid var(--bs-border);
    border-right: 1px solid var(--bs-border);
    border-radius: 0;
    padding: 28px 24px;
    text-align: left;
}

.bs-stat-box:nth-child(2n) { border-right: none; }
.bs-stats-2x2 .bs-stat-box:nth-child(3),
.bs-stats-2x2 .bs-stat-box:nth-child(4) { border-bottom: none; }

.bs-stat-box .num {
    font-size: 30px;
    font-weight: 800;
    color: var(--bs-orange);
    line-height: 1.1;
}

.bs-stat-box .txt {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin-top: 4px;
}

.bs-stat-box small {
    display: block;
    font-size: 12px;
    color: var(--bs-text-muted);
    margin-top: 4px;
}

.bs-partners-bar {
    border-top: 1px solid var(--bs-border);
    padding: 22px 32px 26px;
    text-align: center;
    background: rgba(255, 79, 26, 0.03);
}

.bs-partners-label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bs-text-muted);
    margin-bottom: 18px;
}

.bs-partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 28px;
}

.bs-partner-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #b8bec6;
    letter-spacing: 0.5px;
}

.bs-partner-logo img {
    display: block;
    border-radius: 50%;
}

.bs-partner-logo.coinbase span {
    color: #5b9cf5;
    font-weight: 500;
    text-transform: lowercase;
}

.bs-partner-logo.kraken span {
    color: #9b87f5;
    font-weight: 600;
    text-transform: lowercase;
}

.bs-partner-more {
    font-size: 13px;
    color: var(--bs-text-muted);
    font-weight: 500;
}

/* GLOBAL REACH */
.bs-section-global {
    background: #050608;
    padding: 72px 0 64px;
}

.bs-global-map-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: min(62vw, 780px);
    height: 100%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.bs-global-map-bg .bs-world-map-svg {
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 320px;
    display: block;
    opacity: 0.95;
}

.bs-global-layout {
    position: relative;
    z-index: 1;
    max-width: 52%;
}

.bs-global-copy .bs-title {
    font-size: clamp(26px, 3.2vw, 40px);
    margin-bottom: 12px;
}

.bs-global-sub {
    font-size: 15px;
    max-width: 480px;
    margin-bottom: 0;
}

.bs-global-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
    max-width: 620px;
}
.bs-global-stat-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.bs-global-stat-item:last-child { border-right: none; }
.bs-global-stat-item strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.bs-global-stat-item span {
    display: block;
    font-size: 11px;
    color: var(--bs-text-muted);
    margin-top: 2px;
    line-height: 1.35;
}

.bs-global-stat-item .bs-why-outline-icon.sm {
    flex-shrink: 0;
    margin: 0;
    width: 32px;
    height: 32px;
}

.bs-global-stat-item .bs-why-outline-icon.sm svg {
    width: 15px;
    height: 15px;
}

.bs-global-partners-bar {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(8, 10, 14, 0.92);
    padding: 16px 28px 20px;
    overflow: hidden;
}

.bs-global-partners-bar::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(320px, 48%);
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4f1a 20%, #ff4f1a 80%, transparent);
    box-shadow: 0 0 22px rgba(255, 79, 26, 0.8);
}

.bs-global-partners-label {
    margin: 0 0 14px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #5c636b;
}

.bs-global-partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    min-height: 52px;
}

.bs-gp-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #e8eaed;
    white-space: nowrap;
    line-height: 1;
}

.bs-gp-item img {
    width: 38px;
    height: 38px;
    display: block;
    border-radius: 50%;
    flex-shrink: 0;
}

.bs-gp-item.is-binance span {
    color: #f3ba2f;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.bs-gp-item.is-okx img,
.bs-gp-item.is-bybit img {
    display: none;
}

.bs-gp-item.is-okx span,
.bs-gp-item.is-bybit span {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08em;
}

.bs-gp-item.is-coinbase span {
    color: #5b9cf5;
    font-size: 19px;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0;
}

.bs-gp-item.is-kraken span {
    color: #9b87f5;
    font-size: 19px;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0;
}

.bs-gp-more {
    padding: 0 20px 0 28px;
    font-size: 15px;
    font-weight: 500;
    color: #6a7179;
    white-space: nowrap;
}

/* REFERRAL PROGRAM */
.bs-section-referral {
    background: #050608;
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}

.bs-ref-map-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: min(55vw, 680px);
    height: 72%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0.55;
}

.bs-ref-map-bg .bs-world-map-svg {
    width: 100%;
    height: 100%;
    max-width: none;
}

.bs-ref-header {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.bs-ref-title {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 10px;
}

.bs-ref-sub {
    font-size: 15px;
    max-width: 720px;
    margin-bottom: 0;
    text-align: left;
}

.bs-ref-sub p {
    margin: 0 0 14px;
    line-height: 1.65;
    color: var(--bs-text-muted);
}

.bs-ref-sub p:last-child {
    margin-bottom: 0;
}

.bs-ref-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    margin-top: 32px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.bs-ref-tree-card {
    background: rgba(8, 10, 14, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px 28px;
}

.bs-ref-tree-visual {
    display: flex;
    align-items: flex-start;
    gap: 0;
    min-height: 220px;
}

.bs-ref-you {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2.5px solid var(--bs-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 28px rgba(255, 79, 26, 0.45);
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    margin-top: 8px;
}

.bs-ref-tree-lines {
    width: 48px;
    height: auto;
    flex-shrink: 0;
    margin-top: 4px;
    opacity: 0.85;
}

.bs-ref-levels-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.bs-ref-levels-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bs-ref-levels-list li:last-child { border-bottom: none; }

.bs-ref-lvl-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 79, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-orange);
    flex-shrink: 0;
}

.bs-ref-lvl-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.bs-ref-levels-list .lvl {
    flex: 1;
    font-size: 12px;
    color: var(--bs-text-muted);
    letter-spacing: 0.06em;
    font-weight: 600;
}

.bs-ref-levels-list .pct {
    font-weight: 800;
    color: var(--bs-orange);
    font-size: 15px;
}

.bs-ref-stats-card {
    background: rgba(8, 10, 14, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 6px 0;
    display: flex;
    flex-direction: column;
}

.bs-ref-stat-row {
    display: flex;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    align-items: flex-start;
}

.bs-ref-stat-row:last-child { border-bottom: none; }

.bs-ref-stat-row .bs-why-outline-icon.sm {
    margin: 0;
    flex-shrink: 0;
}

.bs-ref-stat-label { font-size: 12px; color: var(--bs-text-muted); font-weight: 500; }
.bs-ref-stat-val {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 3px 0 2px;
    line-height: 1.1;
}
.bs-ref-stat-val.orange { color: var(--bs-orange); }
.bs-ref-stat-sub { font-size: 11px; color: #6a7179; line-height: 1.4; }

.bs-ref-levels-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.bs-ref-levels-bar {
    display: flex;
    align-items: stretch;
    flex: 1;
    background: rgba(8, 10, 14, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    min-height: 88px;
}

.bs-ref-lvl-cell {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    gap: 4px;
}

.bs-ref-lvl-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #5c636b;
    text-transform: uppercase;
}

.bs-ref-lvl-icon.sm {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 79, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-orange);
}

.bs-ref-lvl-icon.sm svg {
    width: 13px;
    height: 13px;
    display: block;
}

.bs-ref-lvl-pct {
    font-size: 22px;
    font-weight: 800;
    color: var(--bs-orange);
    line-height: 1;
}

.bs-ref-lvl-label {
    font-size: 9px;
    letter-spacing: 0.06em;
    color: #5c636b;
    font-weight: 600;
}

.bs-ref-bonus-total {
    flex: 1.15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    text-align: center;
    border-left: 1px solid rgba(255, 79, 26, 0.25);
    background: rgba(255, 79, 26, 0.04);
    box-shadow: inset 0 0 24px rgba(255, 79, 26, 0.06);
}

.bs-ref-bonus-pre {
    font-size: 11px;
    color: var(--bs-text-muted);
    font-weight: 500;
}

.bs-ref-bonus-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--bs-orange);
    line-height: 1.1;
    margin: 2px 0;
}

.bs-ref-bonus-lbl {
    font-size: 11px;
    color: var(--bs-orange);
    font-weight: 700;
}

.bs-ref-note {
    flex-shrink: 0;
    max-width: 220px;
    font-size: 11px;
    color: var(--bs-text-muted);
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.bs-ref-note svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.bs-ref-comp-note {
    background: rgba(8, 10, 14, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 13px;
    color: var(--bs-text-muted);
    line-height: 1.65;
    text-align: left;
}

.bs-ref-comp-note p {
    margin: 0 0 10px;
}

.bs-ref-comp-note p:last-child {
    margin-bottom: 0;
}

.bs-ref-comp-note a {
    color: var(--bs-orange);
    font-weight: 600;
    text-decoration: none;
}

.bs-ref-comp-note a:hover {
    text-decoration: underline;
}

.bs-leadership {
    margin-top: 24px;
    background: rgba(8, 10, 14, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bs-leadership-crown {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--bs-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 32px rgba(255, 79, 26, 0.35);
    color: var(--bs-orange);
    flex-shrink: 0;
}

.bs-leadership-crown svg {
    width: 32px;
    height: 32px;
    display: block;
}

.bs-leadership-body h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.bs-leadership-body > p {
    color: var(--bs-text-muted);
    font-size: 13px;
    margin: 0 0 10px;
    line-height: 1.6;
}

.bs-leadership-contact {
    font-size: 12px !important;
    color: #6a7179 !important;
    margin-bottom: 14px !important;
}

.bs-ref-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 79, 26, 0.55);
    background: rgba(255, 79, 26, 0.06);
    color: #fff !important;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none !important;
    width: fit-content;
    transition: 0.2s;
}

.bs-ref-email-btn:hover {
    border-color: var(--bs-orange);
    background: rgba(255, 79, 26, 0.12);
    color: #fff !important;
}

.bs-ref-email-btn svg {
    color: var(--bs-orange);
    flex-shrink: 0;
}

.bs-leadership-aside {
    max-width: 170px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 24px;
    text-align: left;
}

.bs-leadership-aside svg {
    display: block;
    margin-bottom: 8px;
}

.bs-leadership-aside p {
    font-size: 10px;
    color: #6a7179;
    margin: 0;
    line-height: 1.55;
}

.bs-nav-logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.bs-label {
    color: var(--bs-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bs-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
}

.bs-title-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1.12;
}

.bs-title-stack span { display: block; color: #fff; }
.bs-orange-line { color: var(--bs-orange) !important; }

.bs-subtitle {
    color: var(--bs-text-muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 640px;
}

.bs-text-center { text-align: center; }
.bs-text-center .bs-subtitle { margin: 0 auto; }

/* HERO */
.bs-hero {
    padding: 48px 0 72px;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #000;
}

.bs-hero > .bs-full-wrap {
    width: 100%;
}

.bs-hero::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 68%;
    height: 80%;
    background: radial-gradient(ellipse at 88% 38%, rgba(255, 79, 26, 0.16) 0%, rgba(255, 79, 26, 0.05) 42%, transparent 72%);
    pointer-events: none;
}

.bs-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    gap: 32px 48px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.bs-hero-copy {
    max-width: none;
    padding-top: 16px;
}

.bs-hero-title {
    display: flex;
    flex-direction: column;
    font-size: clamp(44px, 4.8vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 24px;
    gap: 0;
    letter-spacing: -0.03em;
    color: #fff;
}

.bs-hero-line {
    display: block;
    white-space: nowrap;
    color: #fff;
}

.bs-hero-title .bs-orange-line {
    color: var(--bs-orange) !important;
}

.bs-hero-subtitle {
    color: #8b929a;
    font-size: 16px;
    line-height: 1.65;
    max-width: 460px;
    margin: 0;
    font-weight: 400;
}

.bs-hero-chart {
    background: transparent;
    border: none;
    padding: 0;
    min-height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: stretch;
    overflow: hidden;
    width: 100%;
    margin-right: 0;
}

.bs-hero-chart-svg {
    width: 100%;
    max-width: none;
    height: 300px;
    min-height: 280px;
    display: block;
}

@media (min-width: 992px) {
    .bs-hero > .bs-full-wrap {
        overflow: visible;
    }

    .bs-hero-chart {
        width: calc(100% + clamp(20px, 4vw, 48px));
        margin-right: calc(-1 * clamp(20px, 4vw, 48px));
    }

    .bs-hero-chart::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(32%, 160px);
        background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 45%, #000 100%);
        pointer-events: none;
        z-index: 2;
    }

    .bs-hero-chart-svg {
        transform: scale(1.04);
        transform-origin: center right;
    }
}

.bs-hero-stats.bs-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 56px);
    margin-top: 56px;
    padding-top: 0;
    border-top: none;
    width: 100%;
}

.bs-hero-stats .bs-stat-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.bs-hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 79, 26, 0.55);
    color: var(--bs-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 18px rgba(255, 79, 26, 0.12);
}

.bs-hero-stat-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    stroke: currentColor;
}

.bs-hero-stats .bs-stat-value {
    font-size: 30px;
    font-weight: 800;
    color: var(--bs-orange);
    line-height: 1.05;
    margin-top: 4px;
}

.bs-hero-stats .bs-stat-label {
    color: #8a9199;
    font-size: 13px;
    line-height: 1.35;
}

.bs-hero-stats .bs-stat-sub {
    color: #727a84;
    font-size: 12px;
    margin-top: 5px;
}

.bs-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 52px;
    padding-top: 0;
    border-top: none;
    width: 100%;
}

.bs-stat-card {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bs-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bs-orange);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(255, 79, 26, 0.25);
}

.bs-stat-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.bs-stat-body {
    min-width: 0;
}

.bs-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--bs-orange);
    line-height: 1.1;
    margin-top: 2px;
}

.bs-stat-label {
    color: #8a9199;
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
}

.bs-stat-sub {
    color: #727a84;
    font-size: 12px;
    margin-top: 4px;
}

/* CARDS GRID */
.bs-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bs-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.bs-card {
    background: var(--bs-bg-card);
    border: 1px solid var(--bs-border);
    border-radius: var(--bs-radius);
    padding: 28px;
    transition: .25s;
}

.bs-card:hover {
    border-color: rgba(255, 79, 26, 0.35);
    transform: translateY(-3px);
}

.bs-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bs-orange-soft);
    color: var(--bs-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px var(--bs-orange-glow);
}

.bs-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 12px; }
.bs-card p { color: var(--bs-text-muted); font-size: 14px; line-height: 1.6; margin: 0; }
.bs-card-line { width: 32px; height: 2px; background: var(--bs-orange); margin: 16px 0; }

/* PERFORMANCE */
.bs-perf-grid {
    display: grid;
    grid-template-columns: 1.55fr 0.85fr;
    gap: 24px;
    margin-top: 40px;
    text-align: left;
}

.bs-perf-main {
    background: rgba(10, 12, 16, 0.95);
    border: 1px solid var(--bs-border);
    border-radius: var(--bs-radius);
    padding: 28px 28px 22px;
    text-align: left;
}

.bs-perf-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.bs-perf-tabs span {
    padding: 6px 0;
    border-radius: 0;
    font-size: 13px;
    color: var(--bs-text-muted);
    cursor: pointer;
}

.bs-perf-tabs span,
.bs-perf-tabs .bs-perf-tab {
    cursor: pointer;
}

.bs-perf-tabs span.active,
.bs-perf-tabs .bs-perf-tab.active {
    background: transparent;
    color: var(--bs-orange);
    border-bottom: 2px solid var(--bs-orange);
    border-radius: 0;
    padding-bottom: 8px;
}

.bs-perf-return { font-size: 38px; font-weight: 800; color: var(--bs-orange); line-height: 1; }

.bs-perf-side { display: flex; flex-direction: column; gap: 16px; }

.bs-mini-stat {
    background: rgba(10, 12, 16, 0.95);
    border: 1px solid var(--bs-border);
    border-radius: var(--bs-radius);
    padding: 22px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-align: left;
}

.bs-mini-stat .val { font-size: 26px; font-weight: 800; color: var(--bs-orange); line-height: 1.1; }
.bs-mini-stat .lbl { font-size: 12px; color: var(--bs-text-muted); margin-top: 4px; }

/* LIVE TABLE */
.bs-live-wrap {
    background: rgba(10, 12, 16, 0.95);
    border: 1px solid var(--bs-border);
    border-radius: var(--bs-radius);
    overflow: hidden;
    margin-top: 40px;
}

.bs-live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--bs-border);
    flex-wrap: wrap;
}

@keyframes bs-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* LIVE TABLE */
.bs-live-table-wrap {
    padding: 0;
    overflow-x: auto;
}

.bs-live-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    table-layout: fixed;
}

.bs-live-table thead th {
    text-align: left;
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bs-text-muted);
    border-bottom: 1px solid var(--bs-border);
    background: rgba(255, 79, 26, 0.04);
}

.bs-live-table thead th:nth-child(1) { width: 18%; }
.bs-live-table thead th:nth-child(2) { width: 18%; }
.bs-live-table thead th:nth-child(3) { width: 5%; }
.bs-live-table thead th:nth-child(4) { width: 18%; }
.bs-live-table thead th:nth-child(5) { width: 14%; text-align: center; }
.bs-live-table thead th:nth-child(6) { width: 21%; }

.bs-live-table tbody td:nth-child(5) {
    text-align: center;
}

.bs-live-table tbody td:nth-child(5) .bs-spread-col,
.bs-live-table tbody td.bs-spread-col {
    text-align: center;
}

.bs-icon-preload {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
}

.bs-live-table tbody tr {
    border-bottom: 1px solid var(--bs-border);
    transition: background .2s;
}

.bs-live-table tbody tr:hover { background: rgba(255, 79, 26, 0.04); }

.bs-live-table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    color: var(--bs-text);
    overflow: visible;
}

.bs-live-table tbody td:last-child {
    text-align: left;
}

.bs-exec-cell {
    font-size: 11px;
    color: var(--bs-text-muted);
}

.bs-exec-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.bs-exec-inner time {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.bs-exec-cell i {
    flex-shrink: 0;
    color: var(--bs-orange, #ff4f1a);
}

.bs-live-table tbody tr {
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.bs-live-table tbody tr.bs-row-new {
    animation: bsRowSlideIn 0.4s ease;
}

@keyframes bsRowSlideIn {
    from {
        opacity: 0.6;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bs-pair-cell, .bs-ex-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.bs-pair-cell strong, .bs-ex-cell strong {
    display: block;
    font-size: 14px;
    white-space: nowrap;
}

.bs-pair-cell small, .bs-ex-cell small {
    display: block;
    color: var(--bs-text-muted);
    font-size: 12px;
    white-space: nowrap;
}

.bs-pair-exchanges {
    margin: 2px 0 0;
    color: var(--bs-text-muted);
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
}

.bs-pair-exchanges i {
    margin: 0 5px;
    font-size: 10px;
    opacity: 0.75;
}

.bs-swap-cell {
    text-align: center;
    color: var(--bs-text-muted);
    width: 48px;
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.bs-swap-cell svg {
    display: block;
    margin: 0 auto;
}

.bs-spread-col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bs-spread {
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

.bs-spread-positive {
    color: var(--bs-green);
}

.bs-spread-negative {
    color: var(--bs-orange);
}

.bs-live-footer {
    text-align: center;
    padding: 12px;
    border-top: 1px solid var(--bs-border);
}

.bs-live-loading { text-align: center; color: var(--bs-text-muted); padding: 40px !important; }

@media (max-width: 767px) {
    .bs-live-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bs-live-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
    }

    .bs-live-table {
        min-width: 720px;
        table-layout: auto;
    }

    .bs-live-table thead th,
    .bs-live-table tbody td {
        padding: 14px 12px;
        white-space: nowrap;
    }

    .bs-live-table thead th:nth-child(1),
    .bs-live-table tbody td:nth-child(1) { min-width: 130px; }

    .bs-live-table thead th:nth-child(2),
    .bs-live-table tbody td:nth-child(2),
    .bs-live-table thead th:nth-child(4),
    .bs-live-table tbody td:nth-child(4) { min-width: 120px; }

    .bs-live-table thead th:nth-child(5),
    .bs-live-table tbody td:nth-child(5) { min-width: 110px; }

    .bs-live-table thead th:nth-child(6),
    .bs-live-table tbody td:nth-child(6) { min-width: 168px; }

    .bs-spread-col {
        justify-content: center;
        gap: 8px;
    }

    .bs-spread-pct {
        font-size: 15px;
    }

    .bs-sparkline {
        width: 64px;
        height: 22px;
    }

    .bs-exec-inner {
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    .bs-exec-inner time {
        font-size: 11px;
        white-space: nowrap;
    }
}

/* CMS Partners row */
.bs-partners-cms { margin-top: 48px; }
.bs-partners-cms .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.bs-partners-cms .partnersInner {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid var(--bs-border) !important;
    border-radius: 12px !important;
    padding: 20px 28px !important;
    margin: 0 !important;
    min-width: 140px;
    text-align: center;
}
.bs-partners-cms .partnersInner img {
    max-height: 36px;
    width: auto;
    filter: grayscale(1) brightness(1.4);
    margin: 0 auto;
}

.bs-stats-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.bs-global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* legacy alias kept for CMS pages if any */

/* INNER PAGES */
.bs-page-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,79,26,.06) 0%, transparent 100%);
}

.bs-page-content {
    padding: 40px 0 80px;
}

.bs-page-content .bs-card,
.bs-page-content .panel {
    background: var(--bs-bg-card) !important;
    border: 1px solid var(--bs-border) !important;
    color: var(--bs-text) !important;
}

.bs-page-content .panel-heading {
    background: rgba(255,79,26,.06) !important;
    border-color: var(--bs-border) !important;
}

.bs-page-content .panel-heading a { color: var(--bs-text) !important; }
.bs-page-content .panel-body { color: var(--bs-text-muted) !important; }

.bs-page-content .form-control {
    background: var(--bs-bg-card);
    border: 1px solid var(--bs-border);
    color: var(--bs-text);
    border-radius: 10px;
    padding: 12px 16px;
}

.bs-page-content .form-control:focus {
    border-color: var(--bs-orange);
    box-shadow: 0 0 0 3px var(--bs-orange-soft);
}

/* FOOTER */
.bs-footer {
    background: #040506;
    border-top: 1px solid var(--bs-border);
    padding: 60px 0 24px;
}

.bs-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.bs-footer-grid > div:first-child {
    min-width: 0;
}

.bs-footer-col {
    min-width: 0;
}

.bs-footer h4 {
    color: var(--bs-orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.bs-footer ul { list-style: none; padding: 0; margin: 0; }
.bs-footer ul li { margin-bottom: 8px; }
.bs-footer ul a {
    color: var(--bs-text-muted);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    display: inline-block;
    word-break: break-word;
}
.bs-footer ul a:hover { color: var(--bs-orange); }

.bs-footer-bottom {
    border-top: 1px solid var(--bs-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--bs-text-muted);
    font-size: 13px;
}

.bs-footer-brand-link {
    color: var(--bs-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.bs-footer-brand-link:hover {
    color: #fff;
    text-decoration: underline;
}

.bs-social { display: flex; gap: 12px; }
.bs-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--bs-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-text-muted);
    transition: .2s;
}

.bs-social a:hover { color: var(--bs-orange); border-color: var(--bs-orange); }

.bs-newsletter {
    background: var(--bs-bg-card);
    border: 1px solid var(--bs-border);
    border-radius: var(--bs-radius);
    padding: 32px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bs-newsletter form { display: flex; gap: 8px; flex: 1; max-width: 420px; }
.bs-newsletter input {
    flex: 1;
    background: var(--bs-bg);
    border: 1px solid var(--bs-border);
    color: #fff;
    border-radius: 999px;
    padding: 10px 18px;
}

/* PARTNERS from CMS */
.bs-section .partnersInner {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid var(--bs-border) !important;
    border-radius: 12px !important;
}

/* DECORATIVE */
.bs-glow-dots {
    position: absolute;
    pointer-events: none;
    opacity: .4;
}

/* CMS page content inside cards */
.bs-page-content .bs-card h1,
.bs-page-content .bs-card h2,
.bs-page-content .bs-card h3 { color: var(--bs-text); }
.bs-page-content .bs-card p,
.bs-page-content .bs-card li { color: var(--bs-text-muted); line-height: 1.7; }
.bs-page-content .bs-card a { color: var(--bs-orange); }
.bs-cms-content h1, .bs-cms-content h2, .bs-cms-content h3 { color: var(--bs-text); margin-top: 0; }
.bs-cms-content p, .bs-cms-content li { color: var(--bs-text-muted); line-height: 1.8; }

/* Auth pages */
.bs-auth-logo {
    text-align: center;
    margin-bottom: 18px;
}

.bs-auth-logo img {
    max-height: 72px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bs-auth-captcha {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.bs-auth-submit {
    text-align: center;
}

.bs-auth-submit .btnTheme {
    min-width: 180px;
    width: auto;
    display: inline-block;
}

.bs-password-wrap {
    position: relative;
}

.bs-password-wrap .form-control {
    padding-right: 44px;
}

.bs-toggle-pass {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--bs-text-muted, #9ca3af);
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
    z-index: 2;
}

.bs-toggle-pass:hover {
    color: var(--bs-orange);
}

.bs-toggle-pass:focus {
    outline: none;
}

.bs-theme .logInArea {
    background: var(--bs-bg);
    padding: 48px 16px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-auth-wrap {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.bs-auth-wrap--register {
    max-width: 720px;
}

.bs-theme .logInArea .users form {
    background: var(--bs-bg-card);
    border: 1px solid var(--bs-border);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    padding: 28px 24px 24px;
    margin: 0;
    width: 100%;
}

.bs-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.bs-auth-grid .form-group,
.bs-auth-full .form-group {
    margin-bottom: 16px;
}

.bs-auth-full {
    grid-column: 1 / -1;
}

.bs-theme .logInArea .logIn {
    border-bottom-color: var(--bs-orange);
    margin-bottom: 20px;
}

.bs-theme .logInArea .logIn h2 {
    color: var(--bs-text);
    font-size: 22px;
    padding: 4px 0 10px;
}

.bs-theme .logInArea .logIn h2:before,
.bs-theme .logInArea .logIn h2:after {
    background: var(--bs-orange);
    box-shadow: 0 0 0 5px rgba(255, 79, 26, 0.25);
}

.bs-theme .logInArea .form-control {
    background: var(--bs-bg-card);
    border: 1px solid var(--bs-border);
    color: var(--bs-text);
    border-radius: 10px;
    height: 46px;
    font-size: 14px;
}
.bs-theme .logInArea .btnTheme {
    background: var(--bs-orange) !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 11px 24px !important;
    font-size: 15px !important;
    width: 100%;
    max-width: 100%;
}
.bs-theme .logInArea .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
}
.bs-theme .logInArea .links a { color: var(--bs-orange); }
.bs-theme .logInArea .checkbox label {
    color: var(--bs-text-muted);
    font-size: 14px;
    font-weight: 400;
}
.bs-theme .logInArea .chkRegister label,
.bs-theme .logInArea .chkRegister a {
    color: var(--bs-text-muted);
    font-size: 14px;
}
.bs-theme .logInArea .or-message {
    text-align: center;
    margin-bottom: 8px;
}
.bs-theme .logInArea .or-message + p {
    text-align: center;
    margin: 0;
    color: var(--bs-text-muted);
    font-size: 14px;
}
.bs-theme .logInArea select.form-control,
.bs-theme .logInArea .users select.form-control {
    color: #fff;
    background-color: var(--bs-bg-card);
}
.bs-theme .logInArea select.form-control option,
.bs-theme .logInArea .users select.form-control option {
    color: #fff;
    background-color: var(--bs-bg-card);
}

/* Hide old header/footer chrome */
.bs-theme header:not(.bs-nav-wrap),
.bs-theme .footer:not(.bs-footer),
.bs-theme .newsletter:not(.bs-newsletter) { display: none !important; }

@media (max-width: 1199px) {
    .bs-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bs-hero-copy {
        max-width: 100%;
    }

    .bs-hero-title {
        font-size: clamp(36px, 5vw, 56px);
    }

    .bs-hero-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .bs-theme .bs-full-wrap,
    .bs-theme .bs-nav-wrap .bs-full-wrap,
    .bs-theme .bs-hero > .bs-full-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bs-hero {
        min-height: auto;
        padding: 24px 0 40px;
    }

    .bs-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bs-hero-line {
        white-space: normal;
    }

    .bs-hero-chart {
        width: 100%;
        margin-right: 0;
        justify-content: center;
    }

    .bs-hero-chart-svg {
        height: 240px;
    }

    .bs-hero-grid, .bs-perf-grid, .bs-trusted-grid, .bs-global-grid, .bs-ref-layout { grid-template-columns: 1fr; }
    .bs-global-layout { max-width: 100%; }
    .bs-global-map-bg { width: 100%; height: 55%; top: auto; bottom: 0; opacity: 0.45; }
    .bs-global-partners-row { flex-wrap: wrap; gap: 16px 0; justify-content: center; min-height: 0; }
    .bs-gp-item { border-right: none; padding: 0 14px; font-size: 15px; }
    .bs-gp-item img { width: 32px; height: 32px; }
    .bs-gp-item.is-okx span, .bs-gp-item.is-bybit span { font-size: 17px; }
    .bs-gp-item.is-binance span { font-size: 16px; }
    .bs-gp-item.is-coinbase span, .bs-gp-item.is-kraken span { font-size: 16px; }
    .bs-grid-3, .bs-why-grid, .bs-steps, .bs-features-bar, .bs-global-stats-row { grid-template-columns: 1fr 1fr; }
    .bs-bottom-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bs-advantage-grid { grid-template-columns: 1fr; }
    .bs-adv-curve { width: 260px; height: 200px; opacity: 0.6; }
    .bs-why-curves { width: 320px; right: -40px; opacity: 0.7; }
    .bs-bottom-stat {
        border-right: none;
        border-bottom: 1px solid var(--bs-border);
        padding: 18px 14px;
        gap: 10px;
    }
    .bs-bottom-stat:nth-child(odd) { border-right: 1px solid var(--bs-border); }
    .bs-bottom-stat:nth-last-child(-n+2) { border-bottom: none; }
    .bs-bottom-stat strong { font-size: 18px; }
    .bs-bottom-stat span { font-size: 12px; }
    .bs-bottom-stat small { font-size: 10px; }
    .bs-steps-timeline { display: none; }
    .bs-steps-line { display: none; }
    .bs-why-item { border-right: none; border-bottom: 1px solid var(--bs-border); }
    .bs-why-item:nth-child(2n) { border-right: none; }
    .bs-why-item:nth-last-child(-n+2) { border-bottom: none; }
    .bs-trusted-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .bs-trusted-box {
        grid-column: 1;
        grid-row: 1;
        border-right: none;
        border-bottom: 1px solid var(--bs-border);
        padding: 22px 24px;
    }
    .bs-trusted-stats-row {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: 1fr 1fr;
    }
    .bs-trusted-partners {
        grid-column: 1;
        grid-row: 3;
    }
    .bs-trusted-stats-row .bs-stat-box:nth-child(2) { border-right: none; }
    .bs-trusted-stats-row .bs-stat-box:nth-child(1),
    .bs-trusted-stats-row .bs-stat-box:nth-child(2) { border-bottom: 1px solid var(--bs-border); }
    .bs-trusted-partners .bs-trusted-logo { font-size: 10px; padding: 0 4px; }
    .bs-trusted-partners .bs-trusted-logo.is-lower { font-size: 10px; }
    .bs-ref-layout { grid-template-columns: 1fr; }
    .bs-ref-levels-wrap { flex-direction: column; align-items: stretch; }
    .bs-ref-note { max-width: none; }
    .bs-ref-map-bg { width: 100%; height: 40%; opacity: 0.35; }
    .bs-leadership { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
    .bs-leadership-aside { border-left: none; padding-left: 0; max-width: none; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
    .bs-stats-row { grid-template-columns: 1fr; }
    .bs-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 16px;
    }
    .bs-footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
    .bs-footer h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .bs-footer ul a { font-size: 13px; }
    .bs-nav-toggle { display: flex; align-items: center; justify-content: center; }

    .bs-nav-wrap {
        transform: none !important;
    }
}

@media (max-width: 767px) {
    .bs-section-ecosystem {
        padding: 64px 0 72px;
    }

    .bs-eco-hero {
        margin-bottom: 36px;
        text-align: center;
    }

    .bs-eco-hero-brand {
        padding-left: 0;
        padding-right: 0;
    }

    .bs-eco-hero-brand .bs-eco-kicker {
        padding-left: 0;
    }

    .bs-eco-hero-globe {
        margin-top: 12px;
        padding-right: clamp(16px, 5vw, 32px);
        padding-left: clamp(16px, 5vw, 32px);
    }

    .bs-eco-sub {
        margin-bottom: 0;
    }

    .bs-eco-step-visual {
        width: 150px;
        height: 150px;
    }

    .bs-eco-transparency {
        padding: 22px 16px;
    }

    .bs-eco-transparency-copy {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bs-eco-shield-img {
        width: 72px;
        height: 72px;
        min-width: 72px;
    }

    .bs-eco-features-bar {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .bs-eco-feature-item {
        border-right: none;
        border-bottom: 1px solid var(--bs-border);
        padding: 18px 16px;
    }

    .bs-eco-feature-item:last-child {
        border-bottom: none;
    }

    .bs-features-bar,
    .bs-why-grid,
    .bs-steps {
        grid-template-columns: 1fr;
    }

    .bs-section-steps,
    .bs-section-why {
        overflow-x: hidden;
    }

    .bs-feature-item {
        border-right: none;
        border-bottom: 1px solid var(--bs-border);
        padding: 20px 16px;
    }

    .bs-feature-item:last-child {
        border-bottom: none;
    }

    .bs-why-item {
        border-right: none !important;
    }

    .bs-why-item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--bs-border);
    }

    .bs-why-item:last-child {
        border-bottom: none;
    }

    .bs-trusted-stats-row {
        grid-template-columns: 1fr;
    }

    .bs-trusted-stats-row .bs-stat-box {
        border-right: none !important;
    }

    .bs-trusted-stats-row .bs-stat-box:nth-child(1),
    .bs-trusted-stats-row .bs-stat-box:nth-child(2) {
        border-bottom: 1px solid var(--bs-border);
    }

    .bs-trusted-stats-row .bs-stat-box:last-child {
        border-bottom: none;
    }
}

@media (max-width: 575px) {
    .bs-bottom-stats {
        grid-template-columns: 1fr;
    }
    .bs-bottom-stat {
        border-right: none !important;
        border-bottom: 1px solid var(--bs-border);
        padding: 16px 18px;
    }
    .bs-bottom-stat:last-child { border-bottom: none; }
    .bs-ref-levels-bar { flex-wrap: wrap; }
    .bs-ref-lvl-cell { min-width: 30%; flex: 1 1 30%; }
    .bs-ref-bonus-total { flex: 1 1 100%; border-left: none; border-top: 1px solid rgba(255,79,26,0.25); }
    .bs-trusted-stats-row .bs-stat-box { border-right: none; border-bottom: 1px solid var(--bs-border); }
    .bs-trusted-stats-row .bs-stat-box:last-child { border-bottom: none; }
    .bs-feature-item { border-right: none; border-bottom: 1px solid var(--bs-border); }
    .bs-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px 10px;
    }
    .bs-footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
    .bs-footer h4 {
        font-size: 11px;
        letter-spacing: 0.06em;
        margin-bottom: 10px;
    }
    .bs-footer ul li { margin-bottom: 6px; }
    .bs-footer ul a { font-size: 12px; }
    .bs-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* ============================================================
   CONTACT CENTER PAGE
   ============================================================ */
.bs-contact-page { background: #000; }
.bs-contact-page h2 { color: #fff; }

.bs-contact-hero {
    position: relative;
    padding: 48px 0 32px;
    overflow: hidden;
}

.bs-contact-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 75% at 82% 38%, rgba(255, 79, 26, 0.2), transparent 62%),
        radial-gradient(ellipse 35% 45% at 15% 85%, rgba(255, 79, 26, 0.05), transparent 55%);
    pointer-events: none;
}

.bs-contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bs-contact-title {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.bs-contact-title span { display: inline; }

.bs-contact-hero-lead {
    margin: 0 0 12px;
    font-size: clamp(17px, 2vw, 22px);
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
}

.bs-contact-hero-desc {
    margin: 0 0 22px;
    max-width: 580px;
    color: #9aa3ad;
    line-height: 1.65;
    font-size: 14px;
}

.bs-contact-status-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 18px;
}

.bs-contact-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 12, 16, 0.92);
    font-size: 11px;
    color: #c5cad1;
    white-space: nowrap;
}

.bs-contact-status-pill strong {
    color: #fff;
    font-weight: 600;
}

.bs-contact-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bs-green);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
    flex-shrink: 0;
}

.bs-contact-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.bs-contact-mini-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--bs-border);
    background: var(--bs-bg-card);
}

.bs-contact-mini-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-orange-soft);
    color: var(--bs-orange);
}

.bs-contact-mini-stat small {
    display: block;
    color: var(--bs-text-muted);
    font-size: 12px;
    margin-bottom: 2px;
}

.bs-contact-mini-stat strong {
    font-size: 18px;
    color: var(--bs-orange);
}

.bs-contact-globe-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 0;
    background: transparent;
    overflow: hidden;
}

.bs-contact-globe-wrap::before {
    content: '';
    position: absolute;
    width: min(90%, 480px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 79, 26, 0.14) 0%, rgba(255, 79, 26, 0.04) 45%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.bs-contact-globe-inner {
    position: relative;
    width: 100%;
    max-width: 520px;
    z-index: 1;
}

.bs-contact-globe-inner::after {
    content: '';
    position: absolute;
    inset: -6%;
    background:
        radial-gradient(ellipse 62% 62% at 50% 50%, transparent 38%, rgba(0, 0, 0, 0.55) 68%, #000 92%),
        linear-gradient(to top, #000 0%, transparent 22%),
        linear-gradient(to right, transparent 70%, #000 100%);
    pointer-events: none;
    z-index: 2;
}

.bs-contact-globe-img {
    display: block;
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    object-fit: contain;
    -webkit-mask-image: radial-gradient(ellipse 64% 64% at 50% 48%, #000 42%, transparent 90%);
    mask-image: radial-gradient(ellipse 64% 64% at 50% 48%, #000 42%, transparent 90%);
    filter: none;
    animation: none;
}

@keyframes bsGlobePulse {
    0%, 100% { filter: drop-shadow(0 0 28px rgba(255, 79, 26, 0.45)) drop-shadow(0 0 80px rgba(255, 79, 26, 0.18)); }
    50% { filter: drop-shadow(0 0 36px rgba(255, 79, 26, 0.58)) drop-shadow(0 0 100px rgba(255, 79, 26, 0.28)); }
}

.bs-contact-globe-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 79, 26, 0.5), transparent 68%);
    z-index: 1;
    pointer-events: none;
}

.bs-contact-globe-ring {
    position: absolute;
    border: 1px solid rgba(255, 79, 26, 0.22);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.bs-contact-globe-ring-1 {
    width: 500px;
    height: 160px;
    transform: rotate(-22deg);
}

.bs-contact-globe-ring-2 {
    width: 540px;
    height: 200px;
    transform: rotate(18deg);
    opacity: 0.75;
}

.bs-contact-globe-ring-3 {
    width: 460px;
    height: 140px;
    transform: rotate(58deg);
    opacity: 0.6;
}

.bs-contact-section {
    padding: 28px 0 36px;
}

.bs-contact-section-tight { padding-top: 8px; }

.bs-contact-panel {
    border: 1px solid var(--bs-border);
    border-radius: var(--bs-radius);
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.98), rgba(8, 10, 14, 0.98));
    padding: 24px;
}

.bs-contact-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.bs-contact-panel-head h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
}

.bs-contact-panel-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-orange-soft);
    color: var(--bs-orange);
    flex-shrink: 0;
}

.bs-contact-panel-icon i {
    font-size: 15px;
    line-height: 1;
}

.bs-contact-ticket-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr;
    gap: 22px;
    align-items: start;
}

.bs-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bs-contact-field { margin-bottom: 16px; }

.bs-contact-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--bs-text-muted);
}

.bs-contact-field input,
.bs-contact-field select,
.bs-contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}

.bs-contact-field select option {
    color: #fff;
    background: var(--bs-bg-card);
}

.bs-contact-field input:focus,
.bs-contact-field select:focus,
.bs-contact-field textarea:focus {
    border-color: rgba(255, 79, 26, 0.55);
}

.bs-contact-priority {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    min-height: 46px;
    align-items: center;
}

.bs-contact-priority label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.bs-contact-upload {
    position: relative;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    color: var(--bs-text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.bs-contact-upload i {
    display: block;
    font-size: 28px;
    color: var(--bs-orange);
    margin-bottom: 10px;
}

.bs-contact-upload small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
}

.bs-contact-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.bs-contact-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
    margin-top: 6px;
    font-size: 14px !important;
    letter-spacing: 0.04em;
}

.bs-contact-status-panel { position: sticky; top: 96px; }

.bs-contact-online {
    position: relative;
    text-align: center;
    padding: 24px 16px 20px;
    margin-bottom: 18px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.06);
}

.bs-contact-online-dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bs-green);
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.85);
    margin: 0 auto 12px;
}

.bs-contact-online strong {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--bs-green);
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.45);
    margin-bottom: 8px;
}

.bs-contact-online p {
    margin: 0;
    color: var(--bs-text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.bs-contact-online-glow {
    position: absolute;
    inset: 10% 20%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 70%);
    pointer-events: none;
}

.bs-contact-status-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.bs-contact-status-list li {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--bs-text-muted);
    font-size: 14px;
}

.bs-contact-status-list li i { color: var(--bs-orange); font-size: 15px; }

.bs-contact-status-list strong { color: var(--bs-orange); font-weight: 700; }

.bs-contact-policy-btn {
    width: 100%;
    justify-content: center;
    padding: 12px !important;
}

.bs-contact-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bs-contact-channel-card {
    border: 1px solid var(--bs-border);
    border-radius: var(--bs-radius);
    background: var(--bs-bg-card);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bs-contact-channel-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.bs-contact-channel-icon.orange { background: var(--bs-orange-soft); color: var(--bs-orange); }
.bs-contact-channel-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.bs-contact-channel-icon.gold { background: rgba(245, 185, 66, 0.15); color: var(--bs-gold); }

.bs-contact-channel-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.bs-contact-channel-card > a:not(.bs-btn) {
    display: inline-block;
    color: var(--bs-orange);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
}

.bs-contact-channel-card p {
    color: var(--bs-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 18px;
    min-height: 66px;
}

.bs-contact-channel-card .bs-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.bs-contact-invite-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(245, 185, 66, 0.12);
    color: var(--bs-gold);
    font-size: 12px;
    margin: 0 auto 18px;
}

.bs-contact-kb-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.bs-contact-kb-head h2 {
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: #fff;
}

.bs-contact-kb-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.bs-contact-kb-item,
.bs-contact-kb-faq {
    border: 1px solid var(--bs-border);
    border-radius: 12px;
    background: var(--bs-bg-card);
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    color: #fff !important;
    padding: 14px 10px;
    text-align: center;
    transition: .2s;
}

.bs-contact-kb-item i,
.bs-contact-kb-faq i {
    color: var(--bs-orange);
    font-size: 22px;
}

.bs-contact-kb-item span,
.bs-contact-kb-faq span {
    font-size: 12px;
    line-height: 1.35;
}

.bs-contact-kb-item:hover,
.bs-contact-kb-faq:hover {
    border-color: rgba(255, 79, 26, 0.45);
    transform: translateY(-2px);
}

.bs-contact-kb-faq {
    background: linear-gradient(135deg, rgba(255, 79, 26, 0.18), rgba(255, 79, 26, 0.05));
    box-shadow: 0 0 24px rgba(255, 79, 26, 0.12);
}

.bs-contact-ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bs-contact-sys-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bs-contact-sys-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
}

.bs-contact-sys-list em {
    font-style: normal;
    color: var(--bs-green);
    font-size: 12px;
    white-space: nowrap;
}

.bs-contact-sys-list em i { font-size: 8px; margin-right: 6px; }

.bs-contact-sys-note {
    margin: 16px 0 0;
    font-size: 12px;
    color: var(--bs-text-muted);
}

.bs-contact-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bs-contact-metric {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.bs-contact-metric i {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.bs-contact-metric.orange i { color: var(--bs-orange); }
.bs-contact-metric.blue i { color: #60a5fa; }
.bs-contact-metric.green i { color: var(--bs-green); }

.bs-contact-metric small {
    display: block;
    color: var(--bs-text-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.bs-contact-metric strong {
    font-size: 20px;
    color: #fff;
}

.bs-contact-comms-panel {
    position: relative;
    overflow: hidden;
}

.bs-contact-comms-panel p {
    color: var(--bs-text-muted);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
    max-width: 92%;
}

.bs-contact-comms-shield {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 79, 26, 0.25), transparent 70%);
    color: var(--bs-orange);
    font-size: 34px;
    opacity: 0.85;
}

.bs-contact-bottom-bar {
    border-top: 1px solid var(--bs-border);
    background: rgba(8, 10, 14, 0.95);
    padding: 22px 0 34px;
}

.bs-contact-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bs-contact-bottom-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 72%;
}

.bs-contact-247 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--bs-orange-soft);
    color: var(--bs-orange);
    font-weight: 700;
    white-space: nowrap;
}

.bs-contact-bottom-left p {
    margin: 0;
    color: var(--bs-text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.bs-contact-bottom-right {
    color: var(--bs-text-muted);
    font-size: 14px;
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .bs-contact-hero-grid,
    .bs-contact-ticket-grid,
    .bs-contact-ops-grid,
    .bs-contact-channels { grid-template-columns: 1fr; }
    .bs-contact-kb-grid { grid-template-columns: repeat(3, 1fr); }
    .bs-contact-status-panel { position: static; }
    .bs-contact-bottom-inner { flex-direction: column; align-items: flex-start; }
    .bs-contact-bottom-left { max-width: 100%; }
    .bs-contact-bottom-right { text-align: left; white-space: normal; }
}

@media (max-width: 767px) {
    .bs-contact-form-row,
    .bs-contact-metrics-grid { grid-template-columns: 1fr; }
    .bs-contact-kb-grid { grid-template-columns: repeat(2, 1fr); }
    .bs-contact-globe-wrap { min-height: 0; padding: 16px 0; }
    .bs-contact-globe-img { max-width: 100%; }
    .bs-nav-logo-full { max-height: 70px; max-width: 150px; }
    .bs-contact-hero-stats { flex-direction: column; }
    .bs-contact-mini-stat { min-width: 0; width: 100%; }
}

@media (max-width: 575px) {
    .bs-contact-kb-grid { grid-template-columns: 1fr; }
    .bs-contact-status-row {
        flex-wrap: wrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .bs-contact-status-row::-webkit-scrollbar { display: none; }
    .bs-contact-status-pill {
        flex: 0 0 auto;
        min-width: max-content;
    }
    .bs-contact-title {
        font-size: clamp(22px, 6vw, 32px);
        white-space: nowrap;
    }
    .bs-contact-hero-lead { font-size: 16px; }
}

/* ============================================================
   GLOBAL RESPONSIVE — ALL PAGES / ALL SCREENS
   ============================================================ */
.bs-theme img,
.bs-theme video,
.bs-theme svg {
    max-width: 100%;
    height: auto;
}

.bs-theme .container,
.bs-theme .row {
    max-width: 100%;
}

.bs-theme .table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bs-theme .logInArea .container,
.bs-theme .bs-page-content .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

@media (max-width: 991px) {
    .bs-nav {
        flex-wrap: nowrap;
        position: relative;
    }

    .bs-nav-brand {
        flex: 1;
        min-width: 0;
    }

    .bs-nav-toggle {
        margin-left: auto;
    }

    .bs-section,
    .bs-section-sm,
    .bs-contact-section {
        padding-left: 0;
        padding-right: 0;
    }

    .bs-page-hero .container,
    .bs-page-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bs-newsletter {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .bs-newsletter form {
        width: 100%;
        flex-direction: column;
    }

    .bs-newsletter input {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .bs-full-wrap {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .bs-title,
    .bs-hero-title {
        font-size: clamp(28px, 8vw, 42px) !important;
    }

    .bs-stats-row,
    .bs-grid-3,
    .bs-grid-2 {
        grid-template-columns: 1fr !important;
    }

    .bs-btn,
    .bs-btn-primary,
    .bs-btn-outline {
        max-width: 100%;
    }

    .bs-theme .users .col-lg-offset-4,
    .bs-theme .users .col-md-offset-2,
    .bs-theme .users .col-sm-offset-3 {
        margin-left: 0;
    }

    .bs-auth-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .bs-nav-panel.is-drawer {
        width: min(280px, 88vw);
    }

    .bs-nav-logo-full {
        max-height: 58px;
        max-width: 130px;
    }

    .bs-contact-priority {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Google 2FA setup / login */
.bs-auth-subtitle {
    margin: 8px 0 0;
    font-size: 14px;
    color: #8a9199;
    line-height: 1.5;
}

.bs-2fa-qr-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 16px auto 14px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.bs-2fa-qr-img {
    display: block;
    width: 132px;
    height: 132px;
    max-width: 132px;
    max-height: 132px;
    object-fit: contain;
    border-radius: 6px;
}

.bs-2fa-secret-label {
    margin: 0 0 6px;
    font-size: 12px;
    color: #8a9199;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bs-2fa-secret {
    display: block;
    word-break: break-all;
    padding: 10px 12px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ff4f1a;
    font-size: 13px;
}

.bs-2fa-form {
    margin-top: 8px;
}
