:root{--bg-primary: #0a0a0f;--bg-secondary: #12121a;--bg-tertiary: #1a1a24;--bg-hover: #22222e;--accent-green: #00c853;--accent-green-dim: rgba(0, 200, 83, .2);--accent-red: #ff1744;--accent-red-dim: rgba(255, 23, 68, .2);--accent-blue: #2979ff;--accent-yellow: #ffd600;--text-primary: #e8e8ea;--text-secondary: #8b8b8f;--text-muted: #5a5a5e;--border-color: rgba(255, 255, 255, .08);--border-hover: rgba(255, 255, 255, .15);--shadow-sm: 0 2px 4px rgba(0, 0, 0, .3);--shadow-md: 0 4px 12px rgba(0, 0, 0, .4);--shadow-lg: 0 8px 24px rgba(0, 0, 0, .5);--radius-sm: 4px;--radius-md: 8px;--radius-lg: 12px;--transition-fast: .15s ease;--transition-normal: .25s ease;--header-height: 48px;--toolbar-height: 36px;--sidebar-width: 300px;--analytics-height: 80px;--font-mono: "JetBrains Mono", "Fira Code", monospace;--font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html,body{height:100%;width:100%;overflow:hidden;font-family:var(--font-sans);font-size:14px;line-height:1.5;background:var(--bg-primary);color:var(--text-primary);-webkit-font-smoothing:antialiased}#app{display:flex;flex-direction:column;height:100%;width:100%}.header{display:flex;align-items:center;gap:12px;height:var(--header-height);padding:0 12px;background:var(--bg-secondary);border-bottom:1px solid var(--border-color);z-index:100;flex-shrink:0}.header__logo{display:flex;align-items:center;gap:8px;font-weight:700;font-size:16px;color:var(--accent-blue)}.header__controls{display:flex;align-items:center;gap:8px;margin-left:auto}.header__controls .divider{width:1px;height:24px;background:var(--border-color)}.btn--icon.active{background:var(--accent-blue);color:#fff}.header__timeframe{display:none;background:var(--bg-tertiary);color:var(--text-primary);border:1px solid var(--border-color);border-radius:var(--radius-sm);padding:6px 10px;font-size:12px;font-weight:600;cursor:pointer;margin-left:auto}.header__timeframe:focus{outline:none;border-color:var(--accent-blue)}@media(max-width:768px){.header__timeframe{display:block}}.timeframes{display:flex;gap:4px;padding:6px 12px;background:var(--bg-secondary);border-bottom:1px solid var(--border-color);overflow-x:auto;scrollbar-width:none;flex-shrink:0;height:var(--toolbar-height)}.timeframes::-webkit-scrollbar{display:none}.timeframe-btn{padding:4px 10px;font-size:12px;font-weight:500;border:none;border-radius:var(--radius-sm);background:transparent;color:var(--text-secondary);cursor:pointer;white-space:nowrap;transition:all var(--transition-fast)}.timeframe-btn:hover{color:var(--text-primary);background:var(--bg-tertiary)}.timeframe-btn.active{background:var(--accent-blue);color:#fff}.timeframe-select{display:none;background:var(--bg-tertiary);color:var(--text-primary);border:1px solid var(--border-color);border-radius:var(--radius-sm);padding:6px 12px;font-size:13px;font-weight:500;cursor:pointer;margin-left:auto}.timeframe-select:focus{outline:none;border-color:var(--accent-blue)}@media(max-width:768px){.timeframe-btn{display:none}.timeframe-select{display:block}}@media(max-width:480px){.timeframes{display:none!important}}.main{display:flex;flex:1;min-height:0;overflow:hidden}.chart-container{flex:1;display:flex;flex-direction:column;min-height:0;min-width:0}.chart-area{flex:1;position:relative;background:var(--bg-primary);min-height:200px}.cvd-container{flex-shrink:0;border-top:1px solid var(--border-color)}.analytics{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;padding:12px;background:var(--bg-secondary);border-top:1px solid var(--border-color);flex-shrink:0;min-height:var(--analytics-height)}.metric{display:flex;flex-direction:column;gap:4px;padding:8px;background:var(--bg-tertiary);border-radius:var(--radius-sm)}.metric__label{font-size:10px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px}.metric__value{font-size:16px;font-weight:700;font-family:var(--font-mono)}.metric__value--positive{color:var(--accent-green)}.metric__value--negative{color:var(--accent-red)}.sidebar{width:var(--sidebar-width);background:var(--bg-secondary);border-left:1px solid var(--border-color);display:flex;flex-direction:column;flex-shrink:0}.orderbook__header{display:flex;align-items:center;justify-content:space-between;padding:10px 12px;border-bottom:1px solid var(--border-color);flex-shrink:0}.orderbook__title{font-weight:600;font-size:14px}.orderbook__modes{display:flex;gap:4px}.sidebar__close{display:none;font-size:18px;padding:4px 8px;margin-right:8px}@media(max-width:768px){.sidebar__close{display:block}}.orderbook__depth{display:flex;align-items:center;gap:8px;padding:8px 12px;background:var(--bg-tertiary);border-bottom:1px solid var(--border-color);font-size:12px;flex-shrink:0}.orderbook__depth label{color:var(--text-muted)}.orderbook__depth select{background:var(--bg-secondary);color:var(--text-primary);border:1px solid var(--border-color);border-radius:var(--radius-sm);padding:4px 8px;font-size:12px;cursor:pointer}.orderbook__content{flex:1;overflow-y:auto;overflow-x:hidden;min-height:200px}.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;padding:8px 16px;border:none;border-radius:var(--radius-sm);font-size:13px;font-weight:500;cursor:pointer;transition:all var(--transition-fast);background:var(--bg-tertiary);color:var(--text-primary);min-height:36px;min-width:44px}.btn:hover{background:var(--bg-hover)}.btn:active{transform:scale(.98)}.btn--primary{background:var(--accent-blue);color:#fff}.btn--primary:hover{background:#448aff}.btn--icon{padding:8px;width:36px;height:36px}.btn--small{padding:4px 10px;font-size:12px;min-height:28px}.btn-group{display:flex;gap:2px;background:var(--bg-secondary);padding:2px;border-radius:var(--radius-sm)}.btn-group .btn{border-radius:2px}.btn-group .btn.active{background:var(--accent-blue);color:#fff}.selector{position:relative;display:inline-flex}.selector__trigger{display:flex;align-items:center;gap:8px;padding:6px 12px;background:var(--bg-tertiary);border:1px solid var(--border-color);border-radius:var(--radius-sm);cursor:pointer;transition:all var(--transition-fast);min-height:36px}.selector__trigger:hover{border-color:var(--border-hover);background:var(--bg-hover)}.selector__label{font-weight:600;color:var(--text-primary)}.selector__arrow{color:var(--text-muted);transition:transform var(--transition-fast)}.selector.open .selector__arrow{transform:rotate(180deg)}.selector__dropdown{position:absolute;top:calc(100% + 4px);left:0;min-width:200px;max-height:300px;overflow-y:auto;background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--radius-md);box-shadow:var(--shadow-lg);z-index:150;opacity:0;visibility:hidden;transform:translateY(-8px);transition:all var(--transition-fast)}.selector.open .selector__dropdown{opacity:1;visibility:visible;transform:translateY(0)}.selector__option{display:flex;align-items:center;gap:10px;padding:10px 14px;cursor:pointer;transition:background var(--transition-fast)}.selector__option:hover{background:var(--bg-hover)}.selector__option.selected{background:var(--accent-blue);color:#fff}.selector__search{width:100%;padding:10px 14px;background:var(--bg-tertiary);border:none;border-bottom:1px solid var(--border-color);color:var(--text-primary);font-size:13px}.selector__search:focus{outline:none}.selector__options{max-height:250px;overflow-y:auto}.loading{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;gap:12px;color:var(--text-muted);background:var(--bg-primary);z-index:50}.loading__spinner{width:24px;height:24px;border:3px solid var(--border-color);border-top-color:var(--accent-blue);border-radius:50%;animation:spin .8s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.toast-container{position:fixed;bottom:80px;right:24px;display:flex;flex-direction:column;gap:8px;z-index:400}.toast{display:flex;align-items:center;gap:10px;padding:12px 16px;background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--radius-md);box-shadow:var(--shadow-md);animation:slideIn .3s ease}.toast--success{border-color:var(--accent-green)}.toast--error{border-color:var(--accent-red)}@keyframes slideIn{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:var(--bg-primary)}::-webkit-scrollbar-thumb{background:var(--bg-tertiary);border-radius:3px}::-webkit-scrollbar-thumb:hover{background:var(--bg-hover)}.mobile-toolbar,.bottom-nav{display:none}@media(max-width:768px){:root{--sidebar-width: 100vw}.sidebar{position:fixed;right:-100%;top:0;height:100%;transition:right var(--transition-normal);z-index:200}.sidebar.active{right:0}.analytics{grid-template-columns:repeat(3,1fr);padding:8px;gap:6px}.bottom-nav{position:fixed;bottom:0;left:0;right:0;height:60px;display:flex;align-items:center;justify-content:space-around;background:linear-gradient(to top,var(--bg-primary),var(--bg-secondary));border-top:1px solid var(--border-color);z-index:200;padding-bottom:env(safe-area-inset-bottom);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.bottom-nav__btn{display:flex;flex-direction:column;align-items:center;gap:4px;padding:8px 12px;background:none;border:none;color:var(--text-muted);cursor:pointer;transition:all .2s ease;border-radius:12px}.bottom-nav__btn:active{transform:scale(.95)}.bottom-nav__btn.active{color:var(--accent-blue);background:#2979ff1a}.bottom-nav__icon{font-size:22px}.bottom-nav__label{font-size:10px;font-weight:500}.mobile-toolbar{display:none!important}.main-content{padding-bottom:70px}.toast-container{bottom:80px}.sidebar{position:fixed;inset:0 0 60px;width:100%;transform:translate(100%);transition:transform .3s ease;z-index:150}.sidebar.open{transform:translate(0)}}@media(max-width:480px){.header{height:40px;padding:0 8px;gap:6px}.header__logo{font-size:14px;gap:4px}.header__logo span:last-child{display:none}.header__controls{display:none!important}.selector__trigger{padding:4px 8px;min-height:28px;font-size:12px}.selector__label{font-size:12px}.selector__arrow{font-size:10px}.timeframes{height:32px;padding:4px 8px}.analytics{display:grid!important;grid-template-columns:repeat(3,1fr);gap:4px;padding:6px 8px;min-height:60px}.metric{padding:6px 8px}.metric__label{font-size:9px}.metric__value{font-size:13px}.cvd-container{height:50px;min-height:50px}.chart-container{padding-bottom:60px}.sidebar{width:100%;bottom:60px}.orderbook__header{padding:8px 12px}.orderbook__depth{padding:6px 12px}}.home-page{min-height:100vh;width:100%;overflow-y:auto;background:radial-gradient(circle at top left,rgba(0,170,255,.18),transparent 32%),radial-gradient(circle at top right,rgba(0,255,136,.1),transparent 28%),linear-gradient(180deg,#020617,#050916,#020617);color:var(--text-primary)}.home-nav{height:72px;display:flex;align-items:center;justify-content:space-between;padding:0 34px;border-bottom:1px solid rgba(0,174,255,.12);background:#020617b8;-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);position:sticky;top:0;z-index:50}.home-brand{display:flex;align-items:center;gap:12px;font-size:18px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:#fff}.home-brand-logo{width:42px;height:42px;object-fit:contain;border-radius:12px;box-shadow:0 0 18px #00aeff59}.home-brand-mark{width:38px;height:38px;border-radius:12px;background:linear-gradient(135deg,#00aafff2,#00ff88bf);display:flex;align-items:center;justify-content:center;color:#020617;font-weight:900;box-shadow:0 0 22px #00aeff6b}.home-menu{display:flex;align-items:center;gap:22px;color:var(--text-secondary);font-size:13px;font-weight:600}.home-menu span{cursor:pointer;transition:.2s ease}.home-actions{display:flex;gap:10px;align-items:center}.home-btn{border:none;border-radius:999px;padding:11px 18px;cursor:pointer;font-size:13px;font-weight:800;letter-spacing:.04em;transition:.2s ease}.home-btn-primary{background:linear-gradient(135deg,#008cff,#00d084);color:#020617;box-shadow:0 0 22px #00aeff47}.home-btn-primary:hover{transform:translateY(-1px);box-shadow:0 0 30px #00aeff73}.home-btn-secondary{background:#ffffff0f;color:#fff;border:1px solid rgba(255,255,255,.12)}.home-btn-secondary:hover{background:#ffffff1a}.home-profile-btn{background:linear-gradient(135deg,#11d7ff,#07e1b7);color:#020617;border-color:#00eeff73;box-shadow:0 0 24px #00e5ff2e}.home-logout-btn{background:#4b5df6e0;border-color:#8493ff73;color:#fff}.home-hero{max-width:1280px;margin:0 auto;padding:82px 34px 44px;display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:center}.home-kicker{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:#00aeff14;border:1px solid rgba(0,174,255,.22);color:#8bdcff;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.home-kicker:before{content:"";width:8px;height:8px;background:#0f8;border-radius:50%;box-shadow:0 0 12px #0f8}.home-title{margin-top:22px;font-size:clamp(42px,6vw,78px);line-height:.98;letter-spacing:-.06em;font-weight:950;color:#fff}.home-title span{color:#0af;text-shadow:0 0 28px rgba(0,174,255,.35)}.home-subtitle{max-width:640px;margin-top:22px;font-size:17px;color:var(--text-secondary);line-height:1.75}.home-hero-actions{margin-top:32px;display:flex;gap:14px;flex-wrap:wrap}.home-stats{margin-top:34px;display:grid;grid-template-columns:repeat(3,minmax(120px,1fr));gap:12px}.home-stat{padding:16px;border-radius:18px;background:#07111fb8;border:1px solid rgba(0,174,255,.12)}.home-stat strong{display:block;color:#fff;font-size:22px}.home-stat small{color:var(--text-muted);font-size:12px;text-transform:uppercase;letter-spacing:.08em}.home-terminal-preview{border-radius:28px;background:linear-gradient(135deg,#07111ff5,#020617fa);border:1px solid rgba(0,174,255,.18);box-shadow:0 30px 80px #00000073,0 0 36px #00aeff1f;overflow:hidden}.preview-top{height:48px;padding:0 16px;display:flex;align-items:center;justify-content:space-between;background:#00aeff0a;border-bottom:1px solid rgba(0,174,255,.12)}.preview-dots{display:flex;gap:7px}.preview-dots span{width:10px;height:10px;border-radius:50%;background:#1f3148}.preview-live{color:#9cffc4;font-size:11px;font-weight:800;letter-spacing:.14em}.preview-body{padding:18px}.preview-chart{height:280px;border-radius:18px;background:linear-gradient(180deg,rgba(0,174,255,.08),transparent),repeating-linear-gradient(90deg,rgba(255,255,255,.035) 0,rgba(255,255,255,.035) 1px,transparent 1px,transparent 42px),repeating-linear-gradient(0deg,rgba(255,255,255,.035) 0,rgba(255,255,255,.035) 1px,transparent 1px,transparent 42px);position:relative;overflow:hidden}.preview-chart:before{content:"";position:absolute;left:-10%;right:-10%;bottom:65px;height:4px;background:linear-gradient(90deg,transparent,#00aaff,#00ff88,transparent);transform:rotate(-8deg);box-shadow:0 0 26px #00aeffb3}.preview-chart:after{content:"";position:absolute;top:40px;right:30px;width:120px;height:190px;background:linear-gradient(180deg,#0f83,#ff365e29);filter:blur(18px)}.preview-market-row{margin-top:14px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.preview-market-card{padding:14px;border-radius:16px;background:#ffffff09;border:1px solid rgba(255,255,255,.07)}.preview-market-card b{display:block;color:#fff}.preview-market-card small{color:#0f8}.home-section{max-width:1280px;margin:0 auto;padding:24px 34px 70px}.home-section-title{font-size:30px;color:#fff;margin-bottom:18px;letter-spacing:-.04em}.home-market-grid,.home-feature-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}.home-market-card,.home-feature-card{padding:18px;border-radius:22px;background:#07111fb3;border:1px solid rgba(0,174,255,.12);transition:.2s ease}.home-market-card{display:flex;flex-direction:column;min-height:145px}.home-market-card:hover,.home-feature-card:hover{transform:translateY(-3px);border-color:#00aeff52;box-shadow:0 18px 40px #00000038}.home-market-card h3,.home-feature-card h3{color:#fff;font-size:16px;margin-bottom:8px}.home-market-card p,.home-feature-card p{color:var(--text-secondary);font-size:13px}.home-market-card p{min-height:42px}.home-price{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;color:#0f8;font-family:var(--font-mono);font-weight:800}.home-price span:last-child{text-align:right;white-space:nowrap}.home-coming{color:#ffd166!important}.app-terminal-hidden{display:none!important}@media(max-width:980px){.home-hero{grid-template-columns:1fr}.home-market-grid,.home-feature-grid{grid-template-columns:repeat(2,1fr)}.home-menu{display:none}}@media(max-width:560px){.home-nav{padding:0 16px}.home-actions .home-btn-secondary{display:none}.home-hero{padding:50px 18px 30px}.home-section{padding:20px 18px 52px}.home-stats,.home-market-grid,.home-feature-grid,.preview-market-row{grid-template-columns:1fr}}.home-page{position:fixed;inset:0;z-index:9999}.home-page-hidden{opacity:0;transform:scale(1.01);pointer-events:none;transition:opacity .25s ease,transform .25s ease}.terminal-active #app,#app{opacity:1}.splash-screen{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at center,rgba(0,174,255,.12),transparent 34%),linear-gradient(180deg,#000,#020617);transition:opacity .45s ease,visibility .45s ease}.splash-screen.hidden{opacity:0;visibility:hidden;pointer-events:none}.splash-card{display:flex;flex-direction:column;align-items:center;gap:14px;animation:splashFloat 1.6s ease-in-out infinite alternate}.splash-logo{width:92px;height:92px;border-radius:26px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#00aafff2,#00ff88d1);color:#020617;font-weight:950;font-size:30px;letter-spacing:-.08em;box-shadow:0 0 35px #00aeff73,0 0 80px #00ff882e}.splash-title{color:#fff;font-size:28px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.splash-subtitle{color:#8bdcff;font-size:12px;font-weight:700;letter-spacing:.22em;text-transform:uppercase}.splash-loader{margin-top:10px;width:220px;height:4px;border-radius:999px;overflow:hidden;background:#ffffff14}.splash-loader span{display:block;height:100%;width:42%;border-radius:inherit;background:linear-gradient(90deg,#008cff,#0f8);animation:splashLoad 1.2s ease-in-out infinite}@keyframes splashLoad{0%{transform:translate(-120%)}to{transform:translate(260%)}}@keyframes splashFloat{0%{transform:translateY(0)}to{transform:translateY(-8px)}}.tools-panel{position:fixed;top:68px;right:18px;width:390px;max-width:calc(100vw - 28px);max-height:calc(100vh - 96px);overflow:hidden;z-index:400;background:linear-gradient(180deg,#07111ffa,#020617fa);border:1px solid rgba(0,174,255,.22);border-radius:18px;box-shadow:0 22px 70px #00000085,0 0 35px #00aeff1f;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);opacity:0;transform:translateY(-12px) scale(.98);pointer-events:none;transition:.22s ease}.tools-panel.active{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}.tools-panel__header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 18px;border-bottom:1px solid rgba(0,174,255,.16)}.tools-panel__header strong{display:block;color:#fff;font-size:15px;letter-spacing:.04em}.tools-panel__header span{display:block;margin-top:3px;color:#7c8da8;font-size:12px}.tools-panel__close{width:32px;height:32px;border:none;border-radius:10px;color:#8fa6c4;background:#ffffff0f;cursor:pointer}.tools-panel__close:hover{color:#fff;background:#ffffff1c}.tools-panel__body{display:flex;flex-direction:column;gap:10px;padding:14px}.tool-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:13px 14px;border-radius:14px;background:#ffffff09;border:1px solid rgba(255,255,255,.065)}.tool-row strong{display:block;color:#fff;font-size:13px}.tool-row span{display:block;margin-top:3px;color:#7c8da8;font-size:11px;line-height:1.35}.tool-row--disabled{opacity:.58}.tool-toggle{min-width:58px;height:30px;border:1px solid rgba(255,255,255,.11);border-radius:999px;cursor:pointer;background:#ffffff0f;color:#8fa6c4;font-size:11px;font-weight:900;letter-spacing:.08em}.tool-toggle.active{color:#02120a;background:linear-gradient(135deg,#0f8,#0af);border-color:#00ff88b3;box-shadow:0 0 18px #00ff8840}.tool-toggle.disabled{cursor:not-allowed;color:#ffd166;background:#ffd16614;border-color:#ffd16629}body.flow-mode-active .chart-area{filter:saturate(1.05) contrast(1.06)}body.flow-mode-active #flow-mode-btn,body.flow-mode-active #tools-panel-btn{background:linear-gradient(135deg,#008cff,#0f8);color:#fff;box-shadow:0 0 14px #00aeff73,0 0 24px #00ff8838}body.flow-mode-active .orderbook__header{box-shadow:inset 0 -1px #00ff8838}@media(max-width:768px){.tools-panel{top:64px;right:10px;left:10px;width:auto}.splash-logo{width:76px;height:76px;font-size:25px}.splash-title{font-size:21px}}body.pure-heatmap-active .chart-area{background:radial-gradient(circle at center,rgba(0,255,136,.035),transparent 42%),#05070d}body.pure-heatmap-active .volume-bubbles-canvas{z-index:12}body.pure-heatmap-active #flow-mode-btn{background:linear-gradient(135deg,#0f8,#008cff);color:#00110a;box-shadow:0 0 16px #00ff8873,0 0 32px #008cff33}.tools-panel,.tools-panel *{pointer-events:auto}.tool-toggle{cursor:pointer;position:relative;z-index:5;-webkit-user-select:none;user-select:none}.tool-toggle.disabled{pointer-events:none}.splash-logo-image{background:#ffffff0a;border:1px solid rgba(0,174,255,.22);overflow:hidden;padding:10px}.splash-logo-image img{width:100%;height:100%;object-fit:contain;display:block;filter:drop-shadow(0 0 18px rgba(0,174,255,.35))}.header__logo-img{width:28px;height:28px;object-fit:contain;border-radius:8px;filter:drop-shadow(0 0 10px rgba(0,174,255,.28))}.home-logo-mark{width:42px;height:42px;border-radius:12px;overflow:hidden;background:#ffffff0a;border:1px solid rgba(0,174,255,.25);display:flex;align-items:center;justify-content:center}.home-logo-mark img{width:100%;height:100%;object-fit:contain;padding:2px;display:block}.home-nav{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;width:100%;padding:18px 28px}.home-brand{justify-self:start;display:flex;align-items:center;gap:10px}.home-menu{justify-self:center;display:flex;align-items:center;gap:28px}.home-nav{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;width:100%;padding:18px 28px;gap:24px}.home-brand{justify-self:start;display:flex;align-items:center;gap:10px;min-width:0}.home-brand-name{color:#fff;font-size:14px;font-weight:900;letter-spacing:.08em;white-space:nowrap}.home-menu{justify-self:center;display:flex;align-items:center;justify-content:center;gap:28px}.home-menu span{cursor:pointer;color:#ffffffad;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;transition:.18s ease}.home-menu span:hover{color:#fff}.home-actions{justify-self:end;display:flex;align-items:center;gap:12px}.home-logo-mark{width:38px;height:38px;border-radius:12px;overflow:hidden;display:flex;align-items:center;justify-content:center;background:#ffffff0a;border:1px solid rgba(0,174,255,.22);box-shadow:0 0 16px #00aeff38}.home-logo-mark img{width:100%;height:100%;object-fit:contain;padding:4px;display:block}@media(max-width:900px){.home-nav{grid-template-columns:auto 1fr}.home-menu{display:none}.home-actions{justify-self:end}.home-brand-name{font-size:12px}}.home-terminal-preview{position:relative;min-height:350px;border-radius:26px;padding:18px;background:radial-gradient(circle at 70% 22%,rgba(0,255,170,.16),transparent 28%),radial-gradient(circle at 58% 68%,rgba(255,54,94,.1),transparent 26%),linear-gradient(180deg,#0a192feb,#020617f0);border:1px solid rgba(0,174,255,.2);box-shadow:0 0 45px #00aeff1f,0 24px 90px #00000073;overflow:hidden}.home-terminal-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}.home-terminal-dots{display:flex;gap:7px}.home-terminal-dots span{width:8px;height:8px;border-radius:999px;background:#ffffff29}.home-terminal-title{color:#0f9;font-size:11px;font-weight:900;letter-spacing:.14em}.home-mini-chart{position:relative;height:210px;border-radius:18px;overflow:hidden;background:linear-gradient(rgba(0,174,255,.065) 1px,transparent 1px),linear-gradient(90deg,rgba(0,174,255,.065) 1px,transparent 1px),#000a189e;background-size:28px 28px;border:1px solid rgba(255,255,255,.06)}.home-mini-heatmap span{position:absolute;left:0;right:0;height:18px;opacity:.65;filter:blur(.2px)}.home-mini-heatmap .hm-green{background:linear-gradient(90deg,transparent,rgba(0,255,136,.28),transparent)}.home-mini-heatmap .hm-red{background:linear-gradient(90deg,transparent,rgba(255,54,94,.28),transparent)}.hm-1{bottom:42px}.hm-2{bottom:74px}.hm-3{top:42px}.hm-4{top:82px}.home-mini-candles{position:absolute;inset:18px 20px 26px;z-index:3}.home-mini-candle{position:absolute;bottom:0;width:7px;border-radius:3px;transform:translate(-50%)}.home-mini-candle i{position:absolute;left:50%;bottom:-5px;width:1px;transform:translate(-50%);opacity:.75}.home-mini-candle.up{background:#0f8;box-shadow:0 0 14px #00ff886b}.home-mini-candle.up i{background:#00ff88bf}.home-mini-candle.down{background:#ff365e;box-shadow:0 0 14px #ff365e6b}.home-mini-candle.down i{background:#ff365ebf}.home-mini-label{position:absolute;right:14px;top:12px;z-index:6;padding:7px 10px;border-radius:999px;color:#fff;background:#00000059;border:1px solid rgba(0,174,255,.22);font-size:11px;font-weight:900;letter-spacing:.08em}.home-market-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:14px}.home-market-tab{cursor:pointer;text-align:left;padding:13px 14px;border-radius:14px;background:#ffffff0b;border:1px solid rgba(255,255,255,.075);transition:.18s ease}.home-market-tab strong{display:block;color:#fff;font-size:13px}.home-market-tab span{display:block;margin-top:4px;color:#0f8;font-size:11px;font-weight:800}.home-market-tab:hover,.home-market-tab.active{transform:translateY(-2px);border-color:#00ff8873;box-shadow:0 0 24px #00ff8821;background:#00ff8813}.home-mini-chart{position:relative}.home-mini-candles{position:absolute;inset:18px 20px 26px;z-index:10;pointer-events:none}.home-mini-candle{position:absolute;bottom:0;width:7px;min-height:18px;border-radius:3px;transform:translate(-50%);z-index:12}.home-mini-candle i{position:absolute;left:50%;bottom:-6px;width:1px;transform:translate(-50%);opacity:.85}.home-mini-candle.up{background:#0f8;box-shadow:0 0 16px #00ff88a6}.home-mini-candle.up i{background:#00ff88e6}.home-mini-candle.down{background:#ff365e;box-shadow:0 0 16px #ff365ea6}.home-mini-candle.down i{background:#ff365ee6}.home-mini-heatmap{position:absolute;inset:0;z-index:2}.home-mini-label{z-index:20}.home-market-tab{cursor:pointer;border:none}.splash-screen.hidden,.preload-fallback.hidden{opacity:0;visibility:hidden;pointer-events:none}.tools-panel{position:fixed;top:62px;right:18px;width:360px;max-width:calc(100vw - 36px);max-height:calc(100vh - 90px);z-index:250;background:#0e1220f5;border:1px solid rgba(0,174,255,.18);border-radius:18px;box-shadow:0 24px 70px #00000073;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);transform:translateY(-12px) scale(.96);opacity:0;visibility:hidden;pointer-events:none;transition:.22s ease;overflow:hidden}.tools-panel.open{transform:translateY(0) scale(1);opacity:1;visibility:visible;pointer-events:auto}.tools-panel__header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px;border-bottom:1px solid rgba(255,255,255,.08)}.tools-panel__header strong{display:block;font-size:14px;color:#fff}.tools-panel__header span{display:block;margin-top:4px;font-size:11px;color:#ffffff73}.tools-panel__close{width:32px;height:32px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:#ffffff0f;color:#fff;cursor:pointer}.tools-panel__body{padding:12px;overflow-y:auto;max-height:calc(100vh - 160px)}.tool-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px;border-radius:14px;background:#ffffff0b;border:1px solid rgba(255,255,255,.06);margin-bottom:10px}.tool-row strong{display:block;font-size:13px;color:#fff}.tool-row span{display:block;margin-top:4px;font-size:11px;color:#ffffff73}.tool-toggle{min-width:54px;height:30px;border:none;border-radius:999px;background:#ff365e2e;color:#ff365e;font-size:11px;font-weight:900;cursor:pointer}.tool-toggle.active{background:#00ff882e;color:#0f8;box-shadow:0 0 16px #00ff8829}.tool-toggle.disabled{cursor:not-allowed;opacity:.55}.tool-row--disabled{opacity:.55}body.pure-heatmap-mode .chart-area>div:not(.loading){opacity:.25}body.pure-heatmap-mode .heatmap-canvas,body.pure-heatmap-mode .volume-bubbles-canvas{opacity:1!important}#gp-auth-widget{position:fixed;top:88px;right:14px;z-index:10050;pointer-events:none}.gp-auth-card{pointer-events:auto;display:flex;align-items:center;gap:10px;padding:10px 12px;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:#0a0a16d1;-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);box-shadow:0 14px 36px #00000059;color:#fff;min-width:220px;max-width:260px}.gp-auth-actions{display:flex;align-items:center;gap:8px;flex:0 0 auto}.gp-auth-profile-btn{background:linear-gradient(135deg,#00d5ff,#00f5a0)!important;color:#06111a!important;box-shadow:0 0 18px #00f5a040!important}.gp-auth-logout-btn{background:linear-gradient(135deg,#5d5cff,#1d8bff)!important}body.gp-terminal-active #gp-auth-widget{top:115px;right:310px}body.gp-terminal-active .gp-auth-card{min-width:0;max-width:none;padding:8px 10px;border-radius:12px;background:#080c19e0}body.gp-terminal-active .gp-auth-text span{display:none}body.gp-terminal-active .gp-auth-profile-btn{padding:8px 10px}@media(max-width:1180px){body.gp-terminal-active #gp-auth-widget{top:165px;right:12px}}.gp-auth-card.is-full{border-color:#00ff8873;box-shadow:0 14px 38px #00ff881f,0 14px 36px #00000059}.gp-auth-dot{width:10px;height:10px;border-radius:50%;background:#ff3b5f;box-shadow:0 0 14px #ff3b5fcc;flex:0 0 auto}.gp-auth-card.is-full .gp-auth-dot{background:#0f8;box-shadow:0 0 14px #00ff88d9}.gp-auth-text{min-width:0;flex:1;display:flex;flex-direction:column;line-height:1.1}.gp-auth-text strong{font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.gp-auth-text span{margin-top:4px;font-size:11px;color:#ffffff9e}.gp-auth-btn,.gp-access-primary,.gp-access-secondary{border:0;border-radius:10px;padding:9px 12px;cursor:pointer;font-weight:700}.gp-auth-btn,.gp-access-primary{color:#fff;background:linear-gradient(135deg,#6d35ff,#00b7ff);box-shadow:0 0 18px #6d35ff59}#gp-access-dialog{position:fixed;inset:0;z-index:260000!important;display:grid;place-items:center;background:#000000b8;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}.gp-access-modal{position:relative;width:min(440px,calc(100vw - 34px));border:1px solid rgba(255,255,255,.16);border-radius:22px;padding:28px;color:#fff;background:linear-gradient(145deg,#121222fa,#080812fa);box-shadow:0 30px 90px #0000008c;text-align:center}.gp-access-close{position:absolute;top:12px;right:14px;width:34px;height:34px;border:0;border-radius:50%;color:#fff;background:#ffffff14;font-size:24px;cursor:pointer}.gp-access-icon{width:62px;height:62px;margin:0 auto 14px;display:grid;place-items:center;border-radius:18px;background:#6d35ff29;font-size:30px}.gp-access-modal h2{margin:0 0 10px;font-size:24px}.gp-access-modal p{margin:0;color:#ffffffb8;line-height:1.55}.gp-access-actions{display:flex;justify-content:center;gap:10px;margin-top:22px}.gp-access-secondary{color:#fff;background:#ffffff1a}@media(max-width:720px){#gp-auth-widget{top:78px;right:10px;left:10px}.gp-auth-card{min-width:0;width:100%}}.gp-profile-avatar{width:34px;height:34px;border-radius:12px;border:1px solid rgba(0,255,170,.35);background:linear-gradient(135deg,#00aaff2e,#00ffaa29);color:#fff;font-weight:900;cursor:pointer;box-shadow:0 0 18px #00ffaa29}.gp-auth-card.is-free{border-color:#00aaff59}.gp-auth-dot.is-guest{background:#f36;box-shadow:0 0 12px #ff33668c}.gp-profile-modal{text-align:left;min-width:min(520px,86vw)}.gp-profile-head{display:flex;align-items:center;gap:14px;margin:8px 0 18px}.gp-profile-head strong,.gp-profile-head span{display:block}.gp-profile-head span,.gp-profile-grid span,.gp-profile-note{color:#ffffff9e;font-size:12px}.gp-profile-big-avatar{width:62px;height:62px;border-radius:20px;display:grid;place-items:center;font-size:26px;font-weight:900;background:linear-gradient(135deg,#0af,#0fa);color:#071019;box-shadow:0 0 28px #00ffaa40}.gp-profile-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-bottom:18px}.gp-profile-grid>div{padding:12px;border:1px solid rgba(255,255,255,.08);border-radius:14px;background:#ffffff0a;overflow:hidden}.gp-profile-grid strong{display:block;margin-top:5px;font-size:13px;word-break:break-word}.gp-profile-section{padding:14px;border-radius:16px;border:1px solid rgba(0,170,255,.18);background:#00aaff0d}.gp-tool-list{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.gp-tool-list span{padding:7px 10px;border-radius:999px;font-size:12px;font-weight:800}.gp-tool-list .ok{color:#06150f;background:linear-gradient(135deg,#0fa,#0af)}.gp-tool-list .locked{color:#ffffff8c;background:#ffffff12;border:1px solid rgba(255,255,255,.08)}.gp-profile-note{margin:14px 0 0;line-height:1.5}@media(max-width:640px){.gp-profile-grid{grid-template-columns:1fr}}body.gp-terminal-active .gp-auth-card{top:10px;right:320px;min-width:230px;height:48px;padding:8px 12px;z-index:80}body.gp-terminal-active .gp-auth-card .gp-auth-avatar{width:32px;height:32px;border-radius:10px}body.gp-terminal-active .gp-auth-card .gp-auth-info strong{font-size:12px}body.gp-terminal-active .gp-auth-card .gp-auth-info span{font-size:10px}body.gp-terminal-active .gp-auth-card .gp-auth-btn{height:34px;padding:0 12px}.gp-profile-dashboard{width:min(1120px,92vw);max-height:82vh;display:grid;grid-template-columns:260px minmax(0,1fr);overflow:hidden;border-radius:28px;background:linear-gradient(135deg,#101326fa,#04121efa);border:1px solid rgba(0,221,255,.22);box-shadow:0 30px 90px #0000008c,0 0 70px #00e5ff1a}.gp-profile-sidebar{padding:26px 22px;background:linear-gradient(180deg,#394a8585,#0f1937d1);border-right:1px solid rgba(255,255,255,.08);display:flex;flex-direction:column;gap:12px}.gp-profile-logo{display:flex;align-items:center;gap:12px;margin-bottom:20px}.gp-profile-logo strong{display:block;font-size:14px;letter-spacing:.08em}.gp-profile-logo span{color:#ffffff8c;font-size:12px}.gp-profile-big-avatar{width:54px;height:54px;border-radius:18px;display:grid;place-items:center;color:#00131a;font-weight:900;font-size:24px;background:linear-gradient(135deg,#00d9ff,#00ffb3);box-shadow:0 0 26px #00eeff47}.gp-side-link{border:0;color:#ffffffb8;text-align:left;padding:14px 16px;border-radius:14px;background:transparent;cursor:pointer;font-weight:800}.gp-side-link:hover,.gp-side-link.active{color:#fff;background:#00dcff24;box-shadow:inset 3px 0 #18e7ff}.gp-plan-mini{margin-top:auto;border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:18px;background:#ffffff0f}.gp-plan-mini span,.gp-plan-mini small{display:block;color:#ffffff8f}.gp-plan-mini strong{display:block;margin:8px 0 4px;font-size:28px;text-transform:uppercase;color:#18e7ff}.gp-profile-content{padding:30px;overflow:auto}.gp-profile-hero-card{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:24px;border-radius:24px;background:linear-gradient(135deg,#ffffff1a,#00ddff0f);border:1px solid rgba(255,255,255,.1)}.gp-profile-head h2{margin:0;font-size:26px;word-break:break-word}.gp-profile-head p{margin:6px 0 0;color:#ffffff9e;font-weight:700}.gp-profile-big-avatar--hero{width:72px;height:72px;border-radius:24px;font-size:32px}.gp-profile-actions-row{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}.gp-soft-action,.gp-main-action{border:0;border-radius:13px;padding:12px 16px;font-weight:900;cursor:pointer}.gp-soft-action{color:#fff;background:#ffffff1a;border:1px solid rgba(255,255,255,.12)}.gp-main-action{color:#00141a;background:linear-gradient(135deg,#14c8ff,#00f0a8)}.gp-profile-stats-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin:18px 0}.gp-profile-stats-row div,.gp-panel-card{border:1px solid rgba(255,255,255,.1);background:#ffffff0e;border-radius:18px;padding:18px}.gp-profile-stats-row span{display:block;color:#ffffff8a;font-size:12px;text-transform:uppercase;letter-spacing:.08em}.gp-profile-stats-row strong{display:block;margin-top:8px;font-size:18px;word-break:break-word}.gp-panel-head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}.gp-panel-card h3{margin:0 0 10px}.gp-panel-card p{margin:4px 0 0;color:#ffffff8c}.gp-status-badge{border-radius:999px;padding:8px 12px;background:#ffbc4026;color:#ffd66b;font-weight:900}.gp-status-badge.is-full{background:#00ffae24;color:#00ffb3}.gp-tool-list--dash{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}.gp-tool-list--dash span{padding:10px 12px;border-radius:999px;font-weight:900;font-size:12px}.gp-tool-list--dash span.ok{background:linear-gradient(135deg,#00d9ff,#00ffb3);color:#00131a}.gp-tool-list--dash span.locked{color:#ffffff6b;background:#ffffff0f;border:1px solid rgba(255,255,255,.08)}.gp-info-list{display:grid;gap:10px}.gp-info-list div{display:grid;gap:4px}.gp-info-list span{color:#ffffff85;font-size:12px}.gp-info-list strong{word-break:break-word}.gp-profile-note{color:#ffffff8a;font-size:13px;line-height:1.5}@media(max-width:900px){body.gp-terminal-active .gp-auth-card{top:58px;right:12px}.gp-profile-dashboard{grid-template-columns:1fr}.gp-profile-sidebar{display:none}.gp-profile-stats-row{grid-template-columns:1fr 1fr}.gp-profile-panels{grid-template-columns:1fr}}.gp-profile-overlay{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;padding:24px;background:#010510ad;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.gp-profile-dashboard{position:relative;width:min(1120px,calc(100vw - 42px));max-height:min(860px,calc(100vh - 46px));display:grid;grid-template-columns:260px 1fr;overflow:hidden;border:1px solid rgba(0,224,255,.32);border-radius:24px;background:linear-gradient(135deg,#141d40f5,#04101dfa 42%,#04212bf5);box-shadow:0 28px 90px #000000a6,0 0 45px #00e0ff24;color:#fff}.gp-profile-close{position:absolute;top:14px;right:14px;width:34px;height:34px;border:0;border-radius:50%;background:#ffffff1f;color:#fff;font-size:22px;cursor:pointer;z-index:3}.gp-profile-sidebar{padding:26px 22px;background:linear-gradient(180deg,#30478cb8,#14214aeb);border-right:1px solid rgba(0,224,255,.14);display:flex;flex-direction:column;gap:12px}.gp-profile-logo{display:flex;align-items:center;gap:12px;margin-bottom:22px}.gp-profile-logo strong{display:block;letter-spacing:.06em}.gp-profile-logo span{display:block;color:#ffffffa6;font-size:13px;margin-top:3px}.gp-profile-big-avatar{width:56px;height:56px;border-radius:18px;display:grid;place-items:center;overflow:hidden;background:linear-gradient(135deg,#04d9ff,#00f0a8);color:#02111e;font-weight:900;font-size:28px;flex:0 0 auto}.gp-profile-big-avatar--hero{width:72px;height:72px;border-radius:22px;font-size:34px}.gp-avatar-img{width:100%;height:100%;object-fit:cover;display:block}.gp-side-link{width:100%;border:0;background:transparent;color:#ffffffbd;font-weight:800;text-align:left;padding:15px 16px;border-radius:14px;cursor:pointer;transition:.18s ease}.gp-side-link:hover,.gp-side-link.active{color:#fff;background:#00e0ff26;box-shadow:inset 4px 0 #05e7ff}.gp-plan-mini{margin-top:auto;border:1px solid rgba(255,255,255,.14);border-radius:18px;padding:18px;text-align:center;background:#ffffff0f}.gp-plan-mini span,.gp-plan-mini small{display:block;color:#ffffffa6}.gp-plan-mini strong{display:block;margin:10px 0 4px;color:#19e8ff;font-size:30px}.gp-profile-content{padding:30px;overflow-y:auto}.gp-tab-panel.active{display:block}.gp-tab-panel h2{margin:0 0 14px;font-size:28px}.gp-profile-hero-card,.gp-panel-card,.gp-profile-stats-row>div{border:1px solid rgba(255,255,255,.1);border-radius:18px;background:#ffffff0e;box-shadow:inset 0 1px #ffffff0d}.gp-profile-hero-card{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:28px;margin-bottom:18px;background:linear-gradient(135deg,#ffffff17,#00e0ff12)}.gp-profile-head{display:flex;align-items:center;gap:16px;min-width:0}.gp-profile-head h2{margin:0;font-size:30px;word-break:break-word}.gp-profile-head p{margin:4px 0 0;color:#ffffffad;font-weight:700}.gp-profile-actions-row{display:flex;gap:10px;align-items:center;flex-wrap:wrap}.gp-main-action,.gp-soft-action{border:0;border-radius:12px;padding:13px 18px;font-weight:900;cursor:pointer}.gp-main-action{background:linear-gradient(135deg,#00d5ff,#00f0a8);color:#02111e}.gp-soft-action{background:#ffffff1a;color:#fff;border:1px solid rgba(255,255,255,.16)}.gp-profile-stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:18px}.gp-profile-stats-row>div{padding:18px;text-align:center}.gp-profile-stats-row span{display:block;color:#ffffff85;text-transform:uppercase;letter-spacing:.08em;font-size:12px;font-weight:800}.gp-profile-stats-row strong{display:block;margin-top:10px;font-size:20px}.gp-profile-panels{display:grid;grid-template-columns:1fr 1fr;gap:14px}.gp-panel-card{padding:22px}.gp-panel-card--wide{grid-column:1 / -1}.gp-panel-card h3{margin:0 0 14px;font-size:18px}.gp-panel-head{display:flex;justify-content:space-between;gap:16px;align-items:start}.gp-panel-head p,.gp-profile-note{margin:6px 0 0;color:#ffffff9e;line-height:1.45}.gp-status-badge{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:10px 14px;font-weight:900;font-size:13px}.gp-status-badge.is-full{background:#00f0a82e;color:#00f0a8}.gp-tool-list{display:flex;gap:10px;flex-wrap:wrap}.gp-tool-list span,.gp-tool-list span.ok{background:linear-gradient(135deg,#00e0ff,#00f0a8)!important;color:#02111e!important;border:0!important;border-radius:999px;padding:10px 13px;font-size:13px;font-weight:900;box-shadow:0 0 18px #00f0a82e}.gp-tool-list span.locked{background:#ffffff17!important;color:#ffffff85!important;border:1px solid rgba(255,255,255,.12)!important;box-shadow:none}.gp-active-tools-card{border-color:#00f0a847;background:#00f0a80e}.gp-info-list{display:grid;gap:13px}.gp-info-list span{display:block;color:#ffffff85;font-size:12px}.gp-info-list strong{display:block;margin-top:4px;word-break:break-word}.gp-form-card{max-width:560px}.gp-form-card label{display:block;margin:14px 0 7px;color:#ffffffb8;font-weight:800}.gp-profile-input{width:100%;border-radius:12px;border:1px solid rgba(255,255,255,.14);background:#00000038;color:#fff;padding:14px;outline:none}.gp-profile-input:focus{border-color:#00e0ffb3;box-shadow:0 0 0 4px #00e0ff1a}@media(max-width:860px){.gp-profile-dashboard{grid-template-columns:1fr}.gp-profile-sidebar{flex-direction:row;overflow-x:auto;align-items:center;padding:16px}.gp-profile-logo,.gp-plan-mini{display:none}.gp-side-link{white-space:nowrap;width:auto}.gp-profile-content{padding:18px}.gp-profile-hero-card{align-items:flex-start;flex-direction:column}.gp-profile-stats-row,.gp-profile-panels{grid-template-columns:1fr}}.gp-profile-avatar{overflow:hidden;padding:0!important;display:grid;place-items:center}.gp-profile-avatar .gp-avatar-img,.gp-profile-avatar img{width:100%;height:100%;object-fit:cover}.gp-profile-avatar span{display:grid;place-items:center;width:100%;height:100%}@media(max-width:720px){.gp-auth-actions{width:100%;justify-content:flex-end}.gp-auth-profile-btn,.gp-auth-logout-btn{padding:9px 10px;font-size:12px}body.gp-terminal-active #gp-auth-widget{top:90px;right:10px;left:10px}}#gp-auth-widget{cursor:grab;-webkit-user-select:none;user-select:none}#gp-auth-widget.gp-dragging{cursor:grabbing;z-index:99999}body.gp-terminal-active #gp-auth-widget:not(.gp-user-moved){position:fixed;top:126px;right:420px;left:auto;z-index:90}body.gp-terminal-active #gp-auth-widget:not(.gp-user-moved) .gp-auth-card{min-width:270px;max-width:292px}.gp-auth-card{border-color:#23ff7e80;box-shadow:0 12px 34px #00ffa021,inset 0 0 0 1px #ffffff08}.gp-profile-tools .gp-tool-chip,.gp-tool-chip{background:linear-gradient(135deg,#18ff8b,#00d47f);color:#04120c;box-shadow:0 0 16px #18ff8b38}.gp-profile-tools .gp-tool-chip:hover,.gp-tool-chip:hover{transform:translateY(-1px);box-shadow:0 0 22px #18ff8b57}.gp-profile-header-actions .gp-secondary-btn,.gp-profile-header-actions .gp-primary-btn{white-space:nowrap}.gp-profile-card-main{overflow:hidden}@media(max-width:1300px){body.gp-terminal-active #gp-auth-widget:not(.gp-user-moved){right:315px;top:126px}}@media(max-width:980px){body.gp-terminal-active #gp-auth-widget:not(.gp-user-moved),#gp-auth-widget.gp-user-moved{top:88px!important;right:14px!important;left:auto!important}}#gp-auth-widget{position:fixed!important;z-index:9000!important;inset:118px 28px auto auto!important;transform:none!important;pointer-events:auto!important}body.gp-terminal-active #gp-auth-widget{top:12px!important;right:410px!important}.gp-auth-card.gp-fixed-header,.gp-auth-card{display:flex!important;align-items:center!important;gap:12px!important;min-width:292px!important;max-width:344px!important;height:48px!important;padding:7px 10px!important;border:1px solid rgba(0,244,212,.55)!important;border-radius:13px!important;background:#091420eb!important;box-shadow:0 10px 28px #00000052,0 0 18px #00f4d41f!important;-webkit-backdrop-filter:blur(14px)!important;backdrop-filter:blur(14px)!important;overflow:hidden!important;cursor:default!important;-webkit-user-select:none!important;user-select:none!important}.gp-auth-avatar{width:34px!important;height:34px!important;min-width:34px!important;border-radius:12px!important;display:grid!important;place-items:center!important;overflow:hidden!important;background:linear-gradient(135deg,#16d9ff,#00e0b8)!important;color:#041017!important;font-weight:900!important;font-size:16px!important}.gp-auth-avatar img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}.gp-auth-meta{min-width:0!important;flex:1 1 auto!important}.gp-auth-email{color:#fff!important;font-size:12px!important;line-height:1.05!important;font-weight:900!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;max-width:118px!important}.gp-auth-status{color:#ffffffbd!important;font-size:10px!important;line-height:1.1!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}.gp-auth-card .gp-profile-btn,.gp-auth-card .gp-logout-btn{height:34px!important;min-width:74px!important;padding:0 13px!important;border:none!important;border-radius:11px!important;font-size:12px!important;font-weight:900!important;cursor:pointer!important;white-space:nowrap!important}.gp-auth-card .gp-profile-btn{background:linear-gradient(135deg,#18e9ff,#00e0b8)!important;color:#041017!important}.gp-auth-card .gp-logout-btn{background:linear-gradient(135deg,#2f6bff,#6255ff)!important;color:#fff!important}.gp-auth-card .gp-profile-btn:hover,.gp-auth-card .gp-logout-btn:hover{filter:brightness(1.08)!important;transform:translateY(-1px)!important}@media(max-width:1100px){#gp-auth-widget,body.gp-terminal-active #gp-auth-widget{top:86px!important;right:14px!important}.gp-auth-card.gp-fixed-header,.gp-auth-card{min-width:252px!important;max-width:calc(100vw - 28px)!important}.gp-auth-email{max-width:92px!important}.gp-auth-card .gp-profile-btn{display:none!important}}@media(max-width:680px){#gp-auth-widget,body.gp-terminal-active #gp-auth-widget{top:74px!important;right:10px!important}.gp-auth-card.gp-fixed-header,.gp-auth-card{min-width:208px!important;height:44px!important;padding:6px 8px!important}.gp-auth-status{display:none!important}.gp-auth-card .gp-logout-btn{min-width:64px!important;height:31px!important;padding:0 10px!important}}.gp-tool-chip,.gp-active-tools .gp-tool-chip,.gp-tools-card .gp-tool-chip{background:linear-gradient(135deg,#00ff8a,#00e0b8)!important;color:#03130f!important;border:1px solid rgba(0,255,138,.65)!important;box-shadow:0 0 18px #00ff8a29!important}html,body,#app{width:100%;min-width:0}@supports (height: 100dvh){html,body,#app{height:100dvh}}.home-page{overflow-x:hidden!important;-webkit-overflow-scrolling:touch}.home-page *{max-width:100%}@media(max-width:760px){.home-nav{height:auto!important;min-height:62px!important;padding:10px 12px!important;display:flex!important;gap:10px!important;justify-content:space-between!important}.home-brand{min-width:0!important;gap:8px!important}.home-brand-logo,.home-logo-mark{width:34px!important;height:34px!important;border-radius:10px!important;flex:0 0 auto!important}.home-brand span,.home-brand-name{display:block!important;max-width:150px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;font-size:12px!important;letter-spacing:.05em!important}.home-actions{gap:7px!important;flex:0 0 auto!important}.home-actions .home-btn{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:36px!important;padding:8px 11px!important;font-size:11px!important;white-space:nowrap!important}.home-actions .home-login-btn,.home-actions #home-login-btn,.home-actions #home-visit-profile-btn,.home-actions #home-logout-btn{display:none!important}.home-hero{display:block!important;padding:42px 18px 26px!important}.home-title{margin-top:18px!important;font-size:clamp(34px,11vw,48px)!important;line-height:1.02!important;letter-spacing:-.045em!important}.home-subtitle{margin-top:18px!important;font-size:14px!important;line-height:1.65!important}.home-hero-actions{margin-top:26px!important;gap:10px!important}.home-hero-actions .home-btn{flex:1 1 145px!important;padding:11px 12px!important;font-size:11px!important;text-align:center!important}.home-stats{grid-template-columns:1fr!important;gap:10px!important}.home-terminal-preview{margin-top:28px!important;min-height:0!important;padding:12px!important;border-radius:22px!important}.preview-body,.preview-body-clean{padding:10px!important}.home-mini-chart,.preview-chart{height:220px!important}.home-section{padding-left:18px!important;padding-right:18px!important}}@media(max-width:420px){.home-brand span,.home-brand-name{max-width:118px!important}.home-actions .home-btn{padding-left:10px!important;padding-right:10px!important}}@media(max-width:768px){body.terminal-active,body.gp-terminal-active{overflow:hidden!important}.header{height:44px!important;min-height:44px!important;padding:0 7px!important;gap:6px!important;overflow:visible!important}.header__logo-img{width:24px!important;height:24px!important;border-radius:7px!important}.header__logo span{display:none!important}#exchange-selector .selector__trigger,#symbol-selector .selector__trigger{min-height:30px!important;height:30px!important;padding:4px 7px!important;gap:5px!important}#exchange-selector .selector__label,#symbol-selector .selector__label{font-size:11px!important;line-height:1!important;max-width:78px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}#symbol-selector .selector__label{max-width:86px!important}.selector__dropdown{position:fixed!important;top:48px!important;left:8px!important;right:8px!important;width:auto!important;min-width:0!important;max-height:58dvh!important;z-index:10000!important}.header__timeframe{display:block!important;height:30px!important;min-width:54px!important;margin-left:auto!important;padding:4px 6px!important;font-size:11px!important}.timeframes{display:none!important}.main{height:calc(100dvh - 108px)!important;min-height:0!important;overflow:hidden!important}.chart-container{height:100%!important;min-height:0!important;padding-bottom:0!important;overflow:hidden!important}.chart-area{flex:1 1 auto!important;min-height:0!important;height:auto!important;overflow:hidden!important}.chart-area canvas,.chart-area table,.chart-area>div{max-width:100%!important}.cvd-container{height:50px!important;min-height:50px!important;max-height:50px!important;flex:0 0 50px!important}.analytics{min-height:72px!important;max-height:72px!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;padding:6px!important;gap:5px!important;flex:0 0 72px!important;overflow:hidden!important}.metric{min-width:0!important;padding:5px 6px!important}.metric__label{font-size:8px!important}.metric__value{font-size:11px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.bottom-nav{height:calc(58px + env(safe-area-inset-bottom))!important;padding-bottom:env(safe-area-inset-bottom)!important;z-index:8500!important}.bottom-nav__btn{flex:1 1 20%!important;min-width:0!important;padding:6px 2px!important}.bottom-nav__icon{font-size:18px!important}.bottom-nav__label{font-size:9px!important}.toast-container{left:10px!important;right:10px!important;bottom:calc(72px + env(safe-area-inset-bottom))!important}.toast{width:100%!important;font-size:12px!important;padding:10px 12px!important}}@media(max-width:768px){body:not(.terminal-active) #gp-auth-widget{display:none!important}body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget{top:50px!important;right:8px!important;left:auto!important;width:auto!important;z-index:8700!important;transform:none!important}body.terminal-active .gp-auth-card,body.gp-terminal-active .gp-auth-card{width:auto!important;min-width:0!important;max-width:none!important;height:36px!important;padding:4px!important;gap:5px!important;border-radius:12px!important;background:#040d188f!important;border-color:#00f4d459!important;box-shadow:0 0 16px #00f4d41a!important;-webkit-backdrop-filter:blur(10px)!important;backdrop-filter:blur(10px)!important}body.terminal-active .gp-profile-avatar,body.terminal-active .gp-auth-text,body.gp-terminal-active .gp-profile-avatar,body.gp-terminal-active .gp-auth-text{display:none!important}body.terminal-active .gp-auth-actions,body.gp-terminal-active .gp-auth-actions{display:flex!important;width:auto!important;gap:5px!important}body.terminal-active .gp-auth-profile-btn,body.terminal-active .gp-auth-logout-btn,body.gp-terminal-active .gp-auth-profile-btn,body.gp-terminal-active .gp-auth-logout-btn{display:inline-flex!important;align-items:center!important;justify-content:center!important;height:28px!important;min-width:0!important;padding:0 9px!important;border-radius:9px!important;font-size:10px!important;line-height:1!important;white-space:nowrap!important}}@media(max-width:920px)and (orientation:landscape){.home-hero{padding-top:22px!important;grid-template-columns:1fr .9fr!important;gap:20px!important}.home-title{font-size:clamp(30px,5vw,42px)!important}.home-subtitle,.home-stats,.home-section{display:none!important}.home-terminal-preview{margin-top:0!important}.main{height:calc(100dvh - 94px)!important}.header{height:42px!important;min-height:42px!important}.bottom-nav{height:52px!important}.analytics{min-height:54px!important;max-height:54px!important;flex-basis:54px!important;grid-template-columns:repeat(5,minmax(0,1fr))!important}.cvd-container{height:42px!important;min-height:42px!important;max-height:42px!important;flex-basis:42px!important}body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget{top:48px!important}}.tools-account-card{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px;margin-bottom:12px;border-radius:16px;border:1px solid rgba(0,245,212,.24);background:linear-gradient(135deg,#00e0ff1a,#00f5a014);box-shadow:0 0 22px #00e0ff14}.tools-account-info span{display:block;font-size:11px;color:#ffffff85;text-transform:uppercase;letter-spacing:.08em;font-weight:800}.tools-account-info strong{display:block;margin-top:4px;color:#fff;font-size:13px}.tools-account-actions{display:flex;gap:8px;align-items:center;flex-wrap:wrap;justify-content:flex-end}.tools-account-btn{border:0;border-radius:11px;padding:9px 11px;cursor:pointer;font-weight:900;font-size:12px;color:#041018;background:linear-gradient(135deg,#00d5ff,#00f5a0);box-shadow:0 0 14px #00f5a029}.tools-account-btn--logout{color:#fff;background:linear-gradient(135deg,#5d5cff,#1d8bff)}@media(max-width:920px){body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget{display:none!important}}@media(max-width:768px){body.terminal-active .header__controls,body.gp-terminal-active .header__controls{display:flex!important;align-items:center!important;margin-left:0!important;gap:0!important}body.terminal-active .header__controls>*:not(#tools-panel-btn),body.gp-terminal-active .header__controls>*:not(#tools-panel-btn){display:none!important}body.terminal-active #tools-panel-btn,body.gp-terminal-active #tools-panel-btn{display:inline-flex!important;position:fixed!important;right:10px!important;top:calc(env(safe-area-inset-top) + 54px)!important;z-index:9500!important;width:42px!important;height:42px!important;border-radius:15px!important;align-items:center!important;justify-content:center!important;background:linear-gradient(135deg,#00e0fff2,#00f5a0e6)!important;color:#031018!important;box-shadow:0 10px 30px #00e0ff47,0 0 0 1px #ffffff1a inset!important;border:1px solid rgba(255,255,255,.18)!important;font-size:18px!important}body.terminal-active #tools-panel-btn:after,body.gp-terminal-active #tools-panel-btn:after{content:"Tools";position:absolute;right:48px;top:50%;transform:translateY(-50%);padding:6px 9px;border-radius:999px;background:#070d1ac7;color:#ffffffdb;font-size:11px;font-weight:900;white-space:nowrap;border:1px solid rgba(255,255,255,.1);box-shadow:0 8px 24px #00000047}.tools-panel{top:calc(env(safe-area-inset-top) + 8px)!important;right:8px!important;left:8px!important;width:auto!important;max-width:none!important;max-height:calc(100dvh - 84px - env(safe-area-inset-bottom))!important;border-radius:22px!important;z-index:9800!important}.tools-panel__body{max-height:calc(100dvh - 170px - env(safe-area-inset-bottom))!important;padding-bottom:16px!important}.tools-account-card{align-items:flex-start;flex-direction:column}.tools-account-actions,.tools-account-btn{width:100%}.tools-account-btn{flex:1 1 0}}@media(max-width:420px){body.terminal-active #tools-panel-btn:after,body.gp-terminal-active #tools-panel-btn:after{display:none!important}#exchange-selector .selector__label,#symbol-selector .selector__label{max-width:70px!important}.header__timeframe{min-width:50px!important}}.drawing-host{position:relative}.drawing-canvas{position:absolute;inset:0;width:100%;height:100%;z-index:90;pointer-events:none;touch-action:none}.drawing-canvas.active{pointer-events:auto;cursor:crosshair}.drawing-panel{position:absolute;left:14px;top:14px;z-index:100;width:min(420px,calc(100% - 28px));padding:12px;border:1px solid rgba(0,224,255,.24);border-radius:18px;background:#090d1af0;box-shadow:0 20px 60px #0000006b,0 0 22px #00e0ff1a;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);transform:translateY(-10px);opacity:0;visibility:hidden;pointer-events:none;transition:.18s ease}.drawing-panel.open{transform:translateY(0);opacity:1;visibility:visible;pointer-events:auto}.drawing-panel__head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}.drawing-panel__head strong{font-size:14px;letter-spacing:.02em}.drawing-panel__close{width:34px;height:34px;border:0;border-radius:12px;background:#ffffff1a;color:#fff;font-size:18px;font-weight:900}.drawing-panel__buttons{display:flex;flex-wrap:wrap;gap:8px}.drawing-tool{border:1px solid rgba(255,255,255,.12);border-radius:999px;padding:9px 12px;background:#ffffff0f;color:#ffffffd1;font-size:12px;font-weight:900}.drawing-tool.active{background:linear-gradient(135deg,#00d5ff,#00f0a8);color:#02111e;border-color:transparent;box-shadow:0 0 18px #00e0ff42}.drawing-tool--danger{color:#ff6b8a;border-color:#ff365e42}.drawing-panel small{display:block;margin-top:10px;color:#ffffff7a;line-height:1.35}#tools-panel-btn{width:auto!important;min-width:82px!important;padding:0 14px!important;font-size:12px!important;font-weight:900!important;letter-spacing:.08em!important;text-transform:uppercase!important;line-height:1!important}@media(max-width:720px){body.terminal-active #tools-panel-btn,body.gp-terminal-active #tools-panel-btn{width:58px!important;height:58px!important;border-radius:22px!important;font-size:34px!important;background:linear-gradient(135deg,#00d5ff,#00f0a8)!important;color:#02111e!important;box-shadow:0 0 28px #00e0ff61!important}.drawing-panel{position:fixed;top:calc(env(safe-area-inset-top,0px) + 82px);left:10px;right:10px;width:auto;max-height:42dvh;overflow-y:auto;z-index:240}.drawing-tool{padding:10px 12px;font-size:12px}.gp-profile-overlay{align-items:flex-start!important;justify-content:center!important;padding:calc(env(safe-area-inset-top,0px) + 10px) 10px calc(env(safe-area-inset-bottom,0px) + 18px)!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch}.gp-profile-dashboard{width:100%!important;max-width:100%!important;height:auto!important;max-height:none!important;min-height:auto!important;display:block!important;overflow:visible!important;border-radius:20px!important}.gp-profile-sidebar{position:sticky;top:0;z-index:4;display:flex!important;flex-direction:row!important;gap:8px!important;padding:12px 52px 12px 12px!important;overflow-x:auto!important;background:linear-gradient(180deg,#1c3170fa,#122049fa)!important;border-right:0!important;border-bottom:1px solid rgba(0,224,255,.18)!important}.gp-profile-logo,.gp-plan-mini{display:none!important}.gp-side-link{flex:0 0 auto!important;width:auto!important;min-width:max-content!important;padding:12px 14px!important;border-radius:14px!important;font-size:13px!important;text-align:center!important}.gp-profile-close{position:fixed!important;top:calc(env(safe-area-inset-top,0px) + 18px)!important;right:18px!important;width:42px!important;height:42px!important;z-index:100001!important;background:#ffffff2e!important;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.gp-profile-content{padding:16px!important;overflow:visible!important}.gp-profile-hero-card{padding:18px!important;gap:14px!important}.gp-profile-head{width:100%!important;align-items:center!important;gap:12px!important}.gp-profile-head h2{font-size:clamp(24px,9vw,38px)!important;line-height:1.08!important;overflow-wrap:anywhere!important;word-break:break-word!important}.gp-profile-big-avatar--hero{width:72px!important;height:72px!important;border-radius:22px!important}.gp-profile-actions-row{width:100%!important;display:grid!important;grid-template-columns:1fr 1fr!important;gap:10px!important}.gp-main-action,.gp-soft-action{width:100%!important;padding:13px 10px!important;font-size:14px!important}.gp-profile-stats-row,.gp-profile-panels{grid-template-columns:1fr!important}.gp-profile-stats-row>div,.gp-panel-card{padding:18px!important}}@media(max-width:420px){.drawing-panel{top:calc(env(safe-area-inset-top,0px) + 76px);max-height:38dvh}body.terminal-active #tools-panel-btn,body.gp-terminal-active #tools-panel-btn{width:52px!important;height:52px!important;border-radius:20px!important;font-size:30px!important}}.volume-profile-overlay,.footprint-chart-overlay{position:absolute;inset:0;pointer-events:none;z-index:34;opacity:0;visibility:hidden;transition:opacity .18s ease,visibility .18s ease}.volume-profile-overlay.visible,.footprint-chart-overlay.visible{opacity:1;visibility:visible}.volume-profile-card{position:absolute;top:18px;right:48px;bottom:82px;width:min(440px,34vw);padding:10px 0 8px 10px;border-left:1px solid rgba(0,224,255,.18);background:linear-gradient(90deg,#070c1600,#070c1694);filter:drop-shadow(0 0 16px rgba(94,92,255,.22))}.vp-head,.vp-footer{display:flex;align-items:center;justify-content:space-between;gap:8px;padding-right:6px;font-size:11px;color:#ffffffb8;text-shadow:0 1px 2px rgba(0,0,0,.8)}.vp-head strong{color:#fff;font-size:12px;letter-spacing:.02em}.vp-bars{height:calc(100% - 46px);display:flex;flex-direction:column;justify-content:stretch;gap:1px;padding:8px 0}.vp-row{position:relative;flex:1;display:flex;align-items:center;justify-content:flex-end;gap:6px;min-height:5px}.vp-row.value:before{content:"";position:absolute;inset:0 64px 0 0;background:#2e60ff0e;border-radius:2px}.vp-row.poc:after{content:"";position:absolute;left:0;right:62px;top:50%;height:2px;transform:translateY(-50%);background:#ffd60af2;box-shadow:0 0 12px #ffd60a8c}.vp-row.poc .vp-price{color:#ffd60a}.vp-price{order:2;width:58px;text-align:right;font:800 10px/1 JetBrains Mono,monospace;color:#ffffff73;position:relative;z-index:2}.vp-bar-wrap{order:1;height:8px;min-width:8px;max-width:calc(100% - 70px);display:flex;justify-content:flex-end;overflow:hidden;border-radius:2px 0 0 2px;position:relative;z-index:2;box-shadow:0 0 10px #4080ff3d}.vp-bar-buy{background:linear-gradient(90deg,#0099fff2,#4361eee6)}.vp-bar-sell{background:linear-gradient(90deg,#bf43ffd9,#ff56b1c7)}.vp-empty,.fp-empty{padding:22px;text-align:center;color:#ffffff9e;font-weight:800}.chart-area.footprint-mode .volume-profile-overlay,.chart-area.footprint-mode .orderbook-heatmap,.chart-area.footprint-mode .volume-bubbles{opacity:0!important;visibility:hidden!important}.footprint-chart-overlay{z-index:45;pointer-events:none}.footprint-chart-shell{pointer-events:auto;position:absolute;inset:0;display:grid;grid-template-rows:auto 1fr auto;background:linear-gradient(180deg,#080b14f5,#06080ef0),repeating-linear-gradient(0deg,rgba(255,255,255,.04) 0 1px,transparent 1px 38px),repeating-linear-gradient(90deg,rgba(255,255,255,.03) 0 1px,transparent 1px 86px);border-top:1px solid rgba(255,255,255,.06)}.footprint-chart-head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 14px;border-bottom:1px solid rgba(255,255,255,.08);background:#0a0f1cdb}.footprint-chart-head strong{display:block;color:#fff;font-size:14px}.footprint-chart-head span,.footprint-chart-note{color:#ffffff94;font-size:11px}.footprint-chart-head button{width:34px;height:34px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:#ffffff12;color:#fff;cursor:pointer}.footprint-chart-grid{position:relative;display:grid;grid-template-columns:70px 1fr;gap:10px;overflow:hidden;padding:12px 12px 10px}.fp-price-axis{display:grid;grid-template-rows:repeat(29,1fr);align-items:center;justify-items:end;padding-right:6px;border-right:1px solid rgba(255,255,255,.08)}.fp-price-axis span{font:700 10px/1 JetBrains Mono,monospace;color:#ffffff6b}.fp-candles{display:grid;grid-template-columns:repeat(var(--fp-cols),minmax(58px,1fr));gap:8px;min-width:0;align-items:stretch}.fp-candle{display:grid;grid-template-rows:repeat(29,1fr) 18px;min-width:0;gap:1px;position:relative}.fp-candle:before{content:"";position:absolute;top:0;bottom:20px;left:50%;width:1px;transform:translate(-50%);background:#ffffff14}.fp-candle.up:before{background:#00f0a82e}.fp-candle.down:before{background:#ff17442e}.fp-level{min-height:15px;display:grid;grid-template-columns:1fr 1fr;align-items:center;overflow:hidden;border-radius:2px;background:#ffffff06;border:1px solid rgba(255,255,255,.025)}.fp-level.empty{background:transparent;border-color:transparent}.fp-level.buy{background:linear-gradient(90deg,#00be8738,#00be8714)}.fp-level.sell{background:linear-gradient(90deg,#ff174414,#ff17443d)}.fp-level.imbalance{outline:1px solid rgba(255,255,255,.18);box-shadow:inset 0 0 12px #ffffff0f}.fp-candle.up .fp-level.imbalance{box-shadow:inset 0 0 12px #00f0a829}.fp-candle.down .fp-level.imbalance{box-shadow:inset 0 0 12px #ff174429}.fp-num{font:800 9px/1 JetBrains Mono,monospace;color:#ffffffdb;padding:0 3px;white-space:nowrap;overflow:hidden;text-overflow:clip}.fp-num-bid{text-align:right;color:#ffffffd1;border-right:1px solid rgba(255,255,255,.1)}.fp-num-ask{text-align:left;color:#ffffffd1}.fp-candle>b{align-self:end;justify-self:center;font:800 9px/1 JetBrains Mono,monospace;color:#ffffff9e}.footprint-chart-note{padding:8px 12px 10px;border-top:1px solid rgba(255,255,255,.06);background:#0a0f1cc7}@media(max-width:768px){.volume-profile-card{top:64px;right:35px;bottom:180px;width:min(250px,48vw);padding-left:4px}.vp-head,.vp-footer{font-size:9px}.vp-head strong{font-size:10px}.vp-price{width:42px;font-size:8px}.vp-bar-wrap{max-width:calc(100% - 50px);height:7px}.vp-row.value:before{right:48px}.vp-row.poc:after{right:46px}.footprint-chart-shell{inset:0}.footprint-chart-grid{grid-template-columns:52px 1fr;gap:6px;padding:8px 7px 6px;overflow-x:auto}.fp-price-axis{grid-template-rows:repeat(21,1fr)}.fp-price-axis span{font-size:8px}.fp-candles{grid-template-columns:repeat(var(--fp-cols),minmax(54px,1fr));gap:5px}.fp-candle{grid-template-rows:repeat(21,1fr) 16px}.fp-level{min-height:14px}.fp-num{font-size:8px;padding:0 2px}.footprint-chart-note{display:none}}.volume-profile-card{right:clamp(34px,3.8vw,58px)!important;top:clamp(12px,2vh,22px)!important;bottom:clamp(56px,10vh,92px)!important;width:clamp(310px,29vw,470px)!important;max-width:calc(100% - 90px)!important;pointer-events:none!important}.vp-bars{gap:0!important}.vp-row{min-height:9px!important}.vp-bar-wrap{height:clamp(5px,1.1vh,10px)!important;transition:width .12s linear!important}.vp-price{min-width:56px!important;opacity:.72!important}.vp-price--muted{opacity:0!important}.vp-footer{min-height:18px!important}@media(max-width:768px){.volume-profile-card{top:96px!important;right:28px!important;bottom:170px!important;width:min(290px,54vw)!important;max-width:calc(100vw - 76px)!important;padding-left:6px!important;background:linear-gradient(90deg,#070c1600,#070c167a)!important}.vp-bars{padding:6px 0!important}.vp-row{min-height:14px!important}.vp-bar-wrap{height:8px!important}.vp-price{width:48px!important;min-width:48px!important;font-size:8px!important}.vp-footer{align-items:flex-start!important;flex-direction:column!important;gap:2px!important;line-height:1.15!important}.vp-head{flex-direction:column!important;align-items:flex-start!important;gap:2px!important}}@media(max-width:420px){.volume-profile-card{top:102px!important;right:22px!important;bottom:176px!important;width:min(255px,58vw)!important}}@media(max-width:920px)and (orientation:landscape){.volume-profile-card{top:54px!important;right:30px!important;bottom:112px!important;width:min(360px,38vw)!important}}@media(max-width:768px){.sidebar.open{height:calc(100dvh - 58px - env(safe-area-inset-bottom))!important;bottom:calc(58px + env(safe-area-inset-bottom))!important;overflow:hidden!important}.sidebar.open .orderbook__content{min-height:0!important;height:auto!important;flex:1 1 auto!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;padding-bottom:calc(118px + env(safe-area-inset-bottom))!important;scroll-padding-bottom:calc(118px + env(safe-area-inset-bottom))!important}.sidebar.open .orderbook__header,.sidebar.open .orderbook__depth{flex:0 0 auto!important}}.volume-profile-overlay--anchored .volume-profile-card.vp-chart-anchored{position:absolute!important;right:auto!important;bottom:auto!important;max-width:none!important;pointer-events:none!important;overflow:hidden!important;padding:10px 0 22px 10px!important;border-left:1px solid rgba(0,224,255,.22)!important;background:linear-gradient(90deg,#070c1600,#080d1c8f)!important}.volume-profile-overlay--anchored .vp-bars{position:absolute!important;inset:0 0 0 10px!important;display:block!important;padding:0!important;height:auto!important;overflow:hidden!important}.volume-profile-overlay--anchored .vp-head,.volume-profile-overlay--anchored .vp-footer{position:relative!important;z-index:6!important;background:linear-gradient(90deg,#080d1cdb,#080d1c29)!important;border-radius:8px!important;width:calc(100% - 8px)!important}.volume-profile-overlay--anchored .vp-footer{position:absolute!important;left:10px!important;right:6px!important;bottom:5px!important;width:auto!important}.volume-profile-overlay--anchored .vp-row{position:absolute!important;left:0!important;right:0!important;flex:none!important;min-height:2px!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:6px!important}.volume-profile-overlay--anchored .vp-row.value:before{inset:0 66px 0 0!important}.volume-profile-overlay--anchored .vp-row.poc:after{left:0!important;right:64px!important;height:2px!important}.volume-profile-overlay--anchored .vp-bar-wrap{height:min(100%,10px)!important;min-height:3px!important;max-height:10px!important;max-width:calc(100% - 70px)!important}.volume-profile-overlay--anchored .vp-price{min-width:58px!important;width:58px!important;font-size:9px!important}@media(max-width:768px){.volume-profile-overlay--anchored .volume-profile-card.vp-chart-anchored{padding-left:6px!important;padding-bottom:30px!important;background:linear-gradient(90deg,#070c1600,#080d1c80)!important}.volume-profile-overlay--anchored .vp-bars{left:6px!important}.volume-profile-overlay--anchored .vp-row.value:before{right:48px!important}.volume-profile-overlay--anchored .vp-row.poc:after{right:48px!important}.volume-profile-overlay--anchored .vp-bar-wrap{height:min(100%,8px)!important;max-height:8px!important;max-width:calc(100% - 52px)!important}.volume-profile-overlay--anchored .vp-price{width:46px!important;min-width:46px!important;font-size:8px!important}.volume-profile-overlay--anchored .vp-footer{left:6px!important;flex-direction:column!important;align-items:flex-start!important;gap:1px!important;font-size:8px!important}}@media(max-width:768px){.sidebar.open .sidebar-content,.orderbook,#orderbook-content,#levels-summary{padding-bottom:calc(96px + env(safe-area-inset-bottom))!important}}.gp-script-editor-overlay{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;padding:24px;background:#000000b8;-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px)}.gp-script-editor{width:min(1040px,96vw);max-height:min(760px,92vh);overflow:hidden;border:1px solid rgba(0,229,255,.25);border-radius:22px;background:linear-gradient(145deg,#060b16fa,#090e1ef5);box-shadow:0 28px 90px #0000008c,0 0 60px #00e5ff14;color:#eefaff}.gp-script-editor__head{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 22px;border-bottom:1px solid rgba(255,255,255,.08)}.gp-script-editor__head strong{display:block;font-size:18px;letter-spacing:.02em}.gp-script-editor__head span{display:block;margin-top:4px;color:#eefaff9e;font-size:12px}.gp-script-editor__close{width:38px;height:38px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:#ffffff0f;color:#fff;font-size:24px;cursor:pointer}.gp-script-editor__body{display:grid;grid-template-columns:230px 1fr;min-height:520px}.gp-script-editor__templates{display:flex;flex-direction:column;gap:10px;padding:18px;border-right:1px solid rgba(255,255,255,.08);background:#ffffff06}.gp-script-editor__templates button,.gp-script-primary,.gp-script-secondary{border:1px solid rgba(0,229,255,.22);border-radius:12px;background:#00e5ff14;color:#eaffff;padding:11px 13px;cursor:pointer;text-align:left}.gp-script-editor__templates button:hover,.gp-script-primary:hover,.gp-script-secondary:hover{border-color:#00e5ff8c;background:#00e5ff29}.gp-script-editor__templates p{margin:8px 0 0;color:#eefaff94;font-size:12px;line-height:1.5}.gp-script-editor__main{display:flex;flex-direction:column;gap:12px;padding:18px;min-width:0}#gp-script-code{flex:1;min-height:380px;width:100%;resize:vertical;border:1px solid rgba(255,255,255,.1);border-radius:16px;background:#050814;color:#d8fbff;padding:16px;font-family:Consolas,Monaco,Courier New,monospace;font-size:13px;line-height:1.55;outline:none}.gp-script-editor__actions{display:flex;flex-wrap:wrap;gap:10px}.gp-script-primary{text-align:center;font-weight:800;background:linear-gradient(135deg,#00e5ff40,#5a5fff33)}.gp-script-secondary{text-align:center}.gp-script-editor__output{min-height:40px;border-radius:12px;padding:10px 12px;background:#00000047;color:#eefaffc2;font-size:12px}.tool-toggle--open{min-width:72px}@media(max-width:720px){.gp-script-editor-overlay{padding:10px;align-items:stretch}.gp-script-editor{width:100%;max-height:96vh;overflow-y:auto;border-radius:18px}.gp-script-editor__body{grid-template-columns:1fr;min-height:auto}.gp-script-editor__templates{border-right:0;border-bottom:1px solid rgba(255,255,255,.08)}#gp-script-code{min-height:320px}}.tool-toggle--open{min-width:32px;width:32px;height:32px;border:0!important;border-radius:0!important;background:transparent!important;color:#fff!important;box-shadow:none!important;font-size:24px;line-height:1;font-weight:900;display:inline-flex;align-items:center;justify-content:center;padding:0!important}.tool-toggle--open:hover{color:#f0b90b!important;background:transparent!important;border:0!important}.gp-script-editor__body--pro{grid-template-columns:245px 1fr}.gp-indicator-builder{display:grid;grid-template-columns:1.25fr repeat(5,minmax(76px,.55fr)) minmax(110px,.8fr) minmax(110px,.8fr) auto;gap:10px;padding:12px;border:1px solid rgba(0,229,255,.12);border-radius:16px;background:#00e5ff09}.gp-indicator-builder label{display:flex;flex-direction:column;gap:5px;color:#eefaffa3;font-size:11px;min-width:0}.gp-indicator-builder input,.gp-indicator-builder select{width:100%;min-height:36px;border:1px solid rgba(255,255,255,.1);border-radius:10px;background:#040812eb;color:#eefaff;padding:7px 9px;outline:none}.gp-indicator-builder .gp-script-secondary{align-self:end;text-align:center;white-space:nowrap}.gp-script-editor__templates button{font-weight:800}@media(max-width:980px){.gp-script-editor__body--pro{grid-template-columns:1fr;overflow:auto}.gp-script-editor__templates{border-right:0;border-bottom:1px solid rgba(255,255,255,.08);display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.gp-script-editor__templates p{grid-column:1 / -1}.gp-indicator-builder{grid-template-columns:repeat(2,minmax(0,1fr))}.gp-indicator-builder .gp-script-secondary{grid-column:1 / -1}#gp-script-code{min-height:240px}}@media(max-width:560px){.gp-script-editor-overlay{padding:8px;align-items:stretch}.gp-script-editor{width:100%;max-height:96vh;overflow:auto;border-radius:16px}.gp-script-editor__head{padding:14px}.gp-script-editor__templates,.gp-indicator-builder{grid-template-columns:1fr}}.gp-script-editor--binance{width:min(1180px,96vw);max-height:min(820px,92vh);background:linear-gradient(145deg,#0a0e18fa,#0e121efa);border-color:#f0b90b38;box-shadow:0 30px 90px #0000009e,0 0 0 1px #ffffff09 inset}.gp-script-editor--binance .gp-script-editor__head{background:linear-gradient(90deg,#f0b90b14,#00c2ff09)}.gp-script-editor__body--manager{display:grid;grid-template-columns:260px 1fr;min-height:600px;overflow:hidden}.gp-script-catalog{padding:16px;display:flex;flex-direction:column;gap:8px;background:#0b101c;border-right:1px solid rgba(255,255,255,.08);overflow:auto}.gp-script-panel-title{color:#f0b90b;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;margin:2px 0 6px}.gp-script-catalog button{display:grid;grid-template-columns:46px 1fr;align-items:center;gap:10px;border:1px solid rgba(255,255,255,.08);border-radius:12px;background:#111827;color:#eefaff;padding:9px;cursor:pointer;text-align:left;transition:.16s ease}.gp-script-catalog button:hover{border-color:#f0b90b99;background:#172033;transform:translateY(-1px)}.gp-script-catalog button span{display:inline-flex;align-items:center;justify-content:center;min-height:34px;border-radius:9px;background:#f0b90b1f;color:#f0b90b;font-size:11px;font-weight:900}.gp-script-catalog button b{font-size:13px;line-height:1.15}.gp-script-manager{display:grid;grid-template-columns:minmax(280px,360px) minmax(0,1fr);grid-template-rows:auto 1fr auto auto;gap:14px;padding:16px;overflow:auto}.gp-active-indicators,.gp-settings-card,.gp-advanced-script{border:1px solid rgba(255,255,255,.08);border-radius:16px;background:#0f172ac7;box-shadow:0 16px 45px #0003}.gp-active-indicators{grid-row:1 / span 2;min-height:360px;overflow:hidden;display:flex;flex-direction:column}.gp-settings-card{min-width:0}.gp-section-head{display:flex;justify-content:space-between;gap:12px;align-items:center;padding:14px;border-bottom:1px solid rgba(255,255,255,.07)}.gp-section-head strong{display:block;color:#f8fafc;font-size:14px}.gp-section-head span{display:block;color:#eefaff8f;font-size:11px;margin-top:2px}.gp-section-head--compact{padding-bottom:10px}.gp-mini-btn{border:1px solid rgba(240,185,11,.26);border-radius:10px;background:#f0b90b1f;color:#f0b90b;padding:8px 10px;font-weight:800;font-size:12px;cursor:pointer;white-space:nowrap}.gp-mini-btn.ghost{border-color:#ffffff1f;background:#ffffff0a;color:#cbd5e1}.gp-indicator-list{padding:12px;overflow:auto;display:flex;flex-direction:column;gap:8px}.gp-empty-list{color:#eefaff85;font-size:13px;padding:14px;border:1px dashed rgba(255,255,255,.12);border-radius:12px}.gp-indicator-item{display:grid;grid-template-columns:1fr 36px 36px;gap:8px;align-items:center;border:1px solid rgba(255,255,255,.08);border-radius:13px;background:#0b1220;padding:8px;cursor:pointer}.gp-indicator-item.active{border-color:#f0b90ba8;box-shadow:0 0 0 1px #f0b90b1f inset}.gp-indicator-item.disabled{opacity:.55}.gp-indicator-main{border:0;background:transparent;color:#f8fafc;padding:0;display:grid;grid-template-columns:14px 1fr;gap:9px;align-items:center;text-align:left;cursor:pointer;min-width:0}.gp-indicator-main b{display:block;font-size:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.gp-indicator-main small{display:block;color:#eefaff7a;font-size:10px;margin-top:2px}.gp-color-dot{width:11px;height:11px;border-radius:50%;box-shadow:0 0 14px currentColor}.gp-icon-btn{width:34px;height:34px;border:1px solid rgba(255,255,255,.08);border-radius:10px;background:#ffffff0a;color:#02c076;font-weight:900;cursor:pointer}.gp-icon-btn.danger,.gp-script-secondary.danger{color:#f6465d;border-color:#f6465d47;background:#f6465d14}.gp-indicator-builder--manager{grid-template-columns:repeat(5,minmax(90px,1fr));border:0;border-radius:0;background:transparent;padding:14px}.gp-indicator-builder--manager label:first-child{grid-column:span 2}.gp-indicator-builder--manager input,.gp-indicator-builder--manager select{border-color:#ffffff1a;background:#090e19;color:#f8fafc}.gp-indicator-builder--manager input[type=color]{padding:4px}.gp-indicator-builder--manager .is-muted{opacity:.36}.gp-settings-actions{display:flex;flex-wrap:wrap;gap:10px;padding:0 14px 14px}.gp-advanced-script{grid-column:2;padding:10px 14px 14px}.gp-advanced-script summary{color:#94a3b8;cursor:pointer;font-size:12px;font-weight:800}.gp-advanced-script #gp-script-code{min-height:90px;max-height:180px;margin-top:10px}.gp-script-actions-main,.gp-script-editor__output{grid-column:1 / -1}.gp-saved-sets-card{grid-column:2;border:1px solid rgba(255,255,255,.08);border-radius:16px;background:#0f172ac7;box-shadow:0 16px 45px #0003;display:flex;flex-direction:column;min-height:0}.gp-saved-sets-controls{display:grid;grid-template-columns:minmax(180px,1fr) auto auto;gap:10px;padding:12px 14px;border-bottom:1px solid rgba(255,255,255,.07)}.gp-saved-sets-controls input{min-height:38px;border:1px solid rgba(255,255,255,.1);border-radius:10px;background:#090e19;color:#f8fafc;padding:8px 10px}.gp-saved-set-list{padding:12px 14px 14px;display:flex;flex-direction:column;gap:8px;overflow:auto}.gp-saved-set-item{display:grid;grid-template-columns:1fr 34px;gap:8px;align-items:center;border:1px solid rgba(255,255,255,.08);border-radius:13px;background:#0b1220;padding:8px}.gp-saved-set-item.active{border-color:#f0b90ba8;box-shadow:0 0 0 1px #f0b90b1f inset}.gp-saved-set-main{border:0;background:transparent;color:#f8fafc;padding:0;text-align:left;cursor:pointer}.gp-saved-set-main b{display:block;font-size:13px}.gp-saved-set-main small{display:block;color:#eefaff7a;font-size:10px;margin-top:2px}.gp-script-actions-main{justify-content:flex-end;border-top:1px solid rgba(255,255,255,.06);padding-top:12px}.gp-script-editor--binance .gp-script-primary{background:#f0b90b;border-color:#f0b90b;color:#101318;text-align:center;font-weight:900}.gp-script-editor--binance .gp-script-secondary{background:#111827;border-color:#ffffff1f;color:#dbeafe;text-align:center;font-weight:800}.gp-script-editor--binance .gp-script-secondary:hover{border-color:#f0b90b80;color:#f0b90b}@media(max-width:1080px){.gp-script-editor__body--manager{grid-template-columns:1fr;overflow:auto}.gp-script-catalog{border-right:0;border-bottom:1px solid rgba(255,255,255,.08);display:grid;grid-template-columns:repeat(3,minmax(0,1fr));max-height:260px}.gp-script-panel-title{grid-column:1 / -1}.gp-script-manager{grid-template-columns:1fr}.gp-active-indicators,.gp-advanced-script,.gp-saved-sets-card{grid-column:1;grid-row:auto}}@media(max-width:640px){.gp-script-catalog{grid-template-columns:1fr 1fr}.gp-script-catalog button{grid-template-columns:38px 1fr}.gp-script-manager{padding:10px}.gp-indicator-builder--manager{grid-template-columns:1fr 1fr}.gp-saved-sets-controls{grid-template-columns:1fr}.gp-indicator-builder--manager label:first-child{grid-column:1 / -1}.gp-section-head{align-items:flex-start;flex-direction:column}.gp-script-actions-main{justify-content:stretch}.gp-script-actions-main button{flex:1 1 45%}}.gp-profile-overlay,.gp-script-editor-overlay{box-sizing:border-box}.gp-profile-dashboard{width:min(1180px,calc(100vw - 24px))!important;height:min(780px,calc(100vh - 24px))!important;max-height:calc(100vh - 24px)!important;grid-template-columns:clamp(210px,21vw,260px) minmax(0,1fr)!important;background:linear-gradient(145deg,#0a0e18fa,#0e121efa)!important;border-color:#f0b90b38!important;box-shadow:0 30px 90px #0000009e,0 0 0 1px #ffffff09 inset!important}.gp-profile-sidebar{background:#0b101c!important;padding:clamp(14px,2vh,22px) clamp(12px,1.5vw,18px)!important;overflow-y:auto}.gp-profile-logo{margin-bottom:clamp(8px,1.5vh,18px)!important}.gp-side-link{padding:clamp(9px,1.5vh,13px) 14px!important;border:1px solid transparent}.gp-side-link:hover,.gp-side-link.active{background:#f0b90b1f!important;border-color:#f0b90b47!important;box-shadow:inset 3px 0 #f0b90b!important}.gp-plan-mini{padding:clamp(12px,1.8vh,16px)!important;border-radius:16px!important}.gp-plan-mini strong{font-size:clamp(20px,2.5vh,28px)!important;color:#f0b90b!important}.gp-profile-content{min-height:0;overflow-y:auto!important;padding:clamp(14px,2vh,26px)!important;scrollbar-width:thin}.gp-tab-panel{display:none}.gp-tab-panel.active{display:flex!important;flex-direction:column;gap:clamp(12px,1.7vh,18px)}.gp-profile-hero-card{padding:clamp(16px,2vh,22px)!important;border-radius:18px!important;background:#0f172ac7!important;border:1px solid rgba(255,255,255,.08)!important;box-shadow:0 16px 45px #0003}.gp-profile-head h2{font-size:clamp(21px,2.4vw,30px)!important;line-height:1.18;max-width:100%}.gp-profile-big-avatar--hero{width:clamp(56px,7vh,72px)!important;height:clamp(56px,7vh,72px)!important}.gp-profile-stats-row{margin:0!important;gap:clamp(10px,1.3vh,14px)!important}.gp-profile-stats-row div,.gp-panel-card{padding:clamp(12px,1.7vh,18px)!important;border-radius:16px!important;background:#0f172ac7!important}.gp-profile-panels{min-height:0;gap:clamp(10px,1.3vh,14px)!important}.gp-tool-list--dash{gap:8px!important;margin-top:10px!important}.gp-tool-list--dash span{padding:8px 10px!important;font-size:11px!important}.gp-tool-list--dash span.ok{background:#f0b90b!important;color:#101318!important}.gp-profile-close{z-index:5}.gp-script-editor--binance{width:min(1180px,calc(100vw - 24px))!important;height:min(780px,calc(100vh - 24px))!important;max-height:calc(100vh - 24px)!important;display:flex;flex-direction:column}.gp-script-editor__head{flex:0 0 auto;padding:clamp(12px,1.8vh,18px) clamp(14px,1.8vw,22px)!important}.gp-script-editor__body--manager{flex:1 1 auto;min-height:0!important;overflow:hidden!important;grid-template-columns:clamp(210px,22vw,260px) minmax(0,1fr)!important}.gp-script-catalog,.gp-script-manager,.gp-indicator-list{min-height:0;scrollbar-width:thin}.gp-script-catalog{padding:clamp(10px,1.5vh,16px)!important}.gp-script-manager{padding:clamp(10px,1.5vh,16px)!important;gap:clamp(10px,1.4vh,14px)!important;grid-template-columns:minmax(250px,340px) minmax(0,1fr)!important;grid-template-rows:minmax(220px,1fr) auto auto auto!important}.gp-active-indicators{min-height:0!important}.gp-settings-card{min-height:0}.gp-indicator-builder--manager{grid-template-columns:repeat(5,minmax(76px,1fr))!important;padding:12px!important}.gp-advanced-script #gp-script-code{max-height:120px!important;min-height:70px!important}.gp-script-actions-main{padding-top:8px!important}@media(max-height:760px){.gp-profile-overlay,.gp-script-editor-overlay{padding:8px!important;align-items:stretch!important}.gp-profile-dashboard,.gp-script-editor--binance{height:calc(100vh - 16px)!important;max-height:calc(100vh - 16px)!important}.gp-profile-logo .gp-profile-big-avatar{width:44px;height:44px;border-radius:14px}.gp-profile-logo{margin-bottom:6px!important}.gp-side-link{padding:9px 12px!important}.gp-plan-mini{margin-top:8px!important}.gp-profile-stats-row strong{font-size:16px!important}.gp-panel-card h3{margin-bottom:6px!important}.gp-script-catalog button{padding:7px!important}.gp-script-catalog button span{min-height:30px!important}.gp-section-head{padding:10px 12px!important}.gp-indicator-list{padding:10px!important}}@media(max-width:980px){.gp-profile-dashboard{grid-template-columns:1fr!important;height:calc(100vh - 20px)!important}.gp-profile-sidebar{display:none!important}.gp-profile-content{padding:14px!important}.gp-profile-hero-card{flex-direction:column;align-items:flex-start}.gp-profile-stats-row{grid-template-columns:repeat(2,minmax(0,1fr))!important}.gp-profile-panels{grid-template-columns:1fr!important}.gp-script-editor__body--manager{grid-template-columns:1fr!important;overflow:auto!important}.gp-script-catalog{max-height:190px!important;grid-template-columns:repeat(3,minmax(0,1fr))!important}.gp-script-manager{grid-template-columns:1fr!important}.gp-active-indicators,.gp-advanced-script{grid-column:1!important;grid-row:auto!important}}@media(max-width:640px){.gp-profile-stats-row{grid-template-columns:1fr!important}.gp-profile-dashboard,.gp-script-editor--binance{width:calc(100vw - 12px)!important;height:calc(100vh - 12px)!important}.gp-script-catalog{grid-template-columns:1fr 1fr!important}.gp-indicator-builder--manager{grid-template-columns:repeat(2,minmax(0,1fr))!important}}.gp-script-editor-overlay{overscroll-behavior:contain}@media(max-width:720px){.gp-script-editor-overlay{align-items:flex-start!important;justify-content:center!important;padding:max(8px,env(safe-area-inset-top)) 8px max(12px,env(safe-area-inset-bottom))!important;overflow:hidden!important}.gp-script-editor--binance{width:calc(100vw - 16px)!important;height:calc(100dvh - max(18px,env(safe-area-inset-top)) - max(18px,env(safe-area-inset-bottom)))!important;max-height:calc(100dvh - max(18px,env(safe-area-inset-top)) - max(18px,env(safe-area-inset-bottom)))!important;border-radius:18px!important;overflow:hidden!important}.gp-script-editor__head{padding:14px 14px 12px!important;gap:10px!important}.gp-script-editor__head strong{font-size:clamp(22px,6.2vw,32px)!important;line-height:1.1!important;letter-spacing:0!important}.gp-script-editor__head span{font-size:clamp(13px,3.8vw,18px)!important;line-height:1.35!important;max-width:92%!important}.gp-script-editor__close{flex:0 0 auto!important;width:44px!important;height:44px!important;border-radius:16px!important;font-size:30px!important}.gp-script-editor__body--manager{display:block!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;padding-bottom:max(84px,calc(env(safe-area-inset-bottom) + 72px))!important}.gp-script-catalog{display:grid!important;grid-template-columns:1fr 1fr!important;gap:10px!important;max-height:none!important;overflow:visible!important;border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important;padding:12px!important}.gp-script-panel-title{grid-column:1 / -1!important;font-size:12px!important;margin-bottom:2px!important}.gp-script-catalog button{min-height:72px!important;padding:10px!important;grid-template-columns:52px minmax(0,1fr)!important;border-radius:15px!important}.gp-script-catalog button span{min-height:46px!important;font-size:15px!important;border-radius:12px!important}.gp-script-catalog button b{font-size:16px!important;line-height:1.08!important}.gp-script-manager{display:flex!important;flex-direction:column!important;grid-template-columns:none!important;grid-template-rows:none!important;gap:14px!important;padding:12px!important;overflow:visible!important}.gp-active-indicators,.gp-settings-card,.gp-advanced-script,.gp-script-actions-main,.gp-script-editor__output{grid-column:auto!important;grid-row:auto!important;width:100%!important}.gp-active-indicators{order:1!important;min-height:auto!important;max-height:270px!important;overflow:hidden!important}.gp-indicator-list{max-height:205px!important;overflow-y:auto!important;padding:10px!important;-webkit-overflow-scrolling:touch!important}.gp-settings-card{order:2!important;overflow:visible!important}.gp-settings-card .gp-section-head,.gp-active-indicators .gp-section-head{flex-direction:row!important;align-items:center!important;padding:12px!important}.gp-settings-card .gp-section-head span,.gp-active-indicators .gp-section-head span{font-size:11px!important}.gp-indicator-builder--manager{display:grid!important;grid-template-columns:1fr 1fr!important;gap:12px!important;padding:12px!important}.gp-indicator-builder--manager label:first-child{grid-column:1 / -1!important}.gp-indicator-builder--manager label{font-size:13px!important;gap:7px!important}.gp-indicator-builder--manager input,.gp-indicator-builder--manager select{min-height:48px!important;border-radius:14px!important;font-size:16px!important;padding:10px 12px!important}.gp-indicator-builder--manager input[type=color]{min-height:56px!important;padding:6px!important}.gp-settings-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:10px!important;padding:0 12px 12px!important}.gp-settings-actions button:first-child,.gp-settings-actions button:last-child{grid-column:1 / -1!important}.gp-advanced-script{order:3!important;padding:12px!important}.gp-advanced-script summary{min-height:44px!important;display:flex!important;align-items:center!important;font-size:15px!important}.gp-script-actions-main{order:4!important;display:grid!important;grid-template-columns:1fr 1fr!important;gap:10px!important;position:sticky!important;bottom:0!important;z-index:20!important;padding:12px!important;margin:0 -12px -12px!important;border-top:1px solid rgba(255,255,255,.1)!important;background:linear-gradient(180deg,#0a0e18db,#0a0e18fa 35%,#0a0e18)!important;-webkit-backdrop-filter:blur(12px)!important;backdrop-filter:blur(12px)!important}.gp-script-actions-main button,.gp-settings-actions button{min-height:52px!important;border-radius:16px!important;font-size:16px!important;text-align:center!important}.gp-script-editor__output{order:5!important;min-height:44px!important;margin-bottom:8px!important}}@media(max-width:420px){.gp-script-catalog button{grid-template-columns:46px minmax(0,1fr)!important;min-height:66px!important}.gp-script-catalog button b{font-size:14px!important}.gp-indicator-builder--manager,.gp-settings-actions,.gp-script-actions-main{grid-template-columns:1fr!important}.gp-settings-actions button,.gp-settings-actions button:first-child,.gp-settings-actions button:last-child{grid-column:auto!important}}@supports not (height: 100dvh){@media(max-width:720px){.gp-script-editor--binance{height:calc(100vh - 16px)!important;max-height:calc(100vh - 16px)!important}}}@media(max-width:720px){.gp-script-editor__body--manager{padding-bottom:max(22px,calc(env(safe-area-inset-bottom) + 18px))!important}.gp-script-actions-main{order:4!important;position:static!important;bottom:auto!important;z-index:auto!important;margin:0!important;padding:12px!important;border:1px solid rgba(255,255,255,.08)!important;border-radius:18px!important;background:#0f172adb!important;-webkit-backdrop-filter:none!important;backdrop-filter:none!important;box-shadow:0 10px 30px #00000038!important}.gp-settings-card{order:3!important}.gp-advanced-script{order:5!important}.gp-script-editor__output{order:6!important;margin:0 0 18px!important;position:static!important}.gp-settings-actions{margin-bottom:4px!important}.gp-script-actions-main button{width:100%!important}}@media(max-width:420px){.gp-script-actions-main{grid-template-columns:1fr!important}}.tools-account-info small{display:block;margin-top:4px;color:#7c8da8;font-size:11px;line-height:1.35}.tool-toggle--action{min-width:66px;color:#dbeafe}.tool-toggle--danger{min-width:58px;color:#ff8da1;border-color:#f6465d47;background:#f6465d14}.tool-toggle--danger:hover{background:#f6465d24}body.monochrome-theme{filter:grayscale(1) contrast(1.04)}body.monochrome-theme .gp-script-editor-overlay,body.monochrome-theme .gp-set-editor-overlay,body.monochrome-theme #splash-screen{filter:none}.gp-saved-set-actions{display:flex;align-items:center;gap:6px}.gp-set-editor-overlay{position:fixed;inset:0;z-index:100001;display:flex;align-items:center;justify-content:center;padding:20px;background:#000000b8;-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px)}.gp-set-editor-modal{width:min(1080px,96vw);max-height:min(820px,94vh);overflow:hidden;border-radius:22px;border:1px solid rgba(240,185,11,.22);background:linear-gradient(145deg,#0a0e18fa,#0e121efa);box-shadow:0 30px 90px #0000009e,0 0 0 1px #ffffff09 inset}.gp-set-editor-head{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px 18px;border-bottom:1px solid rgba(255,255,255,.08);background:linear-gradient(90deg,#f0b90b14,#00c2ff09)}.gp-set-editor-head strong{display:block;color:#fff;font-size:18px}.gp-set-editor-head span{display:block;margin-top:4px;color:#eefaff9e;font-size:12px}.gp-set-editor-body{display:grid;grid-template-columns:minmax(320px,380px) minmax(0,1fr);gap:14px;padding:16px;overflow:auto;max-height:calc(94vh - 150px)}.gp-set-editor-panel{border:1px solid rgba(255,255,255,.08);border-radius:16px;background:#0f172ac7;box-shadow:0 16px 45px #0003;overflow:hidden;display:flex;flex-direction:column}.gp-saved-sets-controls--editor{grid-template-columns:1fr;border-bottom:1px solid rgba(255,255,255,.07)}.gp-saved-set-list--editor{min-height:320px}.gp-indicator-builder--editor{grid-template-columns:repeat(5,minmax(82px,1fr))}.gp-set-editor-footer{display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:space-between;padding:14px 16px 16px;border-top:1px solid rgba(255,255,255,.08)}.gp-set-editor-footer .gp-script-editor__output{flex:1 1 360px;min-height:48px}.gp-set-editor-footer .gp-script-editor__actions{justify-content:flex-end}@media(max-width:900px){.gp-set-editor-body{grid-template-columns:1fr}.gp-indicator-builder--editor{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){.gp-set-editor-overlay{padding:10px;align-items:stretch}.gp-set-editor-modal{width:100%;max-height:96vh}.gp-set-editor-body{padding:10px}.gp-set-editor-footer{padding:12px 10px 14px}.gp-set-editor-footer .gp-script-editor__actions button{flex:1 1 48%}}.btn--chart-settings{min-width:156px;height:34px;padding:0 14px;border-radius:10px;border:1px solid rgba(255,255,255,.1);background:#ffffff0a;color:#f8fafc;font-size:12px;font-weight:800;letter-spacing:.08em}.btn--chart-settings:hover{background:#ffffff14}.chart-settings-panel,.watchlist-panel{position:fixed;z-index:430;border-radius:16px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,#0a0e18fa,#080b14fa);box-shadow:0 18px 46px #00000075;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-10px);transition:.2s ease}.chart-settings-panel.open,.watchlist-panel.open{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}.chart-settings-panel{top:58px;left:50%;width:420px;max-width:calc(100vw - 24px);transform:translate(-50%) translateY(-10px)}.chart-settings-panel.open{transform:translate(-50%) translateY(0)}.chart-settings-panel__header,.watchlist-panel__header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.08)}.chart-settings-panel__header strong,.watchlist-panel__header strong{display:block;color:#fff;font-size:15px}.chart-settings-panel__header span,.watchlist-panel__header span{display:block;margin-top:3px;color:#8ea1b8;font-size:12px}.chart-settings-panel__close,.watchlist-panel__close{width:30px;height:30px;border-radius:10px;border:1px solid rgba(255,255,255,.08);background:#ffffff0a;color:#dbeafe}.chart-settings-panel__body{display:flex;flex-direction:column;gap:10px;padding:14px}.chart-settings-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px;border-radius:14px;border:1px solid rgba(255,255,255,.07);background:#ffffff08}.chart-settings-row strong{display:block;color:#fff;font-size:13px}.chart-settings-row span{display:block;margin-top:4px;color:#8ea1b8;font-size:11px;line-height:1.35;max-width:220px}.chart-theme-switch{display:inline-flex;align-items:center;gap:8px;padding:4px;border-radius:999px;background:#ffffff0d;border:1px solid rgba(255,255,255,.08)}.chart-theme-switch__btn{min-width:74px;height:32px;border-radius:999px;border:none;background:transparent;color:#dbeafe;font-size:12px;font-weight:700}.chart-theme-switch__btn.active{background:linear-gradient(135deg,#2979ff,#00c853);color:#fff}.watchlist-panel{top:106px;right:16px;width:298px;max-width:calc(100vw - 24px);overflow:hidden}.watchlist-panel__columns{display:grid;grid-template-columns:1.3fr .9fr .8fr;gap:10px;padding:12px 16px 8px;color:#8ea1b8;font-size:11px;text-transform:uppercase;letter-spacing:.06em}.watchlist-panel__body{max-height:min(56vh,480px);overflow:auto;padding:0 10px 12px}.watchlist-row{width:100%;display:grid;grid-template-columns:1.3fr .9fr .8fr;gap:10px;align-items:center;padding:12px 10px;border-radius:12px;border:1px solid transparent;background:transparent;color:#eef2ff;text-align:left}.watchlist-row:hover{background:#ffffff0d;border-color:#ffffff14}.watchlist-row.active{background:#2979ff1f;border-color:#2979ff52}.watchlist-row__symbol{font-weight:700}.watchlist-row__last,.watchlist-row__market{color:#b7c5d8;font-size:12px}#chart-area:fullscreen{width:100vw!important;height:100vh!important;background:#0a0a0f}#chart-area:fullscreen .loading{z-index:999}body.chart-theme-light{background:#f7f8fa;color:#111827}body.chart-theme-light .header,body.chart-theme-light .timeframes,body.chart-theme-light .analytics,body.chart-theme-light .sidebar,body.chart-theme-light .tools-panel,body.chart-theme-light .chart-settings-panel,body.chart-theme-light .watchlist-panel,body.chart-theme-light .selector__dropdown,body.chart-theme-light .gp-auth-card,body.chart-theme-light .orderbook__header,body.chart-theme-light .orderbook__depth,body.chart-theme-light .orderbook__content{background:#fff!important;color:#111827!important;border-color:#1118271a!important;box-shadow:0 12px 34px #0f172a14}body.chart-theme-light .header,body.chart-theme-light .timeframes,body.chart-theme-light .analytics,body.chart-theme-light .main,body.chart-theme-light .chart-container{background:#f7f8fa!important}body.chart-theme-light .chart-area{background:#fff!important}body.chart-theme-light .btn,body.chart-theme-light .tool-toggle,body.chart-theme-light .selector__trigger,body.chart-theme-light .chart-settings-panel__close,body.chart-theme-light .watchlist-panel__close,body.chart-theme-light .chart-theme-switch,body.chart-theme-light .btn--chart-settings,body.chart-theme-light #tools-panel-btn,body.chart-theme-light #settings-btn,body.chart-theme-light #fullscreen-btn{background:#fff;color:#111827;border-color:#1118271f}body.chart-theme-light .timeframe-btn,body.chart-theme-light .header__timeframe,body.chart-theme-light .selector__label,body.chart-theme-light .selector__arrow,body.chart-theme-light .tool-row strong,body.chart-theme-light .chart-settings-row strong,body.chart-theme-light .metric__label,body.chart-theme-light .orderbook__title,body.chart-theme-light .watchlist-panel__header strong,body.chart-theme-light .chart-settings-panel__header strong,body.chart-theme-light .watchlist-row,body.chart-theme-light .chart-settings-panel__header span,body.chart-theme-light .watchlist-panel__header span,body.chart-theme-light .tool-row span,body.chart-theme-light .chart-settings-row span,body.chart-theme-light .watchlist-panel__columns,body.chart-theme-light .watchlist-row__last,body.chart-theme-light .watchlist-row__market,body.chart-theme-light .metric__value,body.chart-theme-light .selector__option{color:#111827!important}body.chart-theme-light .tool-row,body.chart-theme-light .chart-settings-row,body.chart-theme-light .metric,body.chart-theme-light .watchlist-row:hover{background:#fff!important;border-color:#11182714!important}body.chart-theme-light .chart-theme-switch__btn.active,body.chart-theme-light .tool-toggle.active,body.chart-theme-light .timeframe-btn.active{color:#fff!important}body.chart-theme-light .watchlist-row.active{background:#2979ff1a!important;border-color:#2979ff3d!important}@media(max-width:1280px){.btn--chart-settings{min-width:138px}}@media(max-width:980px){.btn--chart-settings,.chart-settings-panel,.watchlist-panel{display:none!important}}body.chart-theme-light #chart-area:fullscreen{background:#fff}body.chart-theme-light{--bg-primary: #f7f8fa;--bg-secondary: #ffffff;--bg-tertiary: #f8fafc;--bg-hover: #eef2f7;--text-primary: #111827;--text-secondary: #4b5563;--text-muted: #6b7280;--border-color: rgba(17, 24, 39, .1);--border-hover: rgba(17, 24, 39, .16);--shadow-sm: 0 2px 4px rgba(15, 23, 42, .05);--shadow-md: 0 8px 20px rgba(15, 23, 42, .08);--shadow-lg: 0 16px 36px rgba(15, 23, 42, .1)}body.chart-theme-light #levels-summary,body.chart-theme-light .levels-summary,body.chart-theme-light .dom-ladder,body.chart-theme-light .dom-ladder__header,body.chart-theme-light .dom-ladder__spread,body.chart-theme-light .orderbook__content,body.chart-theme-light .orderbook__content>*,body.chart-theme-light .depth-chart,body.chart-theme-light .mini-heatmap{background:#fff!important;color:#111827!important;border-color:#1118271a!important}body.chart-theme-light .levels-summary__stat,body.chart-theme-light .dom-ladder__spread,body.chart-theme-light .tools-account-card,body.chart-theme-light .tool-row,body.chart-theme-light .chart-settings-row,body.chart-theme-light .metric{background:#f8fafc!important}body.chart-theme-light .dom-ladder__row:hover,body.chart-theme-light .selector__option:hover,body.chart-theme-light .tool-row:hover,body.chart-theme-light .watchlist-row:hover{background:#f3f4f6!important}body.chart-theme-light .levels-summary__empty,body.chart-theme-light .levels-summary__stat-label,body.chart-theme-light .dom-ladder__col,body.chart-theme-light .dom-ladder__spread-percent,body.chart-theme-light .dom-ladder__cell--qty,body.chart-theme-light .tools-account-info span,body.chart-theme-light .tools-account-info small{color:#6b7280!important}body.chart-theme-light .sidebar,body.chart-theme-light .orderbook__content,body.chart-theme-light #orderbook-content,body.chart-theme-light #levels-summary{box-shadow:none!important}.timeframes{padding:0!important;height:38px!important;overflow:hidden!important}.timeframes__scroll{display:flex;align-items:center;gap:4px;width:100%;padding:4px 10px 4px 54px;overflow-x:auto;overflow-y:hidden;scrollbar-width:thin;scrollbar-color:rgba(148,163,184,.45) transparent}.timeframes__scroll::-webkit-scrollbar{height:5px}.timeframes__scroll::-webkit-scrollbar-track{background:transparent}.timeframes__scroll::-webkit-scrollbar-thumb{background:#94a3b873;border-radius:999px}.timeframes__divider{flex:0 0 1px;height:20px;margin:0 8px;background:var(--border-color)}.timeframes__tools{display:flex;align-items:center;gap:4px}.tv-top-tool{height:28px;padding:0 10px;border:1px solid transparent;border-radius:7px;background:transparent;color:var(--text-secondary);font-size:12px;font-weight:600;white-space:nowrap;cursor:pointer}.tv-top-tool--fullscreen{width:30px;min-width:30px;padding:0;display:inline-flex;align-items:center;justify-content:center;border-radius:8px}.tv-fullscreen-icon{position:relative;width:15px;height:15px;display:inline-block}.tv-fullscreen-icon:before,.tv-fullscreen-icon:after{content:"";position:absolute;inset:0;background:linear-gradient(currentColor,currentColor) left top / 6px 1.7px no-repeat,linear-gradient(currentColor,currentColor) left top / 1.7px 6px no-repeat,linear-gradient(currentColor,currentColor) right top / 6px 1.7px no-repeat,linear-gradient(currentColor,currentColor) right top / 1.7px 6px no-repeat,linear-gradient(currentColor,currentColor) left bottom / 6px 1.7px no-repeat,linear-gradient(currentColor,currentColor) left bottom / 1.7px 6px no-repeat,linear-gradient(currentColor,currentColor) right bottom / 6px 1.7px no-repeat,linear-gradient(currentColor,currentColor) right bottom / 1.7px 6px no-repeat}.tv-top-tool:hover,.tv-top-tool.active{color:var(--text-primary);background:var(--bg-tertiary);border-color:var(--border-color)}.tv-left-toolbar{position:fixed;top:calc(var(--header-height) + var(--toolbar-height));left:0;bottom:0;width:46px;z-index:160;display:flex;flex-direction:column;align-items:center;gap:4px;padding:8px 5px;background:var(--bg-secondary);border-right:1px solid var(--border-color);box-shadow:10px 0 24px #00000029}.tv-left-toolbar__btn{width:34px;min-height:34px;border:1px solid transparent;border-radius:8px;background:transparent;color:var(--text-secondary);font-size:11px;font-weight:800;cursor:pointer}.tv-left-toolbar__btn:hover,.tv-left-toolbar__btn.active{color:var(--text-primary);background:var(--bg-tertiary);border-color:var(--border-color)}.chart-container{margin-left:46px}body.chart-theme-light .tv-left-toolbar,body.chart-theme-light .timeframes{background:#fff!important;border-color:#1118271a!important;box-shadow:8px 0 20px #0f172a0d}body.chart-theme-light .tv-left-toolbar__btn,body.chart-theme-light .tv-top-tool{color:#4b5563!important}body.chart-theme-light .tv-left-toolbar__btn:hover,body.chart-theme-light .tv-left-toolbar__btn.active,body.chart-theme-light .tv-top-tool:hover,body.chart-theme-light .tv-top-tool.active{color:#111827!important;background:#f3f4f6!important;border-color:#1118271a!important}.tool-toggle.active{color:#052e1a!important;background:linear-gradient(135deg,#70f4b5,#5cc8ff)!important;border-color:#10b98180!important}body.chart-theme-light .tool-toggle.active{color:#065f46!important;background:#dcfce7!important;border-color:#10b9814d!important}body.chart-theme-light .tools-panel,body.chart-theme-light .chart-settings-panel,body.chart-theme-light .watchlist-panel{background:#ffffffeb!important;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);border-color:#11182714!important;box-shadow:0 18px 50px #0f172a1a!important}body.chart-theme-light .tool-row,body.chart-theme-light .chart-settings-row,body.chart-theme-light .watchlist-row{background:#ffffff80!important}.gp-indicator-picker-overlay{position:fixed;inset:0;z-index:100002;display:flex;align-items:center;justify-content:center;padding:18px;background:#00000094;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.gp-indicator-picker-modal{width:min(720px,94vw);max-height:min(640px,90vh);overflow:hidden;border-radius:20px;border:1px solid rgba(240,185,11,.22);background:linear-gradient(145deg,#0a0e18fa,#0e121efa);box-shadow:0 30px 90px #0000009e;color:#eefaff}.gp-indicator-picker-head{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px 18px;border-bottom:1px solid rgba(255,255,255,.08)}.gp-indicator-picker-head strong{display:block;font-size:18px}.gp-indicator-picker-head span{display:block;margin-top:4px;color:#eefaff9e;font-size:12px}.gp-indicator-picker-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;padding:16px;overflow:auto;max-height:520px}.gp-indicator-picker-item{display:grid;grid-template-columns:48px 1fr;align-items:center;gap:10px;min-height:58px;padding:10px;border-radius:14px;border:1px solid rgba(255,255,255,.08);background:#0f172ad1;color:#eefaff;cursor:pointer;text-align:left}.gp-indicator-picker-item:hover{border-color:#f0b90b8c;transform:translateY(-1px)}.gp-indicator-picker-item span{display:inline-flex;align-items:center;justify-content:center;min-height:38px;border-radius:10px;background:#f0b90b1f;color:#f0b90b;font-weight:900;font-size:11px}.gp-indicator-picker-item b{font-size:13px;line-height:1.15}body.chart-theme-light .gp-indicator-picker-modal{background:#fffffff5!important;color:#111827;border-color:#1118271a;box-shadow:0 24px 70px #0f172a2e}body.chart-theme-light .gp-indicator-picker-head{border-color:#1118271a}body.chart-theme-light .gp-indicator-picker-head span{color:#6b7280}body.chart-theme-light .gp-indicator-picker-item{background:#fff;color:#111827;border-color:#1118271a}body.chart-theme-light .gp-indicator-picker-item:hover{background:#f8fafc}@media(max-width:980px){.tv-left-toolbar{display:none}.chart-container{margin-left:0}.timeframes__scroll{padding-left:10px}.timeframes__tools{display:none}}@media(max-width:680px){.gp-indicator-picker-grid{grid-template-columns:1fr}}body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget,#gp-auth-widget{top:82px!important;right:214px!important;left:auto!important;transform:none!important;z-index:155!important}body.terminal-active .gp-auth-card,body.gp-terminal-active .gp-auth-card,.gp-auth-card{min-height:42px!important;padding:6px 8px!important;gap:8px!important;border-radius:14px!important;box-shadow:0 10px 28px #0f172a1f!important}.gp-auth-card .gp-auth-text,.gp-auth-card .gp-auth-logout-btn,.gp-auth-card .gp-auth-info,.gp-auth-card [data-gp-auth=logout]{display:none!important}.gp-auth-actions--compact{display:flex!important;align-items:center!important;gap:0!important}.gp-auth-card .gp-profile-avatar,.gp-profile-avatar{width:34px!important;height:34px!important;min-width:34px!important;border-radius:12px!important}.gp-auth-card .gp-auth-profile-btn,.gp-auth-profile-btn{min-height:32px!important;height:32px!important;padding:0 14px!important;border-radius:10px!important;font-size:12px!important;white-space:nowrap!important}body.chart-theme-light #gp-auth-widget .gp-auth-card,body.chart-theme-light .gp-auth-card{background:#fffffff0!important;border:1px solid rgba(17,24,39,.08)!important;box-shadow:0 10px 28px #0f172a1f!important}body:not(.chart-theme-dark){background:#f7f8fa}body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget,#gp-auth-widget{top:176px!important;right:182px!important;left:auto!important;width:max-content!important;max-width:max-content!important;min-width:0!important}body.terminal-active .gp-auth-card,body.gp-terminal-active .gp-auth-card,.gp-auth-card,.gp-auth-card.gp-fixed-header{width:auto!important;min-width:0!important;max-width:none!important;display:inline-flex!important;align-items:center!important;justify-content:flex-start!important;gap:8px!important;padding:6px 8px!important}.gp-auth-actions,.gp-auth-actions--compact{display:inline-flex!important;align-items:center!important;flex:0 0 auto!important;width:auto!important;min-width:0!important;max-width:none!important}.gp-auth-card .gp-auth-profile-btn,.gp-auth-profile-btn{min-width:0!important;width:auto!important}@media(max-width:1400px){body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget,#gp-auth-widget{right:170px!important}}@media(max-width:1100px){body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget,#gp-auth-widget{top:136px!important;right:14px!important}}body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget,#gp-auth-widget{top:108px!important;left:535px!important;right:auto!important}@media(max-width:1500px){body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget,#gp-auth-widget{left:520px!important}}body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget,#gp-auth-widget{position:fixed!important;top:108px!important;left:460px!important;right:auto!important;transform:none!important}@media(max-width:1500px){body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget,#gp-auth-widget{left:448px!important}}@media(max-width:1280px){body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget,#gp-auth-widget{top:136px!important;left:auto!important;right:14px!important}}@media(min-width:1281px){body.terminal-active #gp-auth-widget,body.gp-terminal-active #gp-auth-widget,#gp-auth-widget{position:fixed!important;inset:3px auto auto 620px!important;transform:none!important;z-index:9200!important;width:max-content!important;max-width:max-content!important;min-width:0!important}body.terminal-active .gp-auth-card,body.gp-terminal-active .gp-auth-card,.gp-auth-card{height:40px!important;min-height:40px!important;padding:4px 8px!important;gap:8px!important;border-radius:12px!important}body.terminal-active .gp-profile-avatar,body.gp-terminal-active .gp-profile-avatar,.gp-profile-avatar{width:32px!important;height:32px!important;min-width:32px!important}body.terminal-active .gp-auth-profile-btn,body.gp-terminal-active .gp-auth-profile-btn,.gp-auth-profile-btn{height:30px!important;min-height:30px!important;padding:0 13px!important}}body.chart-theme-light .tools-panel__close{background:#fff!important;color:#111827!important;border:1px solid rgba(17,24,39,.12)!important;box-shadow:0 8px 18px #0f172a14}body.chart-theme-light .tools-panel__close:hover{background:#f3f4f6!important;color:#111827!important;border-color:#1118272e!important}.header #prime-orderflow-btn.btn--prime-orderflow{position:relative!important;right:auto!important;top:auto!important;margin-left:0!important;flex:0 0 auto!important}#gp-auth-widget.gp-auth-header-inline,body.gp-terminal-active #gp-auth-widget.gp-auth-header-inline{position:relative!important;inset:auto!important;transform:none!important;z-index:120!important;margin-left:0!important;pointer-events:auto!important;cursor:default!important;flex:0 0 auto!important}#gp-auth-widget.gp-auth-header-inline .gp-auth-card,body.gp-terminal-active #gp-auth-widget.gp-auth-header-inline .gp-auth-card{min-width:0!important;max-width:none!important;width:auto!important;height:36px!important;padding:3px 8px!important;gap:8px!important;border-radius:12px!important;background:transparent!important;border:none!important;box-shadow:none!important;overflow:visible!important}#gp-auth-widget.gp-auth-header-inline .gp-profile-avatar{width:31px!important;height:31px!important;min-width:31px!important;border-radius:999px!important}#gp-auth-widget.gp-auth-header-inline .gp-auth-actions,#gp-auth-widget.gp-auth-header-inline .gp-auth-actions--compact{display:flex!important}#gp-auth-widget.gp-auth-header-inline .gp-auth-profile-btn{height:34px!important;padding:0 14px!important;border-radius:12px!important;font-size:12px!important;font-weight:900!important;white-space:nowrap!important}body.chart-theme-light #prime-orderflow-btn{color:#111827!important;background:#fffffff5!important;border-color:#11182724!important;box-shadow:0 7px 18px #0f172a14!important}body.chart-theme-light #tool-script-editor-open,body.chart-theme-light .tools-panel #tool-script-editor-open.tool-toggle,body.chart-theme-light .tool-row #tool-script-editor-open{color:#111827!important;background:#fff!important;border:1px solid rgba(17,24,39,.16)!important;box-shadow:0 6px 16px #0f172a14!important;text-shadow:none!important}body.chart-theme-light #tool-script-editor-open:before,body.chart-theme-light #tool-script-editor-open:after{background:#111827!important;color:#111827!important}@media(max-width:1180px){#gp-auth-widget.gp-auth-header-inline .gp-auth-profile-btn{display:inline-flex!important;align-items:center}}.gp-saved-sets-controls--compact{grid-template-columns:1fr 1fr!important}.gp-saved-sets-card{min-height:0!important;overflow:hidden!important}.gp-saved-set-list{min-height:0!important;max-height:130px!important;overflow-y:auto!important}.gp-save-set-overlay{position:fixed;inset:0;z-index:100002;display:flex;align-items:center;justify-content:center;padding:20px;background:#000000b8;-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px)}.gp-save-set-modal{width:min(520px,94vw);overflow:hidden;border-radius:22px;border:1px solid rgba(240,185,11,.24);background:linear-gradient(145deg,#0a0e18fa,#0e121efa);box-shadow:0 30px 90px #0000009e,0 0 0 1px #ffffff09 inset}.gp-save-set-head{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px 18px;border-bottom:1px solid rgba(255,255,255,.08);background:linear-gradient(90deg,#f0b90b14,#00c2ff09)}.gp-save-set-head strong{display:block;color:#fff;font-size:18px}.gp-save-set-head span{display:block;margin-top:4px;color:#eefaff9e;font-size:12px}.gp-save-set-body{padding:16px 18px;display:grid;gap:14px}.gp-save-set-body label{display:grid;gap:8px;color:#eefaff9e;font-size:12px;font-weight:800}.gp-save-set-body input{width:100%;min-height:44px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:#090e19;color:#f8fafc;padding:10px 12px;font-size:14px;outline:none}.gp-save-set-body input:focus{border-color:#f0b90bad;box-shadow:0 0 0 3px #f0b90b1f}.gp-save-set-footer{display:flex;justify-content:flex-end;gap:10px;padding:0 18px 18px}.gp-save-set-modal .gp-script-primary{background:#f0b90b;border-color:#f0b90b;color:#101318;text-align:center;font-weight:900}.gp-save-set-modal .gp-script-secondary{background:#111827;border-color:#ffffff1f;color:#dbeafe;text-align:center;font-weight:800}@media(max-height:760px){.gp-saved-set-list{max-height:118px!important}}@media(max-width:640px){.gp-saved-sets-controls--compact,.gp-save-set-footer{grid-template-columns:1fr!important;flex-direction:column}.gp-save-set-footer button{width:100%}}:root{--gp-safe-bottom: env(safe-area-inset-bottom, 0px);--gp-safe-top: env(safe-area-inset-top, 0px);--gp-header-mobile: 46px;--gp-bottom-nav: 62px}html,body,#app{max-width:100%;min-width:0;overscroll-behavior:none}body.terminal-active,body.gp-terminal-active{overflow:hidden!important;touch-action:manipulation}img,svg,canvas,video{max-width:100%}button,select,input,textarea{font:inherit;min-width:0}.header,.timeframes,.main,.chart-container,.chart-area,.analytics,.sidebar,.tools-panel,.chart-settings-panel,.watchlist-panel{min-width:0!important}.chart-area canvas,.cvd-container canvas,.orderbook-heatmap,.volume-bubbles{max-width:100%!important;max-height:100%!important}.selector__label,.btn,.tv-top-tool,.tool-row strong,.tool-row span,.metric__value,.watchlist-row,.gp-auth-profile-btn{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media(max-width:1280px){.header{gap:8px!important;padding-inline:10px!important}.header__logo span{max-width:180px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.selector__trigger,.btn,.tv-top-tool{min-height:34px}.selector{flex:0 1 auto}#symbol-selector .selector__label{max-width:140px}#exchange-selector .selector__label{max-width:110px}}@media(min-width:769px)and (max-width:1100px){:root{--sidebar-width: min(360px, 42vw);--analytics-height: 72px}.header{height:48px!important;flex-wrap:nowrap!important}.header__logo span{max-width:140px}#symbol-selector .selector__label{max-width:120px}.timeframes{height:38px!important}.timeframes__scroll{padding-left:8px!important}.timeframes__tools{display:flex!important;max-width:54vw;overflow-x:auto;scrollbar-width:none}.timeframes__tools::-webkit-scrollbar{display:none}.main{height:calc(var(--gp-vh, 100vh) - 48px - 38px)!important;overflow:hidden!important}.analytics{grid-template-columns:repeat(5,minmax(0,1fr))!important;min-height:64px!important;padding:8px!important}.metric{padding:6px!important}.metric__value{font-size:13px!important}.sidebar{width:min(360px,42vw)!important}}@media(max-width:768px){:root{--header-height: var(--gp-header-mobile);--toolbar-height: 0px;--analytics-height: 68px}html,body,#app{height:var(--gp-vh, 100dvh)!important;overflow:hidden!important}body:not(.terminal-active):not(.gp-terminal-active){overflow-y:auto!important;overscroll-behavior-y:auto}.header{height:calc(var(--gp-header-mobile) + var(--gp-safe-top))!important;min-height:calc(var(--gp-header-mobile) + var(--gp-safe-top))!important;padding:var(--gp-safe-top) 8px 0 8px!important;gap:6px!important;flex-wrap:nowrap!important;overflow:visible!important;z-index:9000!important}.header__logo{flex:0 0 auto!important;gap:5px!important}.header__logo-img{width:28px!important;height:28px!important}.header__logo span{display:none!important}#exchange-selector,#symbol-selector{flex:1 1 0!important;min-width:0!important;max-width:none!important}#exchange-selector .selector__trigger,#symbol-selector .selector__trigger{width:100%!important;height:32px!important;min-height:32px!important;padding:4px 7px!important;border-radius:10px!important}#exchange-selector .selector__label,#symbol-selector .selector__label{max-width:100%!important;font-size:11px!important}.btn--chart-settings{display:none!important}.header__timeframe{display:block!important;flex:0 0 58px!important;width:58px!important;height:32px!important;min-height:32px!important;margin-left:0!important;padding:4px 5px!important;font-size:11px!important;border-radius:10px!important}.header__controls{flex:0 0 auto!important;margin-left:0!important;gap:4px!important}.header__controls .btn{width:32px!important;min-width:32px!important;height:32px!important;min-height:32px!important;padding:0!important;border-radius:10px!important;font-size:0!important}.header__controls .btn--toolbox:before{content:"+";font-size:18px;font-weight:900}#settings-btn:before{content:"⚙";font-size:15px}#fullscreen-btn:before{content:"⛶";font-size:15px}.timeframes{display:none!important}.main{height:calc(var(--gp-vh, 100dvh) - var(--gp-header-mobile) - var(--gp-safe-top) - var(--gp-bottom-nav) - var(--gp-safe-bottom))!important;min-height:0!important;overflow:hidden!important}.chart-container{height:100%!important;overflow:hidden!important;margin-left:0!important;padding-bottom:0!important}.chart-area{flex:1 1 auto!important;min-height:220px!important;height:auto!important;overflow:hidden!important}.cvd-container{flex:0 0 48px!important;height:48px!important;min-height:48px!important;max-height:48px!important}.analytics{flex:0 0 68px!important;min-height:68px!important;max-height:68px!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:4px!important;padding:5px!important;overflow:hidden!important}.metric{min-width:0!important;padding:5px 4px!important;gap:2px!important}.metric__label{font-size:7px!important;letter-spacing:.1px!important}.metric__value{font-size:10px!important;line-height:1.15!important}.bottom-nav{display:flex!important;height:calc(var(--gp-bottom-nav) + var(--gp-safe-bottom))!important;min-height:calc(var(--gp-bottom-nav) + var(--gp-safe-bottom))!important;padding:4px 4px var(--gp-safe-bottom) 4px!important;z-index:9200!important}.bottom-nav__btn{flex:1 1 20%!important;min-width:0!important;height:54px!important;padding:5px 2px!important;border-radius:12px!important}.bottom-nav__icon{font-size:18px!important;line-height:1!important}.bottom-nav__label{font-size:9px!important;line-height:1!important}.sidebar{position:fixed!important;inset:calc(var(--gp-header-mobile) + var(--gp-safe-top)) 0 calc(var(--gp-bottom-nav) + var(--gp-safe-bottom)) 0!important;width:100vw!important;height:auto!important;max-width:100vw!important;transform:translate(105%)!important;right:auto!important;left:0!important;bottom:calc(var(--gp-bottom-nav) + var(--gp-safe-bottom))!important;z-index:9100!important;transition:transform .24s ease!important}.sidebar.open,.sidebar.active{transform:translate(0)!important;right:auto!important}.orderbook__content,#levels-summary{min-height:0!important;overflow:auto!important;-webkit-overflow-scrolling:touch}.tools-panel,.chart-settings-panel,.watchlist-panel{position:fixed!important;top:calc(var(--gp-header-mobile) + var(--gp-safe-top) + 6px)!important;right:8px!important;left:8px!important;width:auto!important;max-width:none!important;max-height:calc(var(--gp-vh, 100dvh) - var(--gp-header-mobile) - var(--gp-safe-top) - var(--gp-bottom-nav) - var(--gp-safe-bottom) - 18px)!important;overflow:hidden!important;border-radius:18px!important;z-index:9300!important}.tools-panel__body,.chart-settings-panel__body,.watchlist-panel__body{overflow-y:auto!important;-webkit-overflow-scrolling:touch;max-height:calc(var(--gp-vh, 100dvh) - var(--gp-header-mobile) - var(--gp-safe-top) - var(--gp-bottom-nav) - var(--gp-safe-bottom) - 98px)!important}.tool-row,.chart-settings-row,.watchlist-row{grid-template-columns:1fr auto!important;min-width:0!important;gap:8px!important}.tool-row span,.chart-settings-row span{white-space:normal!important;line-height:1.25!important}.selector__dropdown{position:fixed!important;top:calc(var(--gp-header-mobile) + var(--gp-safe-top) + 4px)!important;left:8px!important;right:8px!important;width:auto!important;min-width:0!important;max-height:min(64dvh,430px)!important;overflow:auto!important;z-index:9400!important}.selector__option,.selector__search,.tool-toggle,.chart-theme-switch__btn{min-height:42px!important}.settings-panel{width:min(420px,calc(100vw - 20px))!important;max-height:calc(var(--gp-vh, 100dvh) - 30px)!important}.settings-panel__body{overflow-y:auto!important;-webkit-overflow-scrolling:touch}.info-panel__content{bottom:calc(var(--gp-bottom-nav) + var(--gp-safe-bottom))!important;max-height:calc(var(--gp-vh, 100dvh) - var(--gp-header-mobile) - var(--gp-bottom-nav) - var(--gp-safe-top) - var(--gp-safe-bottom))!important}}@media(max-width:480px){:root{--gp-header-mobile: 44px;--gp-bottom-nav: 60px}.header{padding-inline:6px!important;gap:4px!important}.header__logo-img{width:26px!important;height:26px!important}#exchange-selector{flex:0 1 84px!important}#symbol-selector{flex:1 1 106px!important}.header__timeframe{flex-basis:54px!important;width:54px!important}.header__controls .btn{width:30px!important;min-width:30px!important;height:30px!important;min-height:30px!important}.chart-area{min-height:190px!important}.analytics{grid-template-columns:repeat(3,minmax(0,1fr))!important;flex-basis:74px!important;min-height:74px!important;max-height:74px!important}.analytics .metric:nth-child(n+4){display:none!important}.tool-row,.chart-settings-row,.watchlist-row,.gp-saved-sets-controls--compact,.gp-save-set-footer{grid-template-columns:1fr!important}.tool-toggle,.gp-save-set-footer button{width:100%!important}.gp-save-set-overlay,.gp-indicator-picker-overlay{align-items:flex-start!important;padding:calc(var(--gp-safe-top) + 12px) 10px 10px!important;overflow-y:auto!important}.gp-save-set-modal,.gp-indicator-picker-modal{width:100%!important;max-height:calc(var(--gp-vh, 100dvh) - var(--gp-safe-top) - 24px)!important}}@media(max-width:920px)and (orientation:landscape){:root{--gp-header-mobile: 40px;--gp-bottom-nav: 50px;--analytics-height: 48px}.header{height:calc(var(--gp-header-mobile) + var(--gp-safe-top))!important;min-height:calc(var(--gp-header-mobile) + var(--gp-safe-top))!important}.bottom-nav__btn{height:42px!important}.bottom-nav__label{display:none!important}.bottom-nav__icon{font-size:18px!important}.cvd-container{flex-basis:38px!important;height:38px!important;min-height:38px!important;max-height:38px!important}.analytics{flex-basis:46px!important;min-height:46px!important;max-height:46px!important;grid-template-columns:repeat(5,minmax(0,1fr))!important}.metric{padding:3px 4px!important}.metric__label{font-size:7px!important}.metric__value{font-size:9px!important}}.gp-script-manager{grid-template-rows:auto auto auto auto!important}.gp-settings-card{overflow:hidden!important}.gp-section-head--with-action{align-items:center}.gp-saved-sets-card{position:relative;z-index:0;max-height:255px!important;overflow:hidden!important}.gp-saved-set-list--compact{max-height:96px!important;overflow-y:auto!important;padding:10px 14px 12px!important;scrollbar-width:thin}.gp-saved-set-list--compact .gp-saved-set-item{min-height:44px}.gp-saved-set-list--compact .gp-saved-set-main b{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.gp-saved-sets-browser-overlay{position:fixed;inset:0;z-index:100003;display:flex;align-items:center;justify-content:center;padding:20px;background:#000000bd;-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px)}.gp-saved-sets-browser-modal{width:min(720px,94vw);max-height:min(760px,92vh);display:flex;flex-direction:column;overflow:hidden;border-radius:22px;border:1px solid rgba(240,185,11,.24);background:linear-gradient(145deg,#0a0e18fa,#0e121efa);box-shadow:0 30px 90px #0000009e,0 0 0 1px #ffffff09 inset}.gp-saved-sets-browser-head{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px 18px;border-bottom:1px solid rgba(255,255,255,.08);background:linear-gradient(90deg,#f0b90b14,#00c2ff09)}.gp-saved-sets-browser-head strong{display:block;color:#fff;font-size:18px}.gp-saved-sets-browser-head span{display:block;margin-top:4px;color:#eefaff9e;font-size:12px}.gp-saved-sets-browser-list{flex:1 1 auto;min-height:180px;overflow-y:auto;display:flex;flex-direction:column;gap:10px;padding:16px 18px;scrollbar-width:thin}.gp-saved-set-item--browser{grid-template-columns:minmax(0,1fr) auto!important;padding:10px!important}.gp-saved-set-actions--browser{display:flex;align-items:center;gap:8px}.gp-saved-set-actions--browser .gp-script-secondary{min-height:34px;padding:0 14px;border-radius:10px}.gp-saved-sets-browser-footer{display:grid;grid-template-columns:1fr 1fr;gap:10px;padding:14px 18px 18px;border-top:1px solid rgba(255,255,255,.08)}.gp-saved-sets-browser-footer button{min-height:44px;border-radius:13px}@media(max-width:720px){.gp-saved-sets-card{order:4!important;max-height:none!important;width:100%!important}.gp-script-actions-main{order:5!important}.gp-advanced-script{order:6!important}.gp-script-editor__output{order:7!important}.gp-saved-set-list--compact{max-height:130px!important}.gp-saved-sets-browser-overlay{align-items:flex-start;padding:max(8px,env(safe-area-inset-top)) 8px max(12px,env(safe-area-inset-bottom))}.gp-saved-sets-browser-modal{width:calc(100vw - 16px);max-height:calc(100dvh - 20px);border-radius:18px}.gp-saved-sets-browser-head{padding:14px}.gp-saved-set-item--browser{grid-template-columns:1fr!important}.gp-saved-set-actions--browser{display:grid;grid-template-columns:1fr 44px 44px}.gp-saved-sets-browser-footer{grid-template-columns:1fr;padding:12px 14px 14px}}.home-page{background:radial-gradient(circle at 62% 32%,rgba(0,113,255,.26),transparent 30%),radial-gradient(circle at 86% 10%,rgba(0,238,255,.16),transparent 23%),radial-gradient(circle at 28% 70%,rgba(0,70,255,.18),transparent 28%),linear-gradient(180deg,#02030b,#040817 58%,#050916)!important;color:#fff!important;font-family:Inter,Manrope,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif!important}.gp-home-v2{position:relative;min-height:100vh;padding:0 48px 46px;overflow:hidden}.gp-home-v2:before{content:"";position:absolute;inset:86px -18% auto 18%;height:630px;background:radial-gradient(ellipse at center,rgba(0,110,255,.46),transparent 58%),linear-gradient(120deg,transparent 0 40%,rgba(0,144,255,.55) 49%,rgba(0,255,232,.22) 53%,transparent 62%);filter:blur(10px);transform:rotate(-8deg);opacity:.9;pointer-events:none}.gp-nav-v2{height:74px!important;padding:0 30px!important;border-bottom:none!important;background:#02030be0!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important}.gp-brand-v2{gap:12px!important;letter-spacing:0!important;font-size:21px!important}.gp-brand-v2 .home-brand-logo{width:39px!important;height:39px!important;border:1px solid rgba(0,174,255,.45);box-shadow:0 0 22px #007cff73!important}.gp-brand-v2 span{color:#fff;font-weight:900}.gp-brand-v2 b{color:#008cff;font-weight:950}.gp-menu-v2{gap:26px!important;font-size:14px!important;font-weight:800!important;color:#fff!important}.gp-menu-v2 span{padding:11px 14px;border-radius:10px;letter-spacing:0!important}.gp-menu-v2 span.active{background:linear-gradient(135deg,#0060fff0,#00d4ff9e);box-shadow:0 0 24px #0067ff85}.gp-menu-v2 em{font-style:normal;opacity:.75}.gp-actions-v2 .home-btn{border-radius:10px!important;padding:14px 24px!important;font-size:14px!important;letter-spacing:0!important}.gp-actions-v2 .home-btn-secondary{background:#050a1ec7!important;border:1px solid rgba(0,94,255,.45)!important}.gp-actions-v2 .home-btn-primary{color:#fff!important;background:linear-gradient(135deg,#0661ff,#10f0d0)!important;box-shadow:0 0 32px #0082ff6b!important}.gp-special-banner{position:relative;z-index:2;width:max-content;margin:18px auto 0;padding:8px 24px;border-radius:9px;color:#8ed9ff;border:1px solid rgba(0,255,180,.55);background:#020a1cb8;box-shadow:0 0 22px #00c8ff2e,inset 0 0 18px #0078ff1f;font-size:17px}.gp-special-banner strong{color:#7fffe7;font-weight:700}.gp-hero-v2{position:relative;z-index:1;max-width:none!important;margin:0!important;padding:38px 0 26px!important;grid-template-columns:39% 61%!important;gap:18px!important}.gp-kicker-v2{background:#0a1328d1!important;border:1px solid rgba(95,162,255,.44)!important;color:#fff!important;padding:12px 18px!important;border-radius:8px!important;letter-spacing:.02em!important;font-size:14px!important;font-weight:500!important}.gp-kicker-v2:before{display:none!important}.gp-title-v2{margin:22px 0 0!important;font-size:clamp(56px,5.7vw,88px)!important;line-height:1.08!important;letter-spacing:-.055em!important;font-weight:900!important;text-shadow:0 12px 40px rgba(0,0,0,.34)}.gp-title-v2 span{background:linear-gradient(90deg,#0879ff,#09e8d2);-webkit-background-clip:text;background-clip:text;color:transparent!important;text-shadow:none!important}.gp-subtitle-v2{max-width:630px!important;margin-top:22px!important;color:#ffffffdb!important;font-size:20px!important;line-height:1.65!important}.gp-hero-actions-v2{margin-top:34px!important;gap:24px!important}.gp-hero-actions-v2 .home-btn{border-radius:12px!important;padding:18px 34px!important;font-size:18px!important;color:#fff!important}.gp-demo-btn{background:#03081bb8!important;border:1px solid rgba(63,122,255,.38)!important;min-width:190px}.gp-play{display:inline-grid;place-items:center;width:27px;height:27px;margin-right:11px;border:2px solid #fff;border-radius:999px;font-size:13px}.gp-social-proof{display:flex;align-items:center;gap:22px;margin-top:38px;color:#ffffffd9;font-size:18px}.gp-avatars{display:flex}.gp-avatars i{width:38px;height:38px;margin-left:-7px;border-radius:999px;border:2px solid rgba(255,255,255,.85);background:linear-gradient(135deg,#f0c28a,#6ee7ff 48%,#111827)}.gp-avatars i:first-child{margin-left:0}.gp-terminal-stage{position:relative;min-height:590px;perspective:1200px}.gp-light-ring{position:absolute;inset:185px -5% auto 0;height:290px;background:radial-gradient(ellipse,rgba(0,100,255,.65),rgba(0,214,255,.16) 38%,transparent 66%);filter:blur(9px);transform:rotate(-14deg)}.gp-light-ring:before{content:"";position:absolute;inset:45% -3% auto 9%;height:55px;border:2px solid rgba(0,154,255,.8);border-radius:50%;transform:rotate(-8deg);filter:blur(1px);box-shadow:0 0 35px #0084ffe6}.gp-terminal-card{position:relative;z-index:2;width:min(1050px,100%);min-height:555px;margin:22px 0 0 auto;background:#040918e0;border:1px solid rgba(0,130,255,.58);border-radius:12px;box-shadow:0 0 18px #007dffbf,0 0 55px #006cff61,0 30px 90px #0000009e;transform:rotate(-4deg) skew(-3deg);transform-origin:center;overflow:hidden}.gp-terminal-toolbar{height:54px;display:flex;align-items:center;gap:14px;padding:0 18px;border-bottom:1px solid rgba(75,138,255,.18);background:#08112af5}.gp-mini-brand{display:flex;align-items:center;gap:8px;color:#4fe7ff;font-size:11px;font-weight:800;min-width:145px}.gp-mini-brand img{width:26px;height:26px;border-radius:7px}.gp-tabs{display:flex;align-items:center;gap:12px;flex:1;white-space:nowrap;font-size:10px;color:#ffffffb3}.gp-tabs b{color:#fff;background:#0067ff6b;padding:6px 9px;border-radius:6px}.gp-terminal-toolbar button{padding:9px 20px;border-radius:7px;color:#fff;border:1px solid rgba(40,109,255,.7);background:linear-gradient(135deg,#0b45d9,#0c8cff)}.gp-terminal-content{display:grid;grid-template-columns:1fr 270px;gap:18px;padding:18px}.gp-chart-area{min-width:0}.gp-chart-top{display:flex;align-items:center;gap:14px;color:#ffffffb8;font-size:11px;margin-bottom:10px}.gp-chart-top b{color:#fff}.gp-chart-grid{position:relative;height:292px;overflow:hidden;border-radius:8px;background:linear-gradient(180deg,#07122acc,#030816c7),repeating-linear-gradient(90deg,rgba(255,255,255,.08) 0 1px,transparent 1px 82px),repeating-linear-gradient(0deg,rgba(255,255,255,.07) 0 1px,transparent 1px 52px)}.gp-volume-profile{position:absolute;left:6px;top:34px;width:150px;height:220px;background:repeating-linear-gradient(0deg,rgba(255,188,0,.95) 0 5px,rgba(0,122,255,.85) 5px 9px,transparent 9px 14px);clip-path:polygon(0 0,86% 5%,55% 12%,90% 19%,42% 26%,96% 34%,52% 44%,82% 54%,46% 64%,78% 75%,38% 86%,62% 100%,0 100%);filter:drop-shadow(0 0 12px rgba(255,166,0,.45))}.gp-candle-layer{position:absolute;left:145px;right:20px;bottom:32px;height:210px;display:flex;align-items:end;gap:23px}.gp-candle-layer i{position:relative;display:block;width:9px;height:44px;border-radius:4px;background:#0fffb7;box-shadow:0 0 15px #00ffb7a6;transform:translateY(calc(var(--n, 0) * -9px))}.gp-candle-layer i:before{content:"";position:absolute;left:4px;top:-15px;width:1px;height:calc(100% + 30px);background:currentColor;opacity:.75}.gp-candle-layer .down{background:#ff315f;color:#ff315f;box-shadow:0 0 15px #ff315fa6}.gp-candle-layer .tall{height:74px}.gp-candle-layer .small{height:30px}.gp-candle-layer i:nth-child(2){--n:1}.gp-candle-layer i:nth-child(3){--n:2}.gp-candle-layer i:nth-child(4){--n:3}.gp-candle-layer i:nth-child(5){--n:4}.gp-candle-layer i:nth-child(6){--n:5}.gp-candle-layer i:nth-child(7){--n:7}.gp-candle-layer i:nth-child(8){--n:8}.gp-candle-layer i:nth-child(9){--n:10}.gp-candle-layer i:nth-child(10){--n:9}.gp-candle-layer i:nth-child(11){--n:11}.gp-candle-layer i:nth-child(12){--n:13}.gp-candle-layer i:nth-child(13){--n:15}.gp-candle-layer i:nth-child(14){--n:14}.gp-candle-layer i:nth-child(15){--n:17}.gp-candle-layer i:nth-child(16){--n:19}.gp-candle-layer i:nth-child(17){--n:18}.gp-candle-layer i:nth-child(18){--n:20}.gp-candle-layer i:nth-child(19){--n:21}.gp-candle-layer i:nth-child(20){--n:22}.gp-bubbles span{position:absolute;width:28px;height:28px;display:grid;place-items:center;border-radius:999px;font-size:12px;font-weight:900;color:#fff;background:#0969ff;box-shadow:0 0 12px #0075ffe6}.gp-bubbles span:nth-child(2n){background:#ff315f;box-shadow:0 0 12px #ff315fe6}.gp-bubbles span:nth-child(1){left:56%;top:38%}.gp-bubbles span:nth-child(2){left:61%;top:32%}.gp-bubbles span:nth-child(3){left:66%;top:36%}.gp-bubbles span:nth-child(4){left:72%;top:27%}.gp-bubbles span:nth-child(5){left:79%;top:24%}.gp-bubbles span:nth-child(6){left:84%;top:20%}.gp-bubbles span:nth-child(7){left:91%;top:28%}.gp-bubbles span:nth-child(8){left:96%;top:18%}.gp-chart-times{display:flex;justify-content:space-between;color:#ffffff73;font-size:11px;margin:7px 2px 12px 4px}.gp-metric-row{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}.gp-metric-row div{padding:12px;border-radius:8px;background:#08122adb;border:1px solid rgba(72,122,255,.16)}.gp-metric-row small{color:#ffffff8c;font-size:10px;display:block}.gp-metric-row b{color:#0fa;font-size:17px}.gp-flow-panel{padding:18px;border-radius:10px;background:#070e23eb;border:1px solid rgba(79,134,255,.24)}.gp-flow-panel h3{font-size:15px;margin-bottom:22px;display:flex;justify-content:space-between}.gp-flow-panel label{display:flex;justify-content:space-between;color:#ffffffc7;font-size:12px;margin:15px 0 7px}.gp-flow-panel>i{display:block;height:5px;border-radius:999px;background:#ffffff1f;position:relative}.gp-flow-panel>i:before{content:"";position:absolute;left:0;top:0;bottom:0;width:var(--w);border-radius:inherit;background:linear-gradient(90deg,#0075ff,#00e5ff);box-shadow:0 0 10px #00aeffb3}.gp-select{margin-top:22px;padding:12px;border-radius:8px;border:1px solid rgba(255,255,255,.11);color:#ffffffb3;font-size:12px}.gp-select strong{display:block;color:#fff;margin-top:8px}.gp-panel-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:14px}.gp-panel-actions button,.gp-news-card button{color:#fff;border:0;border-radius:7px;background:linear-gradient(135deg,#0862e8,#0e8dff);padding:9px;font-size:12px}.gp-panel-actions button:last-child{background:#ffffff14}.gp-news-card{margin-top:22px;padding:16px;border-radius:10px;background:#030d1de0;border:1px solid rgba(72,122,255,.18)}.gp-news-card small{color:#46ffbc;display:block;margin-bottom:12px}.gp-news-card strong{color:#1dff8c;display:block;margin-bottom:14px}.gp-stat-strip,.gp-trusted-strip{position:relative;z-index:2;border:1px solid rgba(0,91,255,.24);background:#050c1ec7;border-radius:14px;box-shadow:inset 0 0 18px #0050ff14}.gp-stat-strip{display:grid;grid-template-columns:repeat(6,1fr);gap:0;margin:16px 0 28px;padding:22px 26px}.gp-stat-strip div{display:flex;flex-direction:column;align-items:center;gap:4px;min-height:52px;border-right:1px solid rgba(255,255,255,.12)}.gp-stat-strip div:last-child{border-right:0}.gp-stat-strip strong{font-size:27px;color:#fff}.gp-stat-strip span{font-size:12px;color:#ffffffad}.gp-trusted-strip{text-align:center;padding:18px 32px;margin-bottom:24px}.gp-trusted-strip p{margin:-5px 0 18px;color:#ffffffbd;letter-spacing:.26em;font-size:14px}.gp-trusted-strip div{display:flex;align-items:center;justify-content:space-around;gap:30px;color:#ffffffb8;font-size:25px;font-weight:900}.gp-tools-section{max-width:none!important;padding:0 0 18px!important}.gp-feature-grid-v2{grid-template-columns:repeat(8,1fr)!important;gap:14px!important}.gp-feature-grid-v2 .home-feature-card{min-height:138px;padding:20px 18px!important;border-radius:10px!important;background:#070e23d1!important;border:1px solid rgba(61,119,255,.25)!important}.gp-feature-grid-v2 .home-feature-card h3{font-size:15px!important;margin-left:46px;min-height:32px;position:relative}.gp-feature-grid-v2 .home-feature-card h3:before{content:"";position:absolute;left:-46px;top:-8px;width:34px;height:34px;border-radius:8px;background:radial-gradient(circle,#00ffd1d9,#0054ff73);box-shadow:0 0 17px #00aeff59}.gp-feature-grid-v2 .home-feature-card p{color:#ffffffad!important;font-size:13px!important;line-height:1.5;min-height:55px}.gp-feature-grid-v2 .home-feature-card a{color:#00d9ff;font-size:15px;font-weight:800}@media(max-width:1180px){.gp-home-v2{padding:0 22px 36px}.gp-hero-v2{grid-template-columns:1fr!important}.gp-terminal-card{margin-left:0;transform:none;width:100%}.gp-feature-grid-v2{grid-template-columns:repeat(4,1fr)!important}.gp-stat-strip{grid-template-columns:repeat(3,1fr);row-gap:18px}}@media(max-width:760px){.gp-home-v2{padding:0 16px 28px}.gp-menu-v2{display:none!important}.gp-special-banner{width:auto;text-align:center;font-size:13px}.gp-title-v2{font-size:clamp(42px,14vw,58px)!important}.gp-subtitle-v2{font-size:16px!important}.gp-terminal-content{grid-template-columns:1fr}.gp-flow-panel{display:none}.gp-terminal-stage{min-height:auto}.gp-terminal-card{min-height:0}.gp-tabs{display:none}.gp-metric-row{grid-template-columns:repeat(2,1fr)}.gp-stat-strip{grid-template-columns:1fr}.gp-stat-strip div{border-right:0;border-bottom:1px solid rgba(255,255,255,.11);padding-bottom:12px}.gp-trusted-strip div{flex-wrap:wrap;font-size:18px}.gp-feature-grid-v2{grid-template-columns:1fr!important}}.gp-terminal-stage-image{min-height:650px;display:flex;align-items:center;justify-content:flex-end;perspective:1400px}.gp-terminal-stage-image .gp-light-ring{inset:118px -10% auto 3%;height:440px;opacity:.95;transform:rotate(-10deg)}.gp-terminal-stage-image .gp-light-ring:before{display:none}.gp-terminal-tv-image{position:relative;z-index:2;width:min(1080px,105%);max-width:none;height:auto;object-fit:contain;display:block;margin-right:-26px;filter:drop-shadow(0 0 18px rgba(0,132,255,.78)) drop-shadow(0 34px 80px rgba(0,0,0,.72));border-radius:18px;transform:rotate(-1.5deg) skew(-1.2deg);transform-origin:center right}@media(max-width:1180px){.gp-terminal-stage-image{min-height:auto;justify-content:center;margin-top:20px}.gp-terminal-tv-image{width:100%;margin-right:0;transform:none}}@media(max-width:760px){.gp-terminal-stage-image{margin:22px -10px 0}.gp-terminal-tv-image{width:118%;border-radius:12px}}.gp-monitor-stage{min-height:585px!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;padding:18px 0 44px 10px!important}.gp-monitor-stage .gp-light-ring{inset:130px -9% auto -4%!important;height:420px!important;background:radial-gradient(ellipse at 55% 45%,rgba(0,115,255,.62),rgba(0,231,255,.18) 36%,transparent 68%),linear-gradient(120deg,transparent,rgba(0,123,255,.35),transparent)!important;filter:blur(16px)!important;transform:rotate(-6deg)!important}.gp-monitor{position:relative;z-index:3;width:min(1120px,100%);aspect-ratio:16 / 8.15;margin:18px 0 0 auto;padding:18px 18px 36px;border-radius:26px 26px 20px 20px;background:linear-gradient(180deg,#ffffff21,#ffffff08 9%,#0000002e),linear-gradient(145deg,#101521,#03060f 58%,#01040b);border:2px solid rgba(255,255,255,.18);box-shadow:inset 0 0 0 2px #000000e0,inset 0 -28px 55px #0000009e,0 0 0 1px #00a0ff33,0 0 42px #0077ff9e,0 38px 105px #000000b3;transform:perspective(1300px) rotateY(-7deg) rotateX(2deg) rotate(-1deg);transform-origin:center right;overflow:visible}.gp-monitor:before{content:"";position:absolute;inset:10px 14px 31px;border-radius:18px;border-left:5px solid rgba(0,149,255,.62);border-right:5px solid rgba(0,149,255,.34);box-shadow:inset 0 0 38px #009dff2e,0 0 24px #0077ff47;pointer-events:none;z-index:5}.gp-monitor-screen{position:relative;height:100%;border-radius:17px;overflow:hidden;background:#020613;border:1px solid rgba(0,195,255,.28);box-shadow:inset 0 0 42px #000000bf}.gp-monitor-screen:after{content:"";position:absolute;inset:0;background:linear-gradient(110deg,rgba(255,255,255,.12),transparent 18%,transparent 72%,rgba(255,255,255,.06)),radial-gradient(circle at 50% -5%,rgba(255,255,255,.13),transparent 32%);mix-blend-mode:screen;opacity:.38;pointer-events:none}.gp-monitor .gp-terminal-tv-image{display:block!important;width:100%!important;height:100%!important;object-fit:cover!important;object-position:center!important;border-radius:14px!important;filter:saturate(1.08) contrast(1.05) brightness(.9)!important;transform:none!important}.gp-monitor-chin{position:absolute;left:8%;right:8%;bottom:7px;height:16px;border-radius:0 0 20px 20px;background:linear-gradient(180deg,#ffffff0d,#000000b8);opacity:.85}.gp-monitor-stand{position:absolute;left:50%;bottom:-74px;width:210px;height:74px;transform:translate(-50%);background:linear-gradient(180deg,#111827,#050811 70%,transparent 71%);clip-path:polygon(35% 0,65% 0,76% 72%,94% 92%,6% 92%,24% 72%);filter:drop-shadow(0 18px 28px rgba(0,0,0,.75));opacity:.88}.gp-social-proof{gap:18px!important}.gp-social-proof:after{content:"★★★★★ 4.9/5";color:#ffd34d;font-size:15px;letter-spacing:.03em;text-shadow:0 0 14px rgba(255,211,77,.28)}.gp-avatars{align-items:center}.gp-avatars img,.gp-avatars span{width:42px;height:42px;margin-left:-8px;border-radius:999px;border:2px solid rgba(255,255,255,.9);box-shadow:0 0 14px #00c8ff38;background:#0a1228;object-fit:cover}.gp-avatars img:first-child{margin-left:0}.gp-avatars span{display:grid;place-items:center;color:#fff;font-weight:900;background:linear-gradient(135deg,#1d4ed8,#0fd6c6)}.gp-avatars i{display:none!important}.gp-feature-grid-v2 .home-feature-card{position:relative;overflow:hidden;padding:15px 14px 15px 82px!important;min-height:148px!important;background:linear-gradient(180deg,#08132deb,#050c1fe0)!important;box-shadow:inset 0 0 18px #0071ff0d,0 16px 34px #0000002e!important}.gp-feature-grid-v2 .home-feature-card:after{content:"";position:absolute;inset:-45% -35% auto auto;width:115px;height:115px;border-radius:50%;background:radial-gradient(circle,rgba(0,230,255,.2),transparent 62%);pointer-events:none}.gp-feature-grid-v2 .home-feature-card .gp-tool-icon{position:absolute;left:15px;top:17px;width:52px;height:52px;border-radius:13px;filter:drop-shadow(0 0 14px rgba(0,190,255,.34))}.gp-feature-grid-v2 .home-feature-card h3{margin-left:0!important;min-height:auto!important;line-height:1.24!important;font-size:16px!important;color:#fff!important}.gp-feature-grid-v2 .home-feature-card h3:before{display:none!important}.gp-feature-grid-v2 .home-feature-card p{min-height:46px!important;margin-top:8px!important;font-size:12px!important}.gp-feature-grid-v2 .home-feature-card a{position:absolute;left:14px;bottom:14px}@media(max-width:1180px){.gp-monitor{width:100%;transform:none;padding:12px 12px 28px}.gp-monitor-stand{display:none}.gp-monitor-stage{min-height:auto!important;padding-bottom:15px!important}}@media(max-width:760px){.gp-social-proof{flex-wrap:wrap;font-size:14px}.gp-social-proof:after{width:100%;font-size:13px}.gp-feature-grid-v2 .home-feature-card{padding-left:82px!important}}.gp-features-menu-trigger{position:relative;z-index:50}.gp-features-dropdown{position:absolute;top:44px;left:0;width:255px;padding:10px;border:1px solid rgba(46,124,255,.34);border-radius:14px;background:linear-gradient(180deg,#050e23fa,#030816fa);box-shadow:0 18px 60px #00000073,0 0 28px #007fff2e;display:none;-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px)}.gp-features-menu-trigger:hover .gp-features-dropdown{display:grid;gap:4px}.gp-features-dropdown a{display:flex;align-items:center;color:#dbeaff!important;text-decoration:none;padding:11px 12px;border-radius:10px;font-size:13px;font-weight:800;letter-spacing:0;text-transform:none}.gp-features-dropdown a:hover{background:linear-gradient(135deg,#0070ff57,#00e0c729);color:#fff!important}.gp-menu-v2 .gp-features-dropdown a{padding:11px 12px!important}.gp-home-v2{padding-top:86px!important}.gp-tools-section a[href]{cursor:pointer;color:#00e5ff;text-decoration:none}.gp-menu-v2 a.gp-features-direct{color:#fff!important;text-decoration:none;display:inline-flex;align-items:center;gap:4px;padding:12px 20px;border-radius:12px;background:linear-gradient(135deg,#0b68ff,#0bd5d1);box-shadow:0 0 28px #0084ff6b;font-weight:900}.gp-features-menu-trigger,.gp-features-dropdown{display:none!important}.gp-social-proof-text-only{gap:14px!important}.gp-social-proof-text-only .gp-avatars{display:none!important}.gp-menu-v2>a:not(.gp-features-direct),.gp-menu-v2>a:not(.gp-features-direct):visited,.home-menu>a:not(.gp-features-direct),.home-menu>a:not(.gp-features-direct):visited{color:#fff!important;text-decoration:none!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;padding:11px 14px!important;border-radius:10px!important;letter-spacing:0!important;font-weight:800!important;line-height:1!important}.gp-menu-v2>a:not(.gp-features-direct):hover,.home-menu>a:not(.gp-features-direct):hover{color:#fff!important;text-decoration:none!important;background:#0a25537a!important;box-shadow:0 0 18px #0078ff29!important}.home-menu a,.gp-menu-v2>a:not(.gp-features-direct){display:inline-flex!important;align-items:center!important;justify-content:center!important;padding:11px 14px!important;border-radius:10px!important;color:#ffffffb8!important;text-decoration:none!important;font-size:12px!important;font-weight:800!important;letter-spacing:.12em!important;text-transform:uppercase!important;line-height:1!important;transition:.18s ease!important}.home-menu a:visited,.gp-menu-v2>a:not(.gp-features-direct):visited{color:#ffffffb8!important;text-decoration:none!important}.home-menu a:hover,.gp-menu-v2>a:not(.gp-features-direct):hover{color:#fff!important;text-decoration:none!important;background:#ffffff0e!important}.gp-menu-v2>a.gp-features-direct,.gp-menu-v2>a.gp-features-direct:visited,.home-menu a.gp-features-direct,.home-menu a.gp-features-direct:visited{color:#fff!important;text-decoration:none!important}#home-visit-profile-btn[hidden]{display:none!important}#home-visit-profile-btn:not([hidden]){display:inline-flex!important;align-items:center!important;justify-content:center!important;opacity:1!important;visibility:visible!important;color:#fff!important;-webkit-text-fill-color:#ffffff!important;background:#050a1ec7!important;border:1px solid rgba(0,94,255,.55)!important;box-shadow:0 0 22px #0082ff2e!important;min-width:122px!important;text-shadow:none!important}#home-visit-profile-btn:not([hidden]):hover{background:linear-gradient(135deg,#0b68ff,#0bd5d1)!important;border-color:#00e6ffc7!important;box-shadow:0 0 28px #009dff5c!important}.gp-upgrade-card{border-color:#00e0c752!important;background:linear-gradient(135deg,#082a569e,#06122adb)!important}.gp-upgrade-card p{color:#ffffffb8;margin:8px 0 14px;line-height:1.45}.gp-upgrade-card .gp-main-action{width:max-content}.home-feature-card--fxbook{border-color:#0084ff47!important;background:linear-gradient(180deg,#0084ff21,#ffffff09)!important}.home-feature-card--fxbook a{cursor:pointer}.home-feature-card--fxbook a:hover{color:#168bff}.gp-social-footer{width:min(1880px,calc(100% - 64px));margin:24px auto 70px;padding:24px 30px;border:1px solid rgba(46,124,255,.26);border-radius:18px;background:radial-gradient(circle at 85% 20%,rgba(0,219,205,.12),transparent 36%),linear-gradient(180deg,#071026eb,#030918e0);box-shadow:0 22px 75px #00000042,inset 0 0 0 1px #ffffff06;display:flex;align-items:center;justify-content:space-between;gap:22px}.gp-social-footer__brand{display:flex;align-items:center;gap:14px;color:#fff}.gp-social-footer__brand img{width:46px;height:46px;border-radius:13px;box-shadow:0 0 24px #00beff3d}.gp-social-footer__brand strong{display:block;font-size:17px;font-weight:950;letter-spacing:.02em}.gp-social-footer__brand span{display:block;margin-top:4px;color:#dceaffa8;font-size:13px;font-weight:700}.gp-social-link{min-height:48px;padding:0 18px;border-radius:13px;border:1px solid rgba(255,255,255,.12);background:#ffffff0a;color:#fff;text-decoration:none;display:inline-flex;align-items:center;gap:11px;font-weight:900;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.gp-social-link:hover{transform:translateY(-2px);border-color:#ff40688c;box-shadow:0 0 24px #ff1e4b2e}.gp-social-icon{width:30px;height:30px;border-radius:999px;display:grid;place-items:center;background:linear-gradient(135deg,#ff174d,#ff4f6d);box-shadow:0 0 18px #ff174d47;font-size:13px;line-height:1}@media(max-width:760px){.gp-social-footer{width:calc(100% - 28px);flex-direction:column;align-items:flex-start;margin-bottom:34px}.gp-social-footer__links,.gp-social-link{width:100%}.gp-social-link{justify-content:center}}.gp-social-footer{display:grid;grid-template-columns:minmax(0,1fr) auto auto;align-items:center;gap:24px;margin:28px 0 0;padding:24px 28px;border:1px solid rgba(45,127,255,.24);border-radius:18px;background:radial-gradient(circle at 10% 0%,rgba(0,179,255,.14),transparent 34%),linear-gradient(135deg,#050e22f0,#020814f5);box-shadow:0 22px 70px #00000047,inset 0 1px #ffffff0a}.gp-social-footer__brand{display:flex;align-items:center;gap:14px;min-width:0}.gp-social-footer__brand img{width:46px;height:46px;border-radius:13px;box-shadow:0 0 26px #00b8ff38;flex:0 0 auto}.gp-social-footer__brand strong{display:block;color:#fff;font-size:18px;letter-spacing:-.2px;line-height:1.15}.gp-social-footer__brand strong b{color:#0ca9ff}.gp-social-footer__brand span{display:block;margin-top:6px;color:#e0ebffad;font-size:13px;line-height:1.45}.gp-social-footer__links{display:flex;align-items:center;gap:12px}.gp-social-link{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:46px;padding:0 18px;border-radius:13px;color:#fff;text-decoration:none;font-weight:900;border:1px solid rgba(255,255,255,.12);background:#ffffff0a;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.gp-social-link:hover{transform:translateY(-2px);border-color:#ff374d8c;box-shadow:0 0 24px #ff374d33}.gp-youtube-link .gp-social-icon{display:grid;place-items:center;width:26px;height:26px;border-radius:999px;background:linear-gradient(135deg,#f03,#ff4b5f);color:#fff;font-size:12px;box-shadow:0 0 20px #ff003347}.gp-social-footer small{color:#d2e1ff8a;font-size:12px;text-align:right;white-space:nowrap}@media(max-width:960px){.gp-social-footer{grid-template-columns:1fr;text-align:center}.gp-social-footer__brand{justify-content:center;flex-direction:column}.gp-social-footer__links{justify-content:center}.gp-social-footer small{text-align:center;white-space:normal}}.gp-social-footer{display:flex;align-items:center;justify-content:space-between;gap:24px;margin:24px 0 0;padding:24px 30px;border:1px solid rgba(42,104,255,.26);border-radius:18px;background:radial-gradient(circle at 12% 20%,rgba(0,132,255,.16),transparent 34%),linear-gradient(180deg,#061027db,#030917eb);box-shadow:0 24px 80px #00000038,inset 0 0 34px #00b1ff0b}.gp-social-footer-copy{display:grid;gap:7px}.gp-social-footer-copy span{color:#ffffffad;font-size:12px;font-weight:900;letter-spacing:.22em}.gp-social-footer-copy strong{color:#fff;font-size:16px;line-height:1.35}.gp-social-links{display:flex;align-items:center;gap:12px;flex-wrap:wrap}.gp-social-link{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:48px;padding:0 20px;border-radius:14px;border:1px solid rgba(255,255,255,.12);color:#fff;text-decoration:none;font-weight:900;letter-spacing:.01em;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}.gp-social-link:hover{transform:translateY(-2px);border-color:#ffffff38}.gp-social-youtube{background:linear-gradient(135deg,#ff0000f0,#ff3453b8);box-shadow:0 0 26px #ff000038}.gp-social-icon{width:26px;height:26px;display:grid;place-items:center;border-radius:999px;background:#ffffff29;font-size:12px}@media(max-width:760px){.gp-social-footer{align-items:flex-start;flex-direction:column;padding:22px}.gp-social-link{width:100%}}.gp-home-v2 .gp-social-footer{width:100%;max-width:none;display:grid!important;grid-template-columns:minmax(0,1fr) auto auto!important;align-items:center!important;gap:24px!important;margin:24px 0 0!important;padding:24px 30px!important;border:1px solid rgba(42,104,255,.26)!important;border-radius:18px!important;background:radial-gradient(circle at 12% 20%,rgba(0,132,255,.16),transparent 34%),linear-gradient(180deg,#061027e6,#030917f2)!important;box-shadow:0 24px 80px #00000038,inset 0 0 34px #00b1ff0b!important}.gp-home-v2 .gp-social-footer__brand{display:flex!important;align-items:center!important;gap:14px!important;min-width:0!important}.gp-home-v2 .gp-social-footer__brand img{width:46px!important;height:46px!important;border-radius:13px!important;flex:0 0 auto!important;box-shadow:0 0 24px #00beff3d!important}.gp-home-v2 .gp-social-footer__brand strong{display:block!important;color:#fff!important;font-size:18px!important;font-weight:950!important;letter-spacing:-.2px!important}.gp-home-v2 .gp-social-footer__brand strong b{color:#0ca9ff!important}.gp-home-v2 .gp-social-footer__brand span{display:block!important;margin-top:6px!important;color:#e0ebffad!important;font-size:13px!important;line-height:1.45!important}.gp-home-v2 .gp-social-footer__links{display:flex!important;align-items:center!important;gap:12px!important}.gp-home-v2 .gp-social-link{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;min-height:48px!important;padding:0 20px!important;border-radius:14px!important;color:#fff!important;text-decoration:none!important;font-weight:900!important;border:1px solid rgba(255,255,255,.12)!important;background:#ffffff0b!important}.gp-home-v2 .gp-social-link:hover{transform:translateY(-2px)!important;border-color:#ff374d8c!important;box-shadow:0 0 24px #ff374d33!important}.gp-home-v2 .gp-youtube-link .gp-social-icon{display:grid!important;place-items:center!important;width:28px!important;height:28px!important;border-radius:999px!important;background:linear-gradient(135deg,#f03,#ff4b5f)!important;color:#fff!important;font-size:12px!important;box-shadow:0 0 20px #ff003347!important}.gp-home-v2 .gp-social-footer small{color:#d2e1ff8a!important;font-size:12px!important;text-align:right!important;white-space:nowrap!important}@media(max-width:960px){.gp-home-v2 .gp-social-footer{grid-template-columns:1fr!important;text-align:center!important}.gp-home-v2 .gp-social-footer__brand{justify-content:center!important;flex-direction:column!important}.gp-home-v2 .gp-social-footer__links{justify-content:center!important}.gp-home-v2 .gp-social-footer small{text-align:center!important;white-space:normal!important}}html{-webkit-text-size-adjust:100%;text-size-adjust:100%}body{overscroll-behavior-y:none}button,a,input,select,textarea{-webkit-tap-highlight-color:transparent}img,svg,canvas{max-width:100%}@media(max-width:1180px){body:not(.terminal-active){overflow-y:auto!important;overflow-x:hidden!important}.home-page{overflow-y:auto!important;overflow-x:hidden!important;height:auto!important;min-height:100dvh!important}.home-nav.gp-nav-v2{position:sticky!important;top:0!important;z-index:5000!important;height:auto!important;min-height:72px!important;padding:12px 18px!important;gap:12px!important;flex-wrap:wrap!important;align-items:center!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important}.home-brand.gp-brand-v2{min-width:0!important;font-size:clamp(16px,4vw,22px)!important}.home-brand-logo{width:38px!important;height:38px!important}.gp-menu-v2,.home-menu{order:3!important;width:100%!important;display:flex!important;gap:8px!important;padding:4px 0 2px!important;overflow-x:auto!important;scrollbar-width:none!important;white-space:nowrap!important;justify-content:flex-start!important}.gp-menu-v2::-webkit-scrollbar,.home-menu::-webkit-scrollbar{display:none!important}.gp-menu-v2>span,.gp-menu-v2>a,.home-menu>span,.home-menu>a{min-height:40px!important;padding:10px 13px!important;border-radius:12px!important;font-size:12px!important;letter-spacing:.04em!important;flex:0 0 auto!important}.home-actions.gp-actions-v2{margin-left:auto!important;gap:8px!important;flex-wrap:wrap!important;justify-content:flex-end!important}.home-actions .home-btn{min-height:42px!important;padding:10px 14px!important;border-radius:12px!important;font-size:12px!important}.gp-home-v2{padding:28px 18px 32px!important;overflow:visible!important}.home-hero.gp-hero-v2{min-height:auto!important;display:grid!important;grid-template-columns:1fr!important;gap:30px!important;padding:28px 0 18px!important;align-items:center!important}.gp-hero-copy{order:1!important;max-width:none!important;text-align:left!important}.gp-terminal-stage,.gp-terminal-stage-image,.gp-monitor-stage{order:2!important;width:100%!important;min-height:auto!important;display:block!important}.gp-monitor{width:min(100%,820px)!important;margin:0 auto!important;transform:none!important}.gp-monitor-screen{border-radius:18px!important;overflow:hidden!important}.gp-terminal-tv-image{width:100%!important;height:auto!important;object-fit:contain!important}.gp-title-v2,.home-title{font-size:clamp(42px,10vw,82px)!important;line-height:.96!important;letter-spacing:-.06em!important;max-width:100%!important;overflow-wrap:normal!important}.gp-title-v2 span,.home-title span{display:block!important;word-break:normal!important;overflow-wrap:normal!important}.gp-subtitle-v2,.home-subtitle{font-size:clamp(16px,4vw,22px)!important;line-height:1.55!important;max-width:760px!important}.gp-subtitle-v2 br{display:none!important}.gp-hero-actions-v2,.home-hero-actions{display:flex!important;gap:12px!important;flex-wrap:wrap!important}.gp-hero-actions-v2 .home-btn{min-height:54px!important;min-width:min(100%,190px)!important}.gp-social-proof{margin-top:24px!important;flex-wrap:wrap!important}.gp-stat-strip{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:0!important;padding:18px!important;margin-top:24px!important}.gp-stat-strip>div{padding:14px 10px!important;min-width:0!important}.gp-stat-strip strong{font-size:clamp(22px,6vw,34px)!important}.gp-trusted-strip{padding:22px 18px!important}.gp-trusted-strip>div{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:18px!important;text-align:center!important}.gp-trusted-strip span{font-size:clamp(17px,4.4vw,28px)!important;min-width:0!important}}@media(max-width:760px){.home-nav.gp-nav-v2{padding:10px 12px!important}.home-actions.gp-actions-v2{width:100%!important;justify-content:stretch!important;display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important}.home-actions.gp-actions-v2 .home-btn{width:100%!important;padding-inline:8px!important;min-width:0!important}.home-actions.gp-actions-v2 .home-profile-btn:not([hidden]){grid-column:span 1!important}.home-actions.gp-actions-v2 .home-profile-btn[hidden],.home-actions.gp-actions-v2 .home-logout-btn[hidden],.home-actions.gp-actions-v2 #home-login-btn[hidden]{display:none!important}.gp-home-v2{padding:18px 12px 24px!important}.home-hero.gp-hero-v2{gap:22px!important;padding-top:18px!important}.gp-kicker-v2,.home-kicker{width:100%!important;max-width:100%!important;justify-content:center!important;text-align:center!important;font-size:12px!important;padding:11px 12px!important}.gp-title-v2,.home-title{font-size:clamp(38px,13vw,60px)!important;line-height:1.02!important}.gp-subtitle-v2,.home-subtitle{font-size:16px!important;line-height:1.55!important}.gp-hero-actions-v2{display:grid!important;grid-template-columns:1fr!important}.gp-hero-actions-v2 .home-btn{width:100%!important}.gp-social-proof{font-size:15px!important;gap:8px!important}.gp-stat-strip{grid-template-columns:repeat(2,minmax(0,1fr))!important;border-radius:16px!important}.gp-stat-strip>div{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important}.gp-stat-strip>div:nth-last-child(-n+2){border-bottom:0!important}.gp-trusted-strip>div{grid-template-columns:repeat(2,minmax(0,1fr))!important}.gp-social-footer,.gp-home-v2 .gp-social-footer{grid-template-columns:1fr!important;padding:22px 16px!important;text-align:center!important;gap:18px!important}.gp-social-footer__brand,.gp-home-v2 .gp-social-footer__brand{flex-direction:column!important;justify-content:center!important}.gp-social-footer__links,.gp-home-v2 .gp-social-footer__links{width:100%!important}.gp-social-link,.gp-home-v2 .gp-social-link{width:100%!important;min-height:52px!important}}@media(max-width:520px){.home-actions.gp-actions-v2{grid-template-columns:1fr 1fr!important}.home-actions.gp-actions-v2 #home-launch-btn{grid-column:1 / -1!important}.gp-menu-v2>span,.gp-menu-v2>a{font-size:11px!important;min-height:38px!important;padding:9px 11px!important}.gp-title-v2,.home-title{font-size:clamp(34px,14vw,50px)!important;letter-spacing:-.055em!important}.gp-monitor-stand,.gp-monitor-chin{display:none!important}.gp-trusted-strip p{letter-spacing:.22em!important;font-size:11px!important}.gp-stat-strip{padding:12px!important}}@media(max-width:900px){body.terminal-active{overflow:hidden!important}.header{height:auto!important;min-height:58px!important;padding:8px 10px!important;gap:8px!important;overflow-x:auto!important;scrollbar-width:thin!important}.header__logo{font-size:14px!important;white-space:nowrap!important}.header__controls{margin-left:0!important;flex:0 0 auto!important;gap:7px!important}.selector__trigger,.btn,.tool-toggle,.btn--chart-settings{min-height:38px!important;font-size:12px!important;padding-inline:10px!important}.timeframes{min-height:42px!important;height:auto!important;padding:6px 10px!important;display:flex!important;overflow-x:auto!important}.timeframe-btn{display:inline-flex!important;align-items:center!important;min-height:32px!important}.main{position:relative!important;display:grid!important;grid-template-columns:1fr!important;overflow:hidden!important}.chart-container{width:100%!important;min-width:0!important;min-height:0!important;margin-left:0!important}.chart-area{min-height:min(62dvh,560px)!important;height:calc(100dvh - 238px)!important;border-radius:0!important;overflow:hidden!important}.analytics{min-height:auto!important;height:auto!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;padding:8px!important;overflow:auto!important}.metric{min-width:0!important;padding:10px!important}.metric__label{font-size:10px!important}.metric__value{font-size:14px!important;overflow-wrap:anywhere!important}.sidebar{position:fixed!important;inset:auto 10px 10px!important;width:auto!important;max-height:min(70dvh,560px)!important;transform:translateY(calc(100% + 20px))!important;border-radius:18px!important;box-shadow:0 24px 80px #000000a6!important;z-index:7000!important;transition:transform .24s ease!important}.sidebar.open,.sidebar.active{transform:translateY(0)!important}.orderbook__content,.sidebar-content{max-height:calc(70dvh - 120px)!important;overflow:auto!important}.chart-settings-panel,.tools-panel,.watchlist-panel{position:fixed!important;inset:auto 10px 10px!important;width:auto!important;max-height:78dvh!important;overflow:auto!important;border-radius:18px!important;z-index:8000!important}.gp-auth-card{max-width:calc(100vw - 20px)!important}}@media(max-width:540px){.chart-area{height:calc(100dvh - 250px)!important;min-height:420px!important}.analytics{grid-template-columns:1fr 1fr!important}.header__controls .divider{display:none!important}.selector__dropdown{max-width:calc(100vw - 20px)!important}.gp-profile-modal,.gp-profile-shell,.gp-auth-modal{width:calc(100vw - 16px)!important;max-width:calc(100vw - 16px)!important;max-height:92dvh!important;overflow:auto!important;border-radius:18px!important}}.gp-home-v2{overflow:visible!important}.gp-menu-v2>a.gp-features-direct{display:inline-flex!important;align-items:center!important;padding:11px 14px!important;border-radius:10px!important;background:linear-gradient(135deg,#0060fff0,#00d4ff9e)!important;box-shadow:0 0 24px #0067ff85!important}.gp-home-feature-showcase{position:relative;z-index:3;display:grid;grid-template-columns:minmax(280px,390px) minmax(0,1fr);gap:28px;align-items:center;width:100%;margin:38px 0 28px;padding:38px 22px 10px;scroll-margin-top:92px}.gp-home-feature-showcase:before{content:"";position:absolute;inset:0 -48px;z-index:-1;background:radial-gradient(circle at 74% 16%,rgba(0,132,255,.18),transparent 34%),radial-gradient(circle at 8% 44%,rgba(0,228,209,.07),transparent 30%);pointer-events:none}.gp-feature-showcase-copy{min-width:0;color:#fff}.gp-feature-pill{display:inline-flex;align-items:center;gap:8px;padding:10px 15px;border-radius:999px;border:1px solid rgba(72,133,255,.44);background:#07112ab8;color:#cde0ff;font-size:13px;font-weight:850;box-shadow:0 0 22px #007dff17}.gp-feature-showcase-copy h2{margin:34px 0 16px;font-size:clamp(48px,4.8vw,72px);line-height:.98;letter-spacing:-.065em;font-weight:950}.gp-feature-showcase-copy h2 span{display:block;background:linear-gradient(90deg,#875cff,#0d94ff 45%,#18ead3);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-feature-showcase-copy h3{margin:0 0 28px;color:#fff;font-size:clamp(20px,2vw,28px);line-height:1.22;font-weight:850}.gp-feature-showcase-copy p{max-width:350px;margin:0;color:#dbe8ffc7;font-size:16px;line-height:1.65}.gp-feature-showcase-copy ul{list-style:none;margin:32px 0 0;padding:0;display:grid;gap:16px}.gp-feature-showcase-copy li{display:flex;align-items:center;gap:12px;color:#e6eeff;font-size:15px;font-weight:800}.gp-feature-showcase-copy li:before{content:"✓";display:grid;place-items:center;width:23px;height:23px;flex:0 0 auto;border-radius:999px;border:1px solid #6172ff;color:#9fb0ff;font-size:13px;font-weight:950}.gp-feature-showcase-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:34px}.gp-feature-showcase-actions .home-btn{min-height:54px!important;padding:15px 24px!important;border-radius:12px!important;font-size:16px!important;color:#fff!important}.gp-feature-rating{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-top:28px;font-size:17px}.gp-feature-rating strong{color:#fff;font-weight:900}.gp-feature-rating span{color:#ffd34d;letter-spacing:1px;text-shadow:0 0 13px rgba(255,211,77,.25)}.gp-feature-rating b{color:#fff}.gp-feature-terminal{min-width:0;overflow:hidden;border:1px solid rgba(45,127,255,.54);border-radius:17px;background:linear-gradient(180deg,#070d1df7,#020813fa);box-shadow:0 0 0 1px #ffffff09 inset,0 0 46px #0084ff47,0 35px 110px #00000061}.gp-feature-terminal-head{min-height:68px;display:flex;align-items:center;gap:13px;padding:16px 18px;border-bottom:1px solid rgba(255,255,255,.07);background:linear-gradient(180deg,rgba(255,255,255,.035),transparent)}.gp-feature-terminal-brand{display:inline-flex;align-items:center;gap:10px;margin-right:8px;color:#10b7ff;font-weight:950;white-space:nowrap}.gp-feature-terminal-brand img{width:36px;height:36px;border-radius:10px}.gp-feature-terminal-head>span{display:inline-flex;align-items:center;min-height:39px;padding:0 16px;border:1px solid rgba(255,255,255,.13);border-radius:8px;background:#ffffff09;color:#fff;font-size:12px;font-weight:900;white-space:nowrap}.gp-feature-terminal-head i{margin-left:auto;color:#c7d1e8;font-style:normal}.gp-feature-terminal-head i+i{margin-left:0}.gp-feature-terminal-tabs{min-height:52px;display:flex;align-items:center;gap:13px;padding:0 18px;border-bottom:1px solid rgba(255,255,255,.07);overflow-x:auto;color:#cbd5e7;font-size:12px;scrollbar-width:none}.gp-feature-terminal-tabs::-webkit-scrollbar{display:none}.gp-feature-terminal-tabs span,.gp-feature-terminal-tabs b{white-space:nowrap}.gp-feature-terminal-tabs b{padding:7px 10px;border-radius:7px;background:#1055beb8;color:#fff;font-weight:950;border:1px solid rgba(255,255,255,.1)}.gp-feature-terminal-tabs em{display:inline-block;width:1px;height:24px;background:#ffffff1a;flex:0 0 auto}.gp-feature-chart{position:relative;height:min(590px,36vw);min-height:500px;margin:0 16px;overflow:hidden;border-bottom:1px solid rgba(255,255,255,.07);background:linear-gradient(rgba(255,255,255,.036) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.036) 1px,transparent 1px),radial-gradient(circle at 70% 30%,rgba(33,103,255,.075),transparent 35%);background-size:72px 42px,72px 42px,100% 100%}.gp-feature-candles{position:absolute;inset:14% 43% 24% 3.5%;display:flex;align-items:center;justify-content:space-between;gap:1px}.gp-feature-candles i{position:relative;display:block;width:5px;height:34px;border-radius:1px;background:#00e4a2;color:#00e4a2;transform:translateY(calc(var(--move, 0) * 1px));box-shadow:0 0 10px #00e4a226}.gp-feature-candles i:before{content:"";position:absolute;left:2px;top:-18px;width:1px;height:calc(100% + 36px);background:currentColor;opacity:.85}.gp-feature-candles .down{background:#ff2e5e;color:#ff2e5e;box-shadow:0 0 10px #ff2e5e24}.gp-feature-candles .tall{height:58px}.gp-feature-candles .small{height:22px}.gp-feature-candles i:nth-child(1){--move:-80}.gp-feature-candles i:nth-child(2){--move:-87}.gp-feature-candles i:nth-child(3){--move:-100}.gp-feature-candles i:nth-child(4){--move:-92}.gp-feature-candles i:nth-child(5){--move:-65}.gp-feature-candles i:nth-child(6){--move:-45}.gp-feature-candles i:nth-child(7){--move:-70}.gp-feature-candles i:nth-child(8){--move:-92}.gp-feature-candles i:nth-child(9){--move:-62}.gp-feature-candles i:nth-child(10){--move:-40}.gp-feature-candles i:nth-child(11){--move:-28}.gp-feature-candles i:nth-child(12){--move:0}.gp-feature-candles i:nth-child(13){--move:22}.gp-feature-candles i:nth-child(14){--move:30}.gp-feature-candles i:nth-child(15){--move:38}.gp-feature-candles i:nth-child(16){--move:33}.gp-feature-candles i:nth-child(17){--move:20}.gp-feature-candles i:nth-child(18){--move:35}.gp-feature-candles i:nth-child(19){--move:26}.gp-feature-candles i:nth-child(20){--move:44}.gp-feature-candles i:nth-child(21){--move:38}.gp-feature-candles i:nth-child(22){--move:30}.gp-feature-candles i:nth-child(23){--move:48}.gp-feature-candles i:nth-child(24){--move:70}.gp-feature-candles i:nth-child(25){--move:94}.gp-feature-candles i:nth-child(26){--move:118}.gp-feature-candles i:nth-child(27){--move:95}.gp-feature-candles i:nth-child(28){--move:72}.gp-feature-candles i:nth-child(29){--move:54}.gp-feature-candles i:nth-child(30){--move:44}.gp-feature-candles i:nth-child(31){--move:48}.gp-feature-candles i:nth-child(32){--move:54}.gp-feature-candles i:nth-child(33){--move:60}.gp-feature-candles i:nth-child(34){--move:64}.gp-feature-candles i:nth-child(35){--move:56}.gp-feature-candles i:nth-child(36){--move:50}.gp-feature-candles i:nth-child(37){--move:58}.gp-feature-candles i:nth-child(38){--move:63}.gp-feature-candles i:nth-child(39){--move:68}.gp-feature-candles i:nth-child(40){--move:58}.gp-feature-candles i:nth-child(41){--move:50}.gp-feature-candles i:nth-child(42){--move:52}.gp-feature-candles i:nth-child(43){--move:48}.gp-feature-volume{position:absolute;left:3%;right:43%;bottom:0;height:92px;display:flex;align-items:flex-end;gap:2px;opacity:.72}.gp-feature-volume i{flex:1;min-width:2px;background:linear-gradient(180deg,#20d59d,#7a201e)}.gp-feature-volume i.down{background:linear-gradient(180deg,#ff394f,#51201f)}.gp-feature-price-line{position:absolute;left:0;right:0;top:63%;border-top:1px dotted rgba(0,255,160,.7);z-index:6}.gp-feature-price-tag{position:absolute;right:17px;top:calc(63% - 14px);background:#03c77f;color:#fff;font-family:JetBrains Mono,monospace;font-size:13px;font-weight:950;padding:5px 9px;border-radius:3px;z-index:8}.gp-feature-profile{position:absolute;right:0;top:0;width:43%;height:100%;border-left:1px solid rgba(0,189,255,.35);background:linear-gradient(90deg,#172c5d21,#1f3a8c40);box-shadow:-40px 0 85px #2356ff21 inset;z-index:4}.gp-feature-profile strong{position:absolute;top:22px;left:24px;font-size:14px;color:#fff;text-shadow:0 0 13px rgba(255,255,255,.18)}.gp-feature-profile-bars{position:absolute;inset:52px 38px 78px 70px;display:flex;flex-direction:column;align-items:flex-end;justify-content:space-between}.gp-feature-profile-bars span{height:11px;border-radius:2px;background:linear-gradient(90deg,#ad43ff,#e248c5 40%,#248dff 63%,#0097ff);box-shadow:0 0 20px #3485ff3b;position:relative}.gp-feature-profile-bars span.hot{height:14px;background:linear-gradient(90deg,#a840ff,#da43d1 35%,#ef3fa8,#2c8cff 65%,#049fff)}.gp-feature-profile-bars span:after{content:"";position:absolute;top:0;right:0;width:35%;height:100%;background:#0084fff2;border-radius:2px}.gp-feature-profile small{position:absolute;bottom:42px;color:#dce5ff;font-size:13px;font-weight:950}.gp-feature-profile small:nth-of-type(1){left:30px}.gp-feature-profile small:nth-of-type(2){right:30px}.gp-feature-price-axis{position:absolute;right:18px;top:34px;bottom:74px;display:flex;flex-direction:column;justify-content:space-between;text-align:right;color:#bdc7db;font-family:JetBrains Mono,monospace;font-size:12px}.gp-feature-time-axis{position:absolute;left:4%;right:43%;bottom:16px;display:flex;justify-content:space-around;color:#aeb8cc;font-family:JetBrains Mono,monospace;font-size:12px;z-index:7}.gp-feature-stats{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;padding:16px}.gp-feature-stats div{min-height:72px;background:#0a1224c7;border:1px solid rgba(255,255,255,.035);border-radius:8px;padding:16px 18px}.gp-feature-stats small{display:block;color:#8f9bb4;font-size:12px;text-transform:uppercase;margin-bottom:10px}.gp-feature-stats strong{font-family:JetBrains Mono,monospace;color:#00e487;font-size:20px}.gp-feature-stats .red{color:#ff2f5f}.gp-feature-stats .white{color:#fff}@media(max-width:1440px){.gp-home-feature-showcase{grid-template-columns:330px minmax(0,1fr);gap:22px;padding-left:0;padding-right:0}.gp-feature-terminal-head>span{padding-inline:10px}.gp-feature-terminal-tabs{gap:10px}}@media(max-width:1180px){.gp-home-feature-showcase{grid-template-columns:1fr}.gp-feature-showcase-copy{max-width:760px}.gp-feature-showcase-copy p{max-width:680px}.gp-feature-chart{height:560px;min-height:560px}}@media(max-width:760px){.gp-home-feature-showcase{margin-top:30px;padding-top:24px}.gp-feature-showcase-copy h2{font-size:46px}.gp-feature-showcase-copy h3{font-size:22px}.gp-feature-terminal-head{overflow-x:auto;scrollbar-width:none}.gp-feature-terminal-head::-webkit-scrollbar{display:none}.gp-feature-chart{height:480px;min-height:480px;margin-inline:10px}.gp-feature-profile{width:49%}.gp-feature-candles,.gp-feature-volume,.gp-feature-time-axis{right:49%}.gp-feature-price-axis{font-size:10px}.gp-feature-profile strong{font-size:12px;left:12px}.gp-feature-profile-bars{left:18px;right:22px}.gp-feature-profile small{font-size:10px;bottom:48px}.gp-feature-profile small:nth-of-type(2){right:10px}.gp-feature-stats{grid-template-columns:1fr 1fr}}.gp-home-heatmap-showcase{width:min(1880px,calc(100vw - 52px));margin:32px auto 0;display:grid;grid-template-columns:minmax(280px,390px) minmax(0,1fr);gap:clamp(26px,3vw,54px);align-items:center;padding:clamp(28px,4vw,56px) 0 28px;color:#f8fbff}.gp-home-heatmap-copy{max-width:390px}.gp-home-feature-badge{display:inline-flex;align-items:center;min-height:46px;padding:0 18px;border-radius:999px;border:1px solid rgba(70,126,255,.42);background:#07122dad;color:#dce9ff;font-weight:900;font-size:14px;box-shadow:0 0 24px #0082ff24}.gp-home-heatmap-copy h2{margin:36px 0 14px;font-size:clamp(46px,5.4vw,76px);line-height:.96;letter-spacing:-.06em;font-weight:1000}.gp-home-heatmap-copy h2 span{display:block;background:linear-gradient(90deg,#8159ff,#0a8fff 48%,#16e8d3);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-home-heatmap-copy h3{margin:0 0 28px;font-size:clamp(22px,2vw,28px);line-height:1.14;font-weight:950;color:#fff}.gp-home-heatmap-copy p{margin:0;color:#b9c7dd;font-size:16px;line-height:1.72}.gp-home-heatmap-copy ul{list-style:none;margin:34px 0 0;padding:0;display:grid;gap:17px}.gp-home-heatmap-copy li{display:flex;align-items:center;gap:13px;color:#e7efff;font-size:15px;font-weight:850}.gp-home-heatmap-copy li:before{content:"✓";display:grid;place-items:center;width:25px;height:25px;flex:0 0 25px;border-radius:999px;border:1px solid #6172ff;color:#9fb0ff;font-size:14px;font-weight:1000}.gp-home-heatmap-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}.gp-home-heatmap-actions .home-btn{min-height:54px}.gp-home-heatmap-terminal{min-width:0;border:1px solid rgba(45,127,255,.54);border-radius:18px;background:linear-gradient(180deg,#070d1df7,#020813fa);box-shadow:0 0 0 1px #ffffff09 inset,0 0 48px #0084ff3d;overflow:hidden;position:relative}.gp-home-heatmap-terminal:before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 70% 12%,rgba(15,166,255,.12),transparent 34%),linear-gradient(135deg,rgba(0,143,255,.08),transparent 35%,rgba(0,255,210,.055))}.gp-hm-terminal-head{position:relative;z-index:2;display:flex;align-items:center;gap:14px;min-height:68px;padding:16px 20px;border-bottom:1px solid rgba(255,255,255,.07);overflow-x:auto;scrollbar-width:none}.gp-hm-terminal-head img{width:38px;height:38px;border-radius:11px;flex:0 0 auto}.gp-hm-terminal-head strong{color:#10b7ff;font-size:16px;font-weight:1000;white-space:nowrap;margin-right:6px}.gp-hm-terminal-head span{display:inline-flex;align-items:center;min-height:40px;padding:0 16px;border-radius:9px;border:1px solid rgba(255,255,255,.13);background:#ffffff0a;color:#f8fbff;font-size:13px;font-weight:900;white-space:nowrap}.gp-hm-terminal-head i{margin-left:auto;color:#cbd5e1;font-style:normal}.gp-hm-terminal-head i+i{margin-left:0}.gp-hm-timeframes{position:relative;z-index:2;display:flex;align-items:center;gap:13px;min-height:52px;padding:0 20px;border-bottom:1px solid rgba(255,255,255,.07);font-size:12px;color:#cbd5e7;overflow-x:auto;scrollbar-width:none}.gp-hm-timeframes::-webkit-scrollbar{display:none}.gp-hm-timeframes span,.gp-hm-timeframes b{white-space:nowrap}.gp-hm-timeframes b{color:#fff;border:1px solid rgba(255,255,255,.12);background:#ffffff0a;border-radius:8px;padding:8px 11px;font-weight:1000}.gp-hm-timeframes b:nth-of-type(1),.gp-hm-timeframes b:nth-of-type(2){background:#0a6cff;box-shadow:0 0 18px #0070ff42}.gp-hm-timeframes em{display:block;width:1px;height:24px;background:#ffffff1a;flex:0 0 auto}.gp-hm-chart{position:relative;z-index:2;height:clamp(480px,39vw,640px);margin:0 18px;border-bottom:1px solid rgba(255,255,255,.07);background:linear-gradient(rgba(255,255,255,.036) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.036) 1px,transparent 1px),radial-gradient(circle at 70% 30%,rgba(33,103,255,.075),transparent 35%);background-size:72px 42px,72px 42px,100% 100%;overflow:hidden}.gp-hm-chart svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible;z-index:2}.gp-hm-price-line{position:absolute;left:0;right:0;top:63%;border-top:1px dotted rgba(0,255,160,.72);z-index:6}.gp-hm-price-tag{position:absolute;right:10px;top:calc(63% - 14px);z-index:8;background:#03c77f;color:#fff;font-family:JetBrains Mono,monospace;font-size:13px;font-weight:1000;padding:6px 9px;border-radius:4px}.gp-hm-volume{position:absolute;left:24px;right:43%;bottom:0;z-index:4;height:92px;display:flex;align-items:flex-end;gap:1px;opacity:.74}.gp-hm-vp{position:absolute;right:0;top:0;bottom:0;z-index:5;width:43%;border-left:1px solid rgba(0,189,255,.35);background:linear-gradient(90deg,#172c5d21,#1f3a8c40);box-shadow:-40px 0 85px #2356ff21 inset}.gp-hm-vp strong{position:absolute;top:20px;left:24px;font-size:15px;font-weight:1000}.gp-hm-vp-bars{position:absolute;inset:54px 38px 74px 60px;display:flex;flex-direction:column;justify-content:space-between;align-items:flex-end}.gp-hm-vp-row{display:block;height:11px;border-radius:2px;background:linear-gradient(90deg,#ad43ff,#e248c5 40%,#248dff 63%,#0097ff);box-shadow:0 0 20px #3485ff38;position:relative}.gp-hm-vp-row:after{content:"";position:absolute;top:0;right:0;width:35%;height:100%;background:#0084fff2;border-radius:2px}.gp-hm-poc,.gp-hm-va{position:absolute;bottom:42px;color:#dce5ff;font-size:13px;font-weight:1000}.gp-hm-poc{left:30px}.gp-hm-va{right:30px}.gp-hm-axis{position:absolute;right:18px;top:38px;bottom:76px;z-index:8;width:78px;display:flex;flex-direction:column;justify-content:space-between;text-align:right;color:#bdc7db;font-family:JetBrains Mono,monospace;font-size:12px}.gp-hm-times{position:absolute;left:26px;right:43%;bottom:16px;z-index:8;display:flex;justify-content:space-around;color:#aeb8cc;font-family:JetBrains Mono,monospace;font-size:12px}.gp-hm-stats{position:relative;z-index:2;display:grid;grid-template-columns:repeat(5,1fr);gap:14px;padding:18px}.gp-hm-stats div{min-height:76px;background:#0a1224c7;border:1px solid rgba(255,255,255,.035);border-radius:10px;padding:17px 20px}.gp-hm-stats small{display:block;color:#8f9bb4;font-size:12px;text-transform:uppercase;margin-bottom:10px}.gp-hm-stats strong,.gp-hm-stats b{font-family:JetBrains Mono,monospace;font-size:20px;color:#00e487}.gp-hm-stats .neg{color:#ff2f5f}@media(max-width:1320px){.gp-home-heatmap-showcase{grid-template-columns:1fr}.gp-home-heatmap-copy{max-width:760px}}@media(max-width:760px){.gp-home-heatmap-showcase{width:min(100% - 28px,1880px);padding-top:34px}.gp-home-heatmap-actions .home-btn{width:100%}.gp-hm-terminal-head,.gp-hm-timeframes{padding-inline:14px}.gp-hm-chart{height:500px;margin-inline:10px}.gp-hm-vp{width:48%}.gp-hm-volume,.gp-hm-times{right:48%}.gp-hm-axis{font-size:10px;width:64px}.gp-hm-poc,.gp-hm-va{font-size:11px}.gp-hm-stats{grid-template-columns:1fr 1fr;gap:10px;padding:12px}}@media(max-width:520px){.gp-home-feature-badge{width:100%;justify-content:center;text-align:center}.gp-hm-chart{height:440px}.gp-hm-vp strong{font-size:12px;left:14px}.gp-hm-vp-bars{left:18px;right:20px}.gp-hm-times span:nth-child(2n){display:none}.gp-hm-stats{grid-template-columns:1fr}}.gp-home-liquidity-section{width:min(1880px,calc(100% - 54px));margin:36px auto 0;display:grid;grid-template-columns:minmax(260px,380px) minmax(720px,1fr);gap:clamp(22px,3vw,42px);align-items:center;padding:clamp(22px,3vw,38px);border:1px solid rgba(35,105,255,.22);border-radius:28px;background:radial-gradient(circle at 76% 9%,rgba(0,153,255,.14),transparent 34%),radial-gradient(circle at 18% 42%,rgba(36,90,255,.11),transparent 38%),linear-gradient(180deg,#030e23b8,#020712d1);box-shadow:0 28px 100px #00000047,inset 0 0 0 1px #ffffff05;scroll-margin-top:96px}.gp-home-feature-copy{min-width:0}.gp-home-feature-badge{display:inline-flex;align-items:center;max-width:100%;min-height:40px;padding:0 16px;border-radius:999px;border:1px solid rgba(67,130,255,.48);background:#091c41bd;color:#d9e8ff;font-size:13px;font-weight:900;white-space:nowrap;box-shadow:0 0 24px #0080ff14}.gp-home-feature-copy h2{margin:38px 0 16px;font-size:clamp(44px,4vw,68px);line-height:.98;letter-spacing:-.065em;color:#fff;font-weight:1000}.gp-home-feature-copy h2 span{display:block;background:linear-gradient(90deg,#8b5cff,#0b89ff 52%,#18ead3);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-home-feature-copy h3{margin:0 0 24px;color:#fff;font-size:clamp(20px,1.55vw,28px);line-height:1.2;font-weight:900;max-width:430px}.gp-home-feature-copy p{margin:0;max-width:430px;color:#dde9ffc7;font-size:16px;line-height:1.65}.gp-home-feature-copy ul{list-style:none;padding:0;margin:30px 0 0;display:grid;gap:17px}.gp-home-feature-copy li{display:flex;align-items:center;gap:13px;color:#e7f1ff;font-size:15px;line-height:1.35;font-weight:850}.gp-home-feature-copy li:before{content:"✓";width:23px;height:23px;flex:0 0 auto;display:grid;place-items:center;border-radius:999px;border:1px solid rgba(112,132,255,.9);color:#9dacff;font-size:13px;font-weight:1000}.gp-home-feature-actions{margin-top:32px;display:flex;flex-wrap:wrap;gap:14px}.gp-home-feature-actions .home-btn{min-height:52px;padding-inline:24px}.gp-home-feature-rating{margin-top:28px;display:flex;align-items:center;flex-wrap:wrap;gap:10px;color:#fff;font-size:17px}.gp-home-feature-rating strong,.gp-home-feature-rating b{font-weight:900}.gp-home-feature-rating span{color:#ffd34d;letter-spacing:1px;text-shadow:0 0 13px rgba(255,211,77,.28)}.gp-home-feature-terminal{min-width:0;position:relative;overflow:hidden;border-radius:18px;border:1px solid rgba(45,127,255,.58);background:linear-gradient(180deg,#070d1dfa,#020813fc);box-shadow:0 0 0 1px #ffffff09 inset,0 0 58px #0084ff42}.gp-home-feature-terminal:before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 72% 12%,rgba(15,166,255,.12),transparent 35%),linear-gradient(135deg,rgba(0,143,255,.08),transparent 35%,rgba(0,255,210,.05))}.gp-hm-terminal-head,.gp-hm-tf-row,.gp-hm-chart,.gp-hm-stats{position:relative;z-index:2}.gp-hm-terminal-head{min-height:68px;padding:15px 18px;display:flex;align-items:center;gap:13px;border-bottom:1px solid rgba(255,255,255,.07);overflow-x:auto;scrollbar-width:none}.gp-hm-terminal-head::-webkit-scrollbar{display:none}.gp-hm-terminal-head img{width:36px;height:36px;border-radius:10px;flex:0 0 auto}.gp-hm-terminal-head strong{color:#10b7ff;font-size:16px;line-height:1.05;font-weight:1000;white-space:nowrap}.gp-hm-terminal-head span{min-height:39px;display:inline-flex;align-items:center;padding:0 16px;border:1px solid rgba(255,255,255,.13);border-radius:9px;background:#ffffff09;color:#fff;font-size:12px;font-weight:950;white-space:nowrap}.gp-hm-terminal-head em{margin-left:auto;color:#c7d1e8;font-style:normal;white-space:nowrap}.gp-hm-tf-row{min-height:52px;display:flex;align-items:center;gap:13px;padding:0 18px;color:#cbd5e7;font-size:12px;border-bottom:1px solid rgba(255,255,255,.07);overflow-x:auto;scrollbar-width:none}.gp-hm-tf-row::-webkit-scrollbar{display:none}.gp-hm-tf-row span,.gp-hm-tf-row b{white-space:nowrap;flex:0 0 auto}.gp-hm-tf-row b{display:inline-flex;align-items:center;justify-content:center;min-height:30px;padding:0 10px;border-radius:8px;background:#ffffff0a;border:1px solid rgba(255,255,255,.11);color:#fff;font-weight:950}.gp-hm-tf-row b:first-of-type{background:#0a6cff;border-color:transparent;box-shadow:0 0 18px #0070ff57}.gp-hm-tf-row i{height:24px;width:1px;flex:0 0 auto;background:#ffffff1c;margin-inline:4px}.gp-hm-chart{height:clamp(470px,39vw,650px);margin:0 16px;overflow:hidden;border-bottom:1px solid rgba(255,255,255,.07);background:linear-gradient(rgba(255,255,255,.036) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.036) 1px,transparent 1px),radial-gradient(circle at 70% 30%,rgba(33,103,255,.075),transparent 35%);background-size:72px 42px,72px 42px,100% 100%}.gp-hm-svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible}.gp-hm-price-line{position:absolute;left:0;right:0;top:63%;border-top:1px dotted rgba(0,255,160,.72);z-index:4}.gp-hm-price-tag{position:absolute;right:9px;top:calc(63% - 13px);z-index:8;padding:5px 9px;border-radius:4px;background:#03c77f;color:#fff;font:950 13px JetBrains Mono,monospace}.gp-hm-volume{position:absolute;left:22px;right:43%;bottom:0;height:90px;display:flex;align-items:flex-end;gap:1px;z-index:3;opacity:.74}.gp-hm-volume i{flex:1;min-width:1px;background:linear-gradient(180deg,#20d59d,#7a201e)}.gp-hm-volume i:nth-child(3n){background:linear-gradient(180deg,#ff394f,#51201f)}.gp-hm-profile-zone{position:absolute;right:0;top:0;width:43%;height:100%;z-index:3;border-left:1px solid rgba(0,189,255,.35);background:linear-gradient(90deg,#172c5d21,#1f3a8c40);box-shadow:-40px 0 85px #2356ff21 inset}.gp-hm-profile-zone h4{position:absolute;left:22px;top:17px;margin:0;color:#fff;font-size:14px;font-weight:1000;text-shadow:0 0 13px rgba(255,255,255,.18)}.gp-hm-profile-zone>strong{position:absolute;bottom:40px;color:#e4ecff;font-size:13px;font-weight:1000}.gp-hm-profile-zone>strong:first-of-type{left:28px}.gp-hm-profile-zone>strong:last-of-type{right:28px}.gp-hm-vp-bars{position:absolute;inset:46px 34px 68px 54px;display:flex;flex-direction:column;justify-content:space-between;align-items:flex-end}.gp-hm-vp-row{height:11px;border-radius:2px;background:linear-gradient(90deg,#ad43ff,#e248c5 40%,#248dff 63%,#0097ff);box-shadow:0 0 20px #3485ff3b;position:relative}.gp-hm-vp-row.hot{height:14px;background:linear-gradient(90deg,#a840ff,#da43d1 35%,#ef3fa8,#2c8cff 65%,#049fff)}.gp-hm-vp-row:after{content:"";position:absolute;right:0;top:0;width:35%;height:100%;background:#0084fff2;border-radius:2px}.gp-hm-price-axis{position:absolute;right:16px;top:30px;bottom:70px;z-index:6;display:flex;flex-direction:column;justify-content:space-between;text-align:right;color:#bdc7db;font:12px JetBrains Mono,monospace}.gp-hm-time-axis{position:absolute;left:22px;right:43%;bottom:15px;z-index:6;display:flex;justify-content:space-around;color:#aeb8cc;font:12px JetBrains Mono,monospace}.gp-hm-stats{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;padding:16px}.gp-hm-stats div{min-height:72px;padding:16px 18px;border-radius:9px;background:#0a1224c7;border:1px solid rgba(255,255,255,.035)}.gp-hm-stats small{display:block;margin-bottom:10px;color:#8f9bb4;font-size:12px;text-transform:uppercase}.gp-hm-stats strong{color:#00e487;font:950 20px JetBrains Mono,monospace}.gp-hm-stats strong.bad{color:#ff2f5f}.gp-hm-stats strong.neutral{color:#fff}@media(max-width:1280px){.gp-home-liquidity-section{grid-template-columns:1fr}.gp-home-feature-copy{max-width:760px}}@media(max-width:760px){.gp-home-liquidity-section{width:min(100% - 24px,1880px);padding:18px;border-radius:22px}.gp-home-feature-copy h2{font-size:44px}.gp-home-feature-badge{white-space:normal}.gp-home-feature-actions .home-btn{flex:1 1 160px}.gp-hm-terminal-head,.gp-hm-tf-row{padding-inline:12px}.gp-hm-chart{height:470px;margin-inline:10px}.gp-hm-profile-zone{width:48%}.gp-hm-volume,.gp-hm-time-axis{right:48%}.gp-hm-stats{grid-template-columns:1fr 1fr}.gp-hm-price-axis{font-size:10px}.gp-hm-profile-zone h4{font-size:12px}.gp-hm-vp-bars{left:22px;right:20px}}@media(max-width:480px){.gp-home-feature-copy h2{font-size:38px}.gp-home-feature-copy h3{font-size:20px}.gp-hm-chart{height:430px}.gp-hm-stats{grid-template-columns:1fr}.gp-hm-profile-zone>strong{font-size:10px;bottom:34px}.gp-hm-time-axis span:nth-child(2n){display:none}}.gp-home-dvp-section{width:min(1880px,calc(100% - 54px));margin:34px auto 0;display:grid;grid-template-columns:minmax(260px,380px) minmax(720px,1fr);gap:clamp(22px,3vw,42px);align-items:center;padding:clamp(22px,3vw,38px);border:1px solid rgba(35,105,255,.22);border-radius:28px;background:radial-gradient(circle at 76% 9%,rgba(0,153,255,.13),transparent 34%),radial-gradient(circle at 18% 42%,rgba(54,39,255,.1),transparent 38%),linear-gradient(180deg,#030e23b8,#020712db);box-shadow:0 28px 100px #00000047,inset 0 0 0 1px #ffffff05;scroll-margin-top:96px}.gp-home-dvp-copy h2 span{background:linear-gradient(90deg,#7f5cff,#0d94ff,#18ead3);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-home-dvp-copy h3 b{color:#18ead3}.gp-home-dvp-terminal{min-width:0;position:relative;overflow:hidden;border-radius:18px;border:1px solid rgba(45,127,255,.54);background:linear-gradient(180deg,#070d1df7,#020813fc);box-shadow:0 0 0 1px #ffffff09 inset,0 0 48px #0084ff38}.gp-home-dvp-terminal:before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 72% 8%,rgba(15,166,255,.13),transparent 33%),linear-gradient(135deg,rgba(0,143,255,.07),transparent 35%,rgba(0,255,210,.045))}.gp-dvp-terminal-head,.gp-dvp-body,.gp-dvp-legend,.gp-dvp-metrics{position:relative;z-index:2}.gp-dvp-terminal-head{min-height:62px;padding:0 20px;display:flex;align-items:center;gap:13px;color:#dce6ff;border-bottom:1px solid rgba(255,255,255,.07);overflow-x:auto;scrollbar-width:none}.gp-dvp-terminal-head::-webkit-scrollbar{display:none}.gp-dvp-logo{width:32px;height:32px;flex:0 0 auto;display:grid;place-items:center;border-radius:8px;border:1px solid rgba(0,221,255,.28);color:#fff;font-weight:950;box-shadow:0 0 18px #00a5ff26}.gp-dvp-terminal-head span,.gp-dvp-terminal-head b{min-height:33px;display:inline-flex;align-items:center;padding:0 12px;border:1px solid rgba(255,255,255,.12);border-radius:8px;background:#ffffff09;color:#fff;font-size:13px;font-weight:850;white-space:nowrap;flex:0 0 auto}.gp-dvp-terminal-head b{background:#122d5fdb;border-color:#4981ff57}.gp-dvp-terminal-head em{margin-left:auto;color:#c7d1e8;font-style:normal;white-space:nowrap}.gp-dvp-body{position:relative;display:grid;grid-template-columns:58px 1fr;min-height:clamp(455px,32vw,560px)}.gp-dvp-rail{display:flex;flex-direction:column;align-items:center;gap:13px;padding-top:22px;border-right:1px solid rgba(255,255,255,.06);color:#d6e1f4;background:#030a164d}.gp-dvp-rail span{width:28px;height:28px;display:grid;place-items:center;border-radius:7px;font-size:17px;opacity:.88}.gp-dvp-chart{position:relative;min-height:inherit;background:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),radial-gradient(circle at 68% 28%,rgba(33,103,255,.08),transparent 35%);background-size:78px 48px,78px 48px,100% 100%;overflow:hidden}.gp-dvp-svg{position:absolute;inset:0;width:100%;height:100%}.gp-dvp-price-axis{position:absolute;right:18px;top:40px;bottom:42px;display:flex;flex-direction:column;justify-content:space-between;text-align:right;color:#aeb7ca;font:12px JetBrains Mono,monospace;z-index:3}.gp-dvp-legend{min-height:48px;display:flex;align-items:center;gap:22px;border-top:1px solid rgba(255,255,255,.06);padding:0 28px 0 86px;color:#b7c4d8;font-size:13px;flex-wrap:wrap}.gp-dvp-legend i{width:10px;height:10px;display:inline-block;border-radius:2px;margin-right:8px}.gp-dvp-metrics{display:grid;grid-template-columns:repeat(5,1fr);gap:15px;padding:16px 20px 18px 78px}.gp-dvp-metrics div{min-height:82px;border:1px solid rgba(66,126,255,.16);border-radius:12px;background:#071126c2;padding:16px 18px}.gp-dvp-metrics small,.gp-dvp-metrics span{display:block;color:#aebbd4;margin-bottom:7px;font-size:13px}.gp-dvp-metrics strong{display:block;font:950 20px JetBrains Mono,monospace}.gp-dvp-metrics .blue{color:#168cff}.gp-dvp-metrics .teal{color:#0cf0b3}.gp-dvp-metrics .red{color:#ff3f62}@media(max-width:1280px){.gp-home-dvp-section{grid-template-columns:1fr}.gp-home-dvp-copy{max-width:760px}}@media(max-width:760px){.gp-home-dvp-section{width:min(100% - 24px,1880px);padding:18px;border-radius:22px}.gp-dvp-body{grid-template-columns:1fr;min-height:460px}.gp-dvp-rail{display:none}.gp-dvp-legend{padding-left:18px}.gp-dvp-metrics{grid-template-columns:1fr 1fr;padding:14px}.gp-dvp-price-axis{font-size:10px}}@media(max-width:480px){.gp-dvp-body{min-height:420px}.gp-dvp-metrics{grid-template-columns:1fr}.gp-dvp-terminal-head{padding-inline:12px}}.gp-home-fp-section{width:min(1880px,calc(100% - 54px));margin:34px auto 0;padding:clamp(22px,3vw,38px);border:1px solid rgba(110,75,255,.22);border-radius:28px;background:radial-gradient(circle at 78% 10%,rgba(124,60,255,.13),transparent 34%),radial-gradient(circle at 20% 38%,rgba(64,55,255,.1),transparent 38%),linear-gradient(180deg,#050b1fc2,#020712e6);box-shadow:0 28px 100px #00000047,inset 0 0 0 1px #ffffff05;scroll-margin-top:96px}.gp-home-fp-main{display:grid;grid-template-columns:minmax(260px,390px) minmax(720px,1fr);gap:clamp(22px,3vw,42px);align-items:center}.gp-home-fp-copy h2 span{background:linear-gradient(90deg,#8b4cff,#a936ff 42%,#16d7ff);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-home-fp-badge{border-color:#9c52ff75;background:#2b0c4d52;color:#d9c8ff}.gp-home-fp-access{background:linear-gradient(135deg,#6a42ff,#12d9e2)!important;box-shadow:0 0 26px #7b3eff40!important}.gp-home-fp-terminal{min-width:0;position:relative;overflow:hidden;border-radius:18px;border:1px solid rgba(67,120,255,.36);background:linear-gradient(180deg,#060c1cfa,#030814fc);box-shadow:0 0 0 1px #ffffff09 inset,0 0 50px #484fff29}.gp-home-fp-terminal:before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 63% 12%,rgba(117,75,255,.13),transparent 30%),radial-gradient(circle at 86% 45%,rgba(0,196,255,.09),transparent 34%)}.gp-fp-terminal-head,.gp-fp-body,.gp-fp-legend,.gp-fp-metrics{position:relative;z-index:2}.gp-fp-terminal-head{min-height:64px;padding:0 22px;display:flex;align-items:center;gap:14px;color:#dfe9ff;border-bottom:1px solid rgba(255,255,255,.07);overflow-x:auto;scrollbar-width:none}.gp-fp-terminal-head::-webkit-scrollbar{display:none}.gp-fp-logo{width:32px;height:32px;flex:0 0 auto;display:grid;place-items:center;border:1px solid rgba(0,222,255,.28);border-radius:8px;color:#fff;font-weight:950;box-shadow:0 0 19px #00b0ff26}.gp-fp-terminal-head span,.gp-fp-terminal-head b{min-height:34px;display:inline-flex;align-items:center;justify-content:center;padding:0 12px;border:1px solid rgba(255,255,255,.1);border-radius:8px;background:#ffffff09;color:#fff;font-size:13px;font-weight:850;white-space:nowrap;flex:0 0 auto}.gp-fp-terminal-head b{background:#6a43ff42;border-color:#9a65ff73;box-shadow:0 0 18px #7e46ff2e}.gp-fp-terminal-head em{margin-left:auto;color:#c7d1e8;font-style:normal;white-space:nowrap}.gp-fp-body{position:relative;display:grid;grid-template-columns:58px 1fr;min-height:clamp(455px,32vw,560px)}.gp-fp-rail{display:flex;flex-direction:column;align-items:center;gap:13px;padding-top:22px;border-right:1px solid rgba(255,255,255,.06);color:#d7e1f3;background:#030a1670}.gp-fp-rail span{width:28px;height:28px;display:grid;place-items:center;border-radius:7px;font-size:17px;opacity:.9}.gp-fp-chart{position:relative;min-height:inherit;border-bottom:1px solid rgba(255,255,255,.06);background:linear-gradient(rgba(255,255,255,.032) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.032) 1px,transparent 1px),radial-gradient(circle at 70% 30%,rgba(48,87,255,.08),transparent 36%);background-size:82px 48px,82px 48px,100% 100%;overflow:hidden}.gp-fp-svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible}.gp-fp-legend{min-height:52px;display:flex;align-items:center;justify-content:flex-end;gap:24px;padding:0 28px 0 86px;color:#c3ccdd;font-size:13px;flex-wrap:wrap}.gp-fp-legend i,.gp-fp-metrics i{width:11px;height:11px;border-radius:2px;display:inline-block;margin-right:8px;vertical-align:-1px}.gp-fp-metrics{display:grid;grid-template-columns:repeat(5,1fr) minmax(260px,1.4fr);gap:10px;padding:0 20px 18px 78px}.gp-fp-metrics>div{min-height:66px;border:1px solid rgba(74,118,255,.16);border-radius:10px;background:#071126bd;padding:13px 15px}.gp-fp-metrics small{display:block;color:#92a0b7;margin-bottom:6px;font-size:12px}.gp-fp-metrics strong{font-family:JetBrains Mono,monospace;font-size:18px}.gp-fp-metrics .buy{color:#02e59a}.gp-fp-metrics .sell{color:#ff365f}.gp-fp-metrics .wide{display:flex;align-items:center;gap:18px;color:#d7e2f7}.gp-home-fp-depth{margin:30px auto 0;border:1px solid rgba(110,75,255,.2);border-radius:16px;background:linear-gradient(180deg,#0d0b29b8,#050b19d6);padding:24px 26px 28px;box-shadow:0 18px 70px #0003}.gp-home-fp-depth h2{margin:0 0 24px;text-align:center;font-size:23px;color:#fff}.gp-home-fp-depth h2 span{color:#8b58ff}.gp-fp-insight-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}.gp-fp-insight-grid>div{min-height:118px;border:1px solid rgba(98,105,255,.16);border-radius:13px;background:linear-gradient(180deg,#111634c7,#080e1fd6);padding:17px}.gp-fp-insight-grid i{width:43px;height:43px;display:grid;place-items:center;border-radius:12px;margin-bottom:12px;font-size:23px;color:#fff;font-style:normal;box-shadow:0 0 20px #7e41ff33;background:#7b3cff2e}.gp-fp-insight-grid strong{display:block;color:#fff;font-size:14px;margin-bottom:7px}.gp-fp-insight-grid p{margin:0;color:#b8c3d4;font-size:12px;line-height:1.45}.gp-home-fp-bottom{margin:30px auto 0;display:grid;grid-template-columns:1.1fr .8fr 1fr;gap:0;border:1px solid rgba(62,109,255,.18);border-radius:16px;background:#040c1cc7;overflow:hidden;box-shadow:0 18px 70px #0003}.gp-home-fp-bottom>div{padding:25px 28px;border-right:1px solid rgba(255,255,255,.08)}.gp-home-fp-bottom>div:last-child{border-right:0}.gp-home-fp-bottom h3{margin:0 0 18px;color:#fff;font-size:21px}.gp-home-fp-bottom h3 span{color:#8f5cff}.gp-home-fp-bottom ul{list-style:none;padding:0;margin:0;color:#dbe4f6;display:grid;gap:9px;font-size:14px}.gp-home-fp-bottom li:before{content:"◎";color:#985dff;margin-right:9px}.gp-fp-chips{display:flex;flex-wrap:wrap;gap:12px}.gp-fp-chips span{border:1px solid rgba(151,87,255,.3);border-radius:9px;color:#bb9cff;padding:12px 20px;background:#30105b2e;font-weight:800;font-size:13px}.gp-fp-learn{display:flex;gap:17px;align-items:flex-start}.gp-fp-learn>i{width:52px;height:52px;flex:0 0 auto;display:grid;place-items:center;border-radius:13px;color:#9d6cff;font-size:27px;font-style:normal;background:#8949ff24}.gp-fp-learn p{margin:0 0 16px;color:#b9c5d7;line-height:1.6}.gp-fp-learn a{color:#a77cff;text-decoration:none;font-weight:850}@media(max-width:1540px){.gp-fp-metrics,.gp-fp-insight-grid{grid-template-columns:repeat(3,1fr)}}@media(max-width:1280px){.gp-home-fp-main{grid-template-columns:1fr}.gp-home-fp-copy{max-width:760px}}@media(max-width:760px){.gp-home-fp-section{width:min(100% - 24px,1880px);padding:18px;border-radius:22px}.gp-fp-body{grid-template-columns:1fr;min-height:460px}.gp-fp-rail{display:none}.gp-fp-legend{justify-content:flex-start;padding-left:18px}.gp-fp-metrics{grid-template-columns:1fr 1fr;padding:14px}.gp-fp-insight-grid,.gp-home-fp-bottom{grid-template-columns:1fr}.gp-home-fp-bottom>div{border-right:0;border-bottom:1px solid rgba(255,255,255,.08)}.gp-home-fp-bottom>div:last-child{border-bottom:0}}@media(max-width:480px){.gp-fp-body{min-height:420px}.gp-fp-metrics{grid-template-columns:1fr}.gp-fp-terminal-head{padding-inline:12px}}.gp-l2-section{align-items:start}.gp-l2-section:before{background:radial-gradient(circle at 66% 16%,rgba(30,95,255,.18),transparent 34%),radial-gradient(circle at 14% 58%,rgba(0,229,170,.07),transparent 34%)!important}.gp-l2-copy h2 span{background:linear-gradient(90deg,#875cff,#3468ff 68%,#13dfff);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-l2-copy h3{color:#17b8ff!important}.gp-l2-badge{border-color:#4b80ff6b;background:#091c41b8}.gp-l2-mini-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-top:30px}.gp-l2-mini-kpis div{min-height:86px;padding:16px 14px;border:1px solid rgba(45,127,255,.22);border-radius:11px;background:#051027bd}.gp-l2-mini-kpis strong{display:block;color:#00f0a9;font:950 20px JetBrains Mono,monospace;margin-bottom:7px}.gp-l2-mini-kpis span{display:block;color:#aebbd2;font-size:12px;line-height:1.35}.gp-l2-workspace{min-width:0}.gp-l2-top-actions{display:flex;justify-content:flex-end;gap:12px;margin:0 0 20px}.gp-l2-top-actions button,.gp-l2-trades-card button{min-height:42px;padding:0 22px;border:1px solid rgba(55,120,255,.38);border-radius:11px;background:#07112a8c;color:#fff;font-weight:900;cursor:pointer}.gp-l2-main-grid{display:grid;grid-template-columns:minmax(0,2.65fr) minmax(280px,.95fr);gap:18px}.gp-l2-dom-card,.gp-l2-trades-card,.gp-l2-market-depth,.gp-l2-insights,.gp-l2-orders,.gp-l2-benefits{border:1px solid rgba(45,127,255,.32);border-radius:16px;background:linear-gradient(180deg,#07112ae0,#030a18f0);box-shadow:0 24px 80px #0000002e,inset 0 0 38px #0084ff09}.gp-l2-dom-card{padding:18px;overflow:hidden}.gp-l2-card-head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:18px;color:#fff}.gp-l2-card-head strong,.gp-l2-trades-card h4,.gp-l2-insights h4{margin:0;color:#f4f8ff;font-size:15px;font-weight:950}.gp-l2-card-head span,.gp-l2-card-head a{color:#8e9db8;font-size:13px;font-weight:850;text-decoration:none}.gp-l2-books{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.gp-l2-book{overflow:hidden;border:1px solid rgba(255,255,255,.06);border-radius:13px;background:#0000001f}.gp-l2-book-head{display:flex;justify-content:space-between;padding:14px 14px 12px}.gp-l2-book-head b{color:#00e99e;font-size:18px}.gp-l2-asks .gp-l2-book-head b{color:#ff315b}.gp-l2-book-head strong{color:#00e99e;font-family:JetBrains Mono,monospace;font-size:17px}.gp-l2-asks .gp-l2-book-head strong{color:#ff315b}.gp-l2-book-cols,.gp-l2-row{display:grid;grid-template-columns:.9fr 1fr 1fr .9fr;align-items:center}.gp-l2-book-cols.ask,.gp-l2-row.ask{grid-template-columns:1fr .9fr .9fr}.gp-l2-book-cols{padding:0 14px 8px;color:#9eabcd;font-size:12px}.gp-l2-row{position:relative;min-height:34px;padding:0 14px;color:#dce6fa;font:850 13px JetBrains Mono,monospace;border-top:1px solid rgba(255,255,255,.035)}.gp-l2-row:before{content:"";position:absolute;inset:0 auto 0 0;width:var(--w);background:linear-gradient(90deg,rgba(0,229,155,.26),transparent);z-index:0}.gp-l2-row.ask:before{left:0;background:linear-gradient(90deg,rgba(255,49,91,.25),transparent)}.gp-l2-row span{position:relative;z-index:1}.gp-l2-row.bid span:nth-child(2),.gp-l2-row.bid span:nth-child(3){color:#00e99e}.gp-l2-row.ask span:first-child{color:#ff315b}.gp-l2-mid-price{display:grid;place-items:center;margin:18px 0 10px}.gp-l2-mid-price strong{color:#00e99e;font:950 28px JetBrains Mono,monospace}.gp-l2-mid-price span{color:#d9e5fa;font-weight:800}.gp-l2-depth-bars{display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:end;height:170px;margin-top:12px;border-bottom:1px solid rgba(255,255,255,.1)}.gp-l2-depth-bars>div{display:flex;align-items:flex-end;gap:3px;height:100%}.gp-l2-depth-bars .bids{justify-content:flex-end;padding-right:5px}.gp-l2-depth-bars .asks{justify-content:flex-start;padding-left:5px}.gp-l2-depth-bars i{width:100%;max-width:31px;border-radius:2px 2px 0 0}.gp-l2-depth-bars .bids i{background:linear-gradient(180deg,#08c48b,#08c48b2e)}.gp-l2-depth-bars .asks i{background:linear-gradient(180deg,#cf254d,#cf254d2e)}.gp-l2-depth-bars .bids i:nth-child(1){height:10%}.gp-l2-depth-bars .bids i:nth-child(2){height:16%}.gp-l2-depth-bars .bids i:nth-child(3){height:22%}.gp-l2-depth-bars .bids i:nth-child(4){height:29%}.gp-l2-depth-bars .bids i:nth-child(5){height:36%}.gp-l2-depth-bars .bids i:nth-child(6){height:43%}.gp-l2-depth-bars .bids i:nth-child(7){height:50%}.gp-l2-depth-bars .bids i:nth-child(8){height:58%}.gp-l2-depth-bars .bids i:nth-child(9){height:66%}.gp-l2-depth-bars .bids i:nth-child(10){height:74%}.gp-l2-depth-bars .bids i:nth-child(11){height:82%}.gp-l2-depth-bars .bids i:nth-child(12){height:90%}.gp-l2-depth-bars .bids i:nth-child(13){height:100%}.gp-l2-depth-bars .asks i:nth-child(1){height:12%}.gp-l2-depth-bars .asks i:nth-child(2){height:19%}.gp-l2-depth-bars .asks i:nth-child(3){height:27%}.gp-l2-depth-bars .asks i:nth-child(4){height:36%}.gp-l2-depth-bars .asks i:nth-child(5){height:45%}.gp-l2-depth-bars .asks i:nth-child(6){height:54%}.gp-l2-depth-bars .asks i:nth-child(7){height:63%}.gp-l2-depth-bars .asks i:nth-child(8){height:72%}.gp-l2-depth-bars .asks i:nth-child(9){height:80%}.gp-l2-depth-bars .asks i:nth-child(10){height:88%}.gp-l2-depth-bars .asks i:nth-child(11){height:96%}.gp-l2-depth-bars .asks i:nth-child(12){height:104%}.gp-l2-depth-bars .asks i:nth-child(13){height:112%}.gp-l2-pressure{display:grid;grid-template-columns:auto 1fr auto;gap:12px;align-items:center;margin:14px 6px 0;color:#fff;font-weight:950}.gp-l2-pressure b{height:10px;border-radius:999px;background:#ff315b;overflow:hidden}.gp-l2-pressure b i{display:block;width:52.6%;height:100%;background:#00e99e}.gp-l2-trades-card{padding:18px}.gp-l2-trade-head,.gp-l2-trade-row,.gp-l2-order-head,.gp-l2-order-row{display:grid;align-items:center;gap:12px}.gp-l2-trade-head,.gp-l2-trade-row{grid-template-columns:1fr 1fr .8fr .6fr}.gp-l2-trade-head,.gp-l2-order-head{color:#9eabcd;font-size:12px;font-weight:850;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.055)}.gp-l2-trade-row,.gp-l2-order-row{min-height:38px;color:#dce6fa;font:850 13px JetBrains Mono,monospace;border-bottom:1px solid rgba(255,255,255,.035)}.gp-l2-trade-row b{font-family:Inter,sans-serif;font-size:13px}.gp-l2-trades-card button{width:100%;margin-top:17px;color:#9fbaff}.gp-l2-lower-grid{display:grid;grid-template-columns:1.35fr .84fr .95fr;gap:18px;margin-top:18px}.gp-l2-market-depth,.gp-l2-insights,.gp-l2-orders{padding:18px;min-height:260px}.gp-l2-depth-chart{height:190px;border-radius:12px;background:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:72px 48px;overflow:hidden}.gp-l2-depth-chart svg{width:100%;height:100%}.gp-l2-depth-legend,.gp-l2-order-legend{display:flex;justify-content:center;gap:25px;margin-top:12px;color:#d7e2f7;font-size:13px}.gp-l2-depth-legend i,.gp-l2-order-legend i{display:inline-block;width:11px;height:11px;border-radius:3px;margin-right:7px}.gp-l2-depth-legend .buy,.gp-l2-order-legend .buy{background:#00e99e}.gp-l2-depth-legend .sell,.gp-l2-order-legend .sell{background:#ff315b}.gp-l2-insight-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:18px}.gp-l2-insight-grid div{border:1px solid rgba(45,127,255,.18);background:#0510279e;border-radius:12px;padding:14px;min-height:112px}.gp-l2-insight-grid span{color:#9eabcd;font-size:13px}.gp-l2-insight-grid strong{display:block;margin:10px 0 4px;color:#fff;font:950 24px JetBrains Mono,monospace}.gp-l2-insight-grid small{color:#aebbd2;font-size:12px}.gp-l2-order-head,.gp-l2-order-row{grid-template-columns:1fr 1fr .9fr .6fr .7fr}.gp-l2-orders .gp-l2-card-head{margin-bottom:10px}.gp-l2-benefits{display:grid;grid-template-columns:repeat(6,1fr);gap:0;margin-top:22px;overflow:hidden}.gp-l2-benefits div{min-height:92px;padding:20px 18px;display:grid;grid-template-columns:54px 1fr;gap:13px;align-items:center;border-right:1px solid rgba(255,255,255,.07)}.gp-l2-benefits div:last-child{border-right:0}.gp-l2-benefits i{width:45px;height:45px;display:grid;place-items:center;border-radius:999px;color:#13dfff;font-style:normal;background:#007dff1f}.gp-l2-benefits strong{display:block;color:#fff;font-size:14px;margin-bottom:6px}.gp-l2-benefits span{color:#aebbd2;font-size:12px;line-height:1.45}.gp-l2-section .buy{color:#00e99e!important}.gp-l2-section .sell{color:#ff315b!important}@media(max-width:1500px){.gp-l2-main-grid{grid-template-columns:1fr}.gp-l2-lower-grid{grid-template-columns:1fr 1fr}.gp-l2-orders{grid-column:1 / -1}.gp-l2-benefits{grid-template-columns:repeat(3,1fr)}}@media(max-width:1180px){.gp-l2-top-actions{justify-content:flex-start}.gp-l2-books,.gp-l2-lower-grid{grid-template-columns:1fr}.gp-l2-benefits{grid-template-columns:repeat(2,1fr)}}@media(max-width:760px){.gp-l2-mini-kpis,.gp-l2-insight-grid,.gp-l2-benefits{grid-template-columns:1fr}.gp-l2-benefits div{border-right:0;border-bottom:1px solid rgba(255,255,255,.07)}.gp-l2-books,.gp-l2-main-grid,.gp-l2-lower-grid{gap:12px}.gp-l2-dom-card,.gp-l2-trades-card,.gp-l2-market-depth,.gp-l2-insights,.gp-l2-orders{padding:14px}.gp-l2-book-cols,.gp-l2-row{grid-template-columns:.8fr 1fr 1fr .8fr;font-size:11px;padding-inline:10px}.gp-l2-row.ask,.gp-l2-book-cols.ask{grid-template-columns:1fr .8fr .8fr}.gp-l2-trade-head,.gp-l2-trade-row{grid-template-columns:1fr 1fr .75fr .55fr;font-size:11px;gap:7px}.gp-l2-order-head,.gp-l2-order-row{grid-template-columns:1fr 1fr .8fr .55fr;font-size:11px}.gp-l2-order-head span:last-child,.gp-l2-order-row span:last-child{display:none}}.gp-flow-section{align-items:start;background:radial-gradient(circle at 78% 14%,rgba(0,240,170,.12),transparent 32%),radial-gradient(circle at 10% 52%,rgba(0,178,255,.08),transparent 36%),linear-gradient(180deg,#031122d1,#020814eb);border:1px solid rgba(31,216,151,.18);border-radius:28px;padding:clamp(22px,3vw,36px) clamp(18px,2.6vw,34px);margin-top:34px;box-shadow:0 28px 100px #00000047,inset 0 0 0 1px #ffffff05}.gp-flow-section:before{background:radial-gradient(circle at 74% 20%,rgba(0,255,164,.1),transparent 35%),radial-gradient(circle at 15% 50%,rgba(0,128,255,.1),transparent 34%)}.gp-flow-copy h2 span{background:linear-gradient(90deg,#12f0a7,#08caff);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-flow-copy h3{color:#17a7ff}.gp-flow-badge{border-color:#12f0a770;background:#07403057;color:#a6ffe2}.gp-flow-copy li:before{border-color:#35ffb0bf;color:#35ffb0}.gp-flow-access{background:linear-gradient(135deg,#168cff,#0bd7c8)!important;box-shadow:0 0 26px #00ddb52e!important}.gp-flow-workspace{min-width:0}.gp-flow-top-actions{display:flex;justify-content:flex-end;gap:14px;margin-bottom:18px}.gp-flow-top-actions button{min-height:40px;padding:0 20px;border:1px solid rgba(55,120,255,.33);border-radius:11px;background:#07112a80;color:#fff;font-weight:900;cursor:pointer}.gp-flow-terminal,.gp-flow-how,.gp-flow-stats{border:1px solid rgba(45,127,255,.32);border-radius:18px;background:linear-gradient(180deg,#07112ae0,#030a18f0);box-shadow:0 24px 80px #0000002e,inset 0 0 38px #0084ff09;overflow:hidden}.gp-flow-head{min-height:62px;display:flex;align-items:center;gap:12px;padding:0 20px;border-bottom:1px solid rgba(255,255,255,.07);overflow-x:auto;scrollbar-width:none}.gp-flow-head::-webkit-scrollbar{display:none}.gp-flow-head strong{color:#12f0a7;font-size:15px;margin-right:auto;white-space:nowrap}.gp-flow-head span,.gp-flow-head b{flex:0 0 auto;min-height:34px;padding:0 12px;display:inline-flex;align-items:center;border:1px solid rgba(255,255,255,.11);border-radius:8px;color:#fff;background:#ffffff0b;font-weight:850;font-size:13px}.gp-flow-head b{background:#0d53b98c;border-color:#4781ff5c}.gp-flow-head em{width:1px;height:28px;background:#ffffff14;flex:0 0 auto}.gp-flow-head i{color:#c9d5e9;font-style:normal;white-space:nowrap}.gp-flow-chart-wrap{display:grid;grid-template-columns:58px 1fr;min-height:clamp(470px,34vw,610px)}.gp-flow-rail{display:flex;flex-direction:column;align-items:center;gap:13px;padding-top:25px;border-right:1px solid rgba(255,255,255,.06);color:#d7e1f3;background:#030a1670}.gp-flow-rail span{width:29px;height:29px;display:grid;place-items:center;border-radius:7px;font-size:17px;opacity:.9}.gp-flow-chart{position:relative;min-height:inherit;overflow:hidden;background:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),radial-gradient(circle at 68% 28%,rgba(0,132,255,.1),transparent 36%);background-size:82px 48px,82px 48px,100% 100%}.gp-flow-svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible}.gp-flow-price-tag{position:absolute;right:24px;top:31%;padding:8px 12px;border-radius:6px;background:#12c889;color:#fff;font-family:JetBrains Mono,monospace;font-size:13px;font-weight:950;box-shadow:0 0 18px #12c8892e}.gp-flow-metrics{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;padding:18px 24px 22px 78px}.gp-flow-metrics>div{min-height:92px;display:grid;grid-template-columns:48px 1fr;align-items:center;gap:12px;border:1px solid rgba(45,127,255,.18);border-radius:12px;background:#051027b8;padding:14px}.gp-flow-metrics i{width:42px;height:42px;display:grid;place-items:center;border-radius:999px;font-style:normal;font-size:22px;background:#00ffaa14;border:1px solid rgba(0,255,170,.16)}.gp-flow-metrics i.down{background:#ff315b1a;border-color:#ff315b2e;color:#ff4267}.gp-flow-metrics i.up,.gp-flow-metrics i.wave{color:#00e99e}.gp-flow-metrics i.blue{color:#168cff;background:#168cff21;border-color:#168cff3d}.gp-flow-metrics i.clock{color:#a985ff;background:#a985ff1f;border-color:#a985ff3d}.gp-flow-metrics span{color:#e4ecfb;font-weight:850;line-height:1.15}.gp-flow-metrics small{display:block;color:#9eabcd;margin-top:4px;font-weight:700}.gp-flow-metrics strong{grid-column:2;font:950 22px JetBrains Mono,monospace}.gp-flow-metrics .buy,.gp-flow-stats .buy{color:#00e99e!important}.gp-flow-metrics .sell,.gp-flow-stats .sell{color:#ff315b!important}.gp-flow-metrics .blue-text{color:#168cff!important}.gp-flow-lower{display:grid;grid-template-columns:1.55fr .8fr;gap:18px;margin-top:22px}.gp-flow-how,.gp-flow-stats{padding:22px}.gp-flow-how h3,.gp-flow-stats h3{margin:0 0 18px;color:#fff;font-size:20px}.gp-flow-how h3 span{color:#12f0a7}.gp-flow-steps{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}.gp-flow-steps div{border:1px solid rgba(45,127,255,.16);border-radius:13px;background:#061127a8;padding:16px;min-height:170px}.gp-flow-steps i{width:50px;height:50px;display:grid;place-items:center;border-radius:14px;background:#0084ff21;color:#14d7ff;font-size:24px;font-style:normal;margin-bottom:14px}.gp-flow-steps strong{display:block;color:#fff;font-size:14px;margin-bottom:9px}.gp-flow-steps p{margin:0;color:#aebbd2;font-size:12px;line-height:1.55}.gp-flow-stats h3{display:flex;justify-content:space-between;gap:12px;align-items:center}.gp-flow-stats h3 b{color:#18e39a;font-size:12px}.gp-flow-stat-grid{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid rgba(255,255,255,.07);border-radius:12px;overflow:hidden}.gp-flow-stat-grid div{padding:16px 12px;text-align:center;background:#0510278f;border-right:1px solid rgba(255,255,255,.06)}.gp-flow-stat-grid div:last-child{border-right:0}.gp-flow-stat-grid span{color:#aebbd2;font-size:12px}.gp-flow-stat-grid strong{display:block;margin-top:8px;font-family:JetBrains Mono,monospace;font-size:18px}.gp-flow-pressure{margin-top:26px;display:grid;grid-template-columns:auto 1fr auto;gap:12px;align-items:center;color:#aebbd2;font-size:13px}.gp-flow-stats>small{display:block;margin-top:22px;color:#8797b2}@media(max-width:1500px){.gp-flow-metrics,.gp-flow-steps{grid-template-columns:repeat(3,1fr)}}@media(max-width:1180px){.gp-flow-top-actions{justify-content:flex-start}.gp-flow-lower{grid-template-columns:1fr}.gp-flow-metrics{grid-template-columns:repeat(2,1fr);padding-left:24px}.gp-flow-steps{grid-template-columns:repeat(2,1fr)}}@media(max-width:760px){.gp-flow-section{padding:18px 14px}.gp-flow-chart-wrap{grid-template-columns:1fr;min-height:460px}.gp-flow-rail{display:none}.gp-flow-head{padding-inline:12px}.gp-flow-metrics,.gp-flow-steps,.gp-flow-stat-grid,.gp-flow-pressure{grid-template-columns:1fr}.gp-flow-metrics{padding:14px}.gp-flow-metrics>div{grid-template-columns:44px 1fr}.gp-flow-pressure{gap:10px}}.gp-flow-section{align-items:start;grid-template-columns:minmax(270px,360px) minmax(760px,1fr);padding-top:46px}.gp-flow-section:before{background:radial-gradient(circle at 70% 12%,rgba(15,225,160,.17),transparent 34%),radial-gradient(circle at 9% 52%,rgba(0,132,255,.1),transparent 32%)!important}.gp-flow-copy .gp-flow-badge{border-color:#1ce5936b;background:#06362775;color:#94ffd5}.gp-flow-copy h2 span{background:linear-gradient(90deg,#11ec9b,#03d3a8 48%,#008cff);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-flow-copy h3{color:#13aaff!important}.gp-flow-copy li:before{border-color:#3af0a5c7;color:#69ffbf}.gp-flow-terminal{min-width:0;overflow:hidden;border:1px solid rgba(45,127,255,.42);border-radius:18px;background:linear-gradient(180deg,#060f23fa,#030814fc);box-shadow:0 0 0 1px #ffffff09 inset,0 0 52px #0084ff33,0 34px 100px #00000057;position:relative}.gp-flow-terminal:before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 73% 18%,rgba(0,145,255,.16),transparent 32%),radial-gradient(circle at 23% 82%,rgba(0,235,160,.08),transparent 30%)}.gp-flow-topbar,.gp-flow-chart-wrap,.gp-flow-metrics{position:relative;z-index:2}.gp-flow-topbar{min-height:70px;display:flex;align-items:center;gap:12px;padding:0 20px;border-bottom:1px solid rgba(255,255,255,.075);overflow-x:auto;scrollbar-width:none}.gp-flow-topbar::-webkit-scrollbar{display:none}.gp-flow-topbar b{color:#1ff0a2;font-size:16px;font-weight:1000;white-space:nowrap;margin-right:auto}.gp-flow-topbar span,.gp-flow-topbar strong{min-height:34px;display:inline-flex;align-items:center;justify-content:center;padding:0 13px;border:1px solid rgba(255,255,255,.11);border-radius:8px;background:#ffffff0a;color:#fff;font-size:13px;font-weight:900;white-space:nowrap;flex:0 0 auto}.gp-flow-topbar strong{background:#154faa94;border-color:#4981ff66}.gp-flow-topbar em{flex:1;min-width:16px}.gp-flow-topbar i{color:#b8c7df;font-style:normal;flex:0 0 auto}.gp-flow-chart-wrap{display:grid;grid-template-columns:58px 1fr;min-height:clamp(470px,34vw,590px)}.gp-flow-rail{display:flex;flex-direction:column;align-items:center;gap:13px;padding-top:23px;border-right:1px solid rgba(255,255,255,.06);background:#030a166b;color:#d7e3f7}.gp-flow-rail span{width:28px;height:28px;display:grid;place-items:center;border-radius:7px;font-size:16px;opacity:.88}.gp-flow-chart{position:relative;min-height:inherit;overflow:hidden;background:linear-gradient(rgba(255,255,255,.033) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.033) 1px,transparent 1px),radial-gradient(circle at 70% 27%,rgba(0,132,255,.105),transparent 36%);background-size:82px 50px,82px 50px,100% 100%}.gp-flow-svg{position:absolute;inset:0;width:100%;height:100%}.gp-flow-marker.buy circle:first-child{fill:#087cff;filter:drop-shadow(0 0 15px rgba(8,124,255,.72))}.gp-flow-marker.buy circle:nth-child(2){fill:#087cff}.gp-flow-marker.sell circle:first-child{fill:#f7385a;filter:drop-shadow(0 0 15px rgba(247,56,90,.72))}.gp-flow-marker.sell circle:nth-child(2){fill:#f7385a}.gp-flow-marker text{fill:#d9efff;font:950 12px Inter,sans-serif;text-shadow:0 0 9px rgba(0,0,0,.75)}.gp-flow-price-axis{position:absolute;right:18px;top:48px;bottom:82px;display:flex;flex-direction:column;justify-content:space-between;color:#b8c4d7;font:12px JetBrains Mono,monospace;text-align:right;z-index:5}.gp-flow-price-tag{position:absolute;right:18px;top:160px;padding:8px 12px;border-radius:6px;background:#14bd82;color:#fff;font:950 14px JetBrains Mono,monospace;z-index:8;box-shadow:0 0 18px #14bd8233}.gp-flow-time-axis{position:absolute;left:30px;right:92px;bottom:24px;display:flex;justify-content:space-between;color:#aebad0;font:12px JetBrains Mono,monospace;z-index:5}.gp-flow-metrics{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;padding:20px 24px 24px 82px;border-top:1px solid rgba(255,255,255,.07)}.gp-flow-metrics div{min-height:105px;display:grid;grid-template-columns:48px 1fr;grid-template-rows:auto auto;align-items:center;column-gap:13px;border:1px solid rgba(45,127,255,.24);border-radius:13px;background:#07112ab3;padding:16px}.gp-flow-metrics i{grid-row:1 / 3;width:42px;height:42px;display:grid;place-items:center;border-radius:999px;font-style:normal;color:#fff;background:#ffffff0f;border:1px solid rgba(255,255,255,.09)}.gp-flow-metrics i.buy{color:#18efa8;background:#00e59b1f}.gp-flow-metrics i.sell{color:#ff3e62;background:#ff315b1f}.gp-flow-metrics i.blue{color:#108bff;background:#108bff1f}.gp-flow-metrics i.green{color:#13df91;background:#13df911f}.gp-flow-metrics i.violet{color:#9b6bff;background:#7b52ff1f}.gp-flow-metrics span{color:#e4ebf8;font-weight:950;line-height:1.1}.gp-flow-metrics small{display:block;color:#8fa0ba;font-weight:700;margin-top:5px}.gp-flow-metrics strong{grid-column:2;color:#0df0a9;font:950 22px JetBrains Mono,monospace}.gp-flow-metrics strong.sell{color:#ff3e62}.gp-flow-metrics strong.blue{color:#0d8fff}.gp-flow-below{grid-column:2;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(360px,.65fr);gap:18px;margin-top:22px}.gp-flow-works,.gp-flow-live{border:1px solid rgba(45,127,255,.24);border-radius:16px;background:linear-gradient(180deg,#07112abd,#030a18e0);padding:22px;box-shadow:0 24px 80px #00000029}.gp-flow-works h3,.gp-flow-live h3{margin:0 0 18px;color:#fff;font-size:19px}.gp-flow-works h3 span{color:#13df91}.gp-flow-works>div{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.gp-flow-works article{min-height:165px;border:1px solid rgba(255,255,255,.08);border-radius:13px;background:#ffffff06;padding:16px}.gp-flow-works article i{width:45px;height:45px;display:grid;place-items:center;border-radius:12px;background:#0084ff1f;color:#0d8fff;font-style:normal;font-size:22px;margin-bottom:18px}.gp-flow-works article b{display:block;color:#fff;margin-bottom:10px}.gp-flow-works article p{margin:0;color:#aebbd2;font-size:13px;line-height:1.55}.gp-flow-live h3{display:flex;justify-content:space-between;gap:12px}.gp-flow-live h3 span{color:#8dfac6;font-size:13px;font-weight:800}.gp-flow-live-grid{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid rgba(255,255,255,.06);border-radius:12px;overflow:hidden;margin-bottom:25px}.gp-flow-live-grid div{padding:16px;border-right:1px solid rgba(255,255,255,.06)}.gp-flow-live-grid div:last-child{border-right:0}.gp-flow-live-grid small{color:#9eabcd;display:block;margin-bottom:8px}.gp-flow-live-grid strong{color:#0df0a9;font:950 18px JetBrains Mono,monospace}.gp-flow-live-grid .sell{color:#ff3e62}.gp-flow-pressure{display:grid;grid-template-columns:auto 1fr auto;gap:12px;align-items:center;color:#aebbd2}.gp-flow-pressure b{color:#0df0a9;margin-left:5px}.gp-flow-pressure span:last-child b{color:#ff3e62}.gp-flow-pressure i{height:12px;border-radius:999px;background:#ff315b;overflow:hidden}.gp-flow-pressure i em{display:block;width:53.47%;height:100%;background:#00e99e}.gp-flow-live>small{display:block;margin-top:18px;color:#77869f}@media(max-width:1500px){.gp-flow-section{grid-template-columns:1fr}.gp-flow-below{grid-column:1;grid-template-columns:1fr}.gp-flow-works>div{grid-template-columns:repeat(2,1fr)}}@media(max-width:980px){.gp-flow-chart-wrap{grid-template-columns:1fr;min-height:480px}.gp-flow-rail{display:none}.gp-flow-metrics{grid-template-columns:repeat(2,1fr);padding:16px}.gp-flow-time-axis{font-size:10px;left:15px;right:70px}.gp-flow-price-axis{font-size:10px}}@media(max-width:640px){.gp-flow-section{padding-inline:14px}.gp-flow-topbar{padding-inline:12px}.gp-flow-metrics,.gp-flow-works>div,.gp-flow-live-grid{grid-template-columns:1fr}.gp-flow-chart-wrap{min-height:430px}.gp-flow-marker text{font-size:10px}.gp-flow-below{margin-top:16px}.gp-flow-pressure{grid-template-columns:1fr}}.gp-vb-section{align-items:start;grid-template-columns:minmax(280px,380px) minmax(760px,1fr);background:radial-gradient(circle at 78% 14%,rgba(130,70,255,.16),transparent 34%),radial-gradient(circle at 15% 54%,rgba(0,210,255,.09),transparent 34%),linear-gradient(180deg,#040c1fe6,#020814f5);border:1px solid rgba(130,70,255,.22);border-radius:28px;padding:clamp(22px,3vw,36px) clamp(18px,2.6vw,34px);margin-top:34px;box-shadow:0 28px 100px #0000004d,inset 0 0 0 1px #ffffff05}.gp-vb-section:before{background:radial-gradient(circle at 72% 20%,rgba(138,60,255,.13),transparent 35%),radial-gradient(circle at 18% 52%,rgba(0,210,255,.1),transparent 34%)}.gp-vb-badge{border-color:#9250ff7a;background:#3c16676e;color:#d9c7ff}.gp-vb-copy h2 span{background:linear-gradient(90deg,#8a3cff,#087cff 52%,#0df0b3);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-vb-copy h3{color:#f3f7ff}.gp-vb-copy li:before{border-color:#088cffc7;color:#53b6ff}.gp-vb-access{background:linear-gradient(135deg,#7b4cff,#10d8cf)!important;box-shadow:0 0 26px #7c4cff38!important}.gp-vb-workspace{min-width:0}.gp-vb-top-actions{display:flex;justify-content:flex-end;gap:14px;margin-bottom:18px}.gp-vb-top-actions button{min-height:40px;padding:0 20px;border:1px solid rgba(55,120,255,.33);border-radius:11px;background:#07112a80;color:#fff;font-weight:900;cursor:pointer}.gp-vb-terminal,.gp-vb-how,.gp-vb-pressure,.gp-vb-recent,.gp-vb-benefits{border:1px solid rgba(45,127,255,.31);border-radius:18px;background:linear-gradient(180deg,#07112adb,#030a18f0);box-shadow:0 24px 80px #0000002e,inset 0 0 38px #7b52ff09;overflow:hidden}.gp-vb-terminal{position:relative}.gp-vb-terminal:before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 73% 18%,rgba(123,82,255,.15),transparent 32%),radial-gradient(circle at 44% 76%,rgba(0,215,200,.07),transparent 31%)}.gp-vb-head{position:relative;z-index:2;min-height:64px;display:flex;align-items:center;gap:12px;padding:0 20px;border-bottom:1px solid rgba(255,255,255,.07);overflow-x:auto;scrollbar-width:none}.gp-vb-head::-webkit-scrollbar{display:none}.gp-vb-head b{width:34px;height:34px;border:1px solid rgba(0,224,255,.28);border-radius:9px;display:grid;place-items:center;color:#eaffff;flex:0 0 auto}.gp-vb-head span,.gp-vb-head strong{flex:0 0 auto;min-height:34px;padding:0 12px;display:inline-flex;align-items:center;border:1px solid rgba(255,255,255,.11);border-radius:8px;color:#fff;background:#ffffff0b;font-weight:850;font-size:13px}.gp-vb-head strong{background:#4426839e;border-color:#9250ff73}.gp-vb-head em{flex:1;min-width:18px}.gp-vb-head i{flex:0 0 auto;color:#2df6b4;font-style:normal;font-weight:900}.gp-vb-chart-wrap{position:relative;z-index:2;display:grid;grid-template-columns:58px 1fr;min-height:clamp(470px,34vw,610px)}.gp-vb-rail{display:flex;flex-direction:column;align-items:center;gap:13px;padding-top:24px;border-right:1px solid rgba(255,255,255,.06);color:#d7e1f3;background:#030a1670}.gp-vb-rail span{width:29px;height:29px;display:grid;place-items:center;border-radius:7px;font-size:16px;opacity:.9}.gp-vb-chart{position:relative;min-height:inherit;overflow:hidden;background:linear-gradient(rgba(255,255,255,.033) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.033) 1px,transparent 1px),radial-gradient(circle at 68% 28%,rgba(123,82,255,.12),transparent 36%);background-size:82px 50px,82px 50px,100% 100%}.gp-vb-svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible}.gp-vb-legend{position:absolute;top:24px;left:28px;z-index:5;width:210px;border:1px solid rgba(255,255,255,.09);border-radius:10px;background:#040a15c2;padding:14px;box-shadow:0 14px 36px #00000038}.gp-vb-legend strong{display:block;color:#fff;margin-bottom:10px}.gp-vb-legend span{display:grid;grid-template-columns:16px 1fr auto;gap:8px;align-items:center;color:#d7e3f4;font-size:12px;margin:7px 0}.gp-vb-legend i,.gp-vb-table-row i{width:12px;height:12px;border-radius:999px;display:inline-block}.gp-vb-legend .high,.gp-vb-table-row .high{background:#8a3cff;box-shadow:0 0 18px #8a3cff8c}.gp-vb-legend .medium,.gp-vb-table-row .medium{background:#087cff;box-shadow:0 0 18px #087cff8c}.gp-vb-legend .low,.gp-vb-table-row .low{background:#05c996;box-shadow:0 0 18px #05c99673}.gp-vb-price-tag{position:absolute;right:22px;top:30%;z-index:6;padding:8px 12px;border-radius:6px;background:#13c486;color:#fff;font:950 14px JetBrains Mono,monospace;box-shadow:0 0 20px #13c4862e}.gp-vb-metrics{position:relative;z-index:2;display:grid;grid-template-columns:repeat(5,1fr);gap:14px;padding:20px 24px 24px 82px;border-top:1px solid rgba(255,255,255,.07)}.gp-vb-metrics>div{min-height:105px;display:grid;grid-template-columns:48px 1fr;align-items:center;gap:12px;border:1px solid rgba(45,127,255,.22);border-radius:13px;background:#07112ab3;padding:16px}.gp-vb-metrics i{grid-row:1 / 4;width:42px;height:42px;display:grid;place-items:center;border-radius:999px;color:#0df0b3;background:#00e0aa14;border:1px solid rgba(255,255,255,.09);font-style:normal}.gp-vb-metrics span{color:#e4ebf8;font-weight:950;line-height:1.1}.gp-vb-metrics strong{color:#0df0b3;font:950 22px JetBrains Mono,monospace}.gp-vb-metrics strong.purple{color:#9a55ff}.gp-vb-metrics strong.blue{color:#0d8fff}.gp-vb-metrics small{color:#0df0b3;font-size:12px}.gp-vb-lower{display:grid;grid-template-columns:1fr .8fr .95fr;gap:18px;margin-top:22px}.gp-vb-how,.gp-vb-pressure,.gp-vb-recent{padding:22px}.gp-vb-how h3,.gp-vb-pressure h3,.gp-vb-recent h3{margin:0 0 16px;color:#fff;font-size:20px}.gp-vb-how>p{margin:0 0 20px;color:#b6c4dc;line-height:1.55}.gp-vb-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.gp-vb-steps article{position:relative;border:1px solid rgba(45,127,255,.16);border-radius:13px;background:#061127a8;padding:16px;min-height:210px}.gp-vb-steps b{width:34px;height:34px;display:grid;place-items:center;border-radius:999px;background:linear-gradient(135deg,#0bd7c8,#8a3cff);color:#fff;margin-bottom:18px}.gp-vb-steps i{display:block;color:#04e4ff;font-size:24px;font-style:normal;margin-bottom:15px}.gp-vb-steps strong{display:block;color:#fff;margin-bottom:9px;font-size:15px}.gp-vb-steps span{color:#b0bed7;font-size:12px;line-height:1.55}.gp-vb-pressure-grid{display:grid;grid-template-columns:1fr 160px 1fr;gap:18px;align-items:center;margin-top:18px}.gp-vb-pressure-grid strong{color:#fff;font:950 26px JetBrains Mono,monospace}.gp-vb-pressure-grid strong:last-child{text-align:right}.gp-vb-pressure-grid small{display:block;color:#b1bed5;font:700 13px Inter,sans-serif;line-height:1.4;margin-top:9px}.gp-vb-donut{width:150px;height:150px;border-radius:999px;background:conic-gradient(#14d98f 0 62.48%,#ff315f 62.48% 100%);display:grid;place-items:center;box-shadow:0 0 24px #14d98f1f}.gp-vb-donut:after{content:"";width:82px;height:82px;border-radius:999px;background:#061126}.gp-vb-pressure-bar{height:12px;border-radius:999px;background:#ff315f;overflow:hidden;margin-top:24px}.gp-vb-pressure-bar span{display:block;width:62.48%;height:100%;background:#14d98f}.gp-vb-pressure p{display:flex;justify-content:space-between;color:#b1bed5;gap:14px}.gp-vb-pressure p b:first-child{color:#14d98f}.gp-vb-pressure p b:last-child{color:#ff315f}.gp-vb-recent h3{display:flex;justify-content:space-between;gap:12px;align-items:center}.gp-vb-recent a{color:#168cff;text-decoration:none;font-size:13px;font-weight:950}.gp-vb-table-head,.gp-vb-table-row{display:grid;grid-template-columns:1fr 1fr 1fr .7fr .8fr;gap:10px;align-items:center;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.055);color:#d8e2f0;font-size:13px}.gp-vb-table-head{color:#9fb0c9;font-weight:850}.gp-vb-table-row strong,.gp-vb-table-row .buy{color:#0df0b3}.gp-vb-table-row .sell{color:#ff315f}.gp-vb-benefits{display:grid;grid-template-columns:repeat(4,1fr);margin-top:22px;padding:18px 22px}.gp-vb-benefits div{min-height:94px;display:grid;grid-template-columns:60px 1fr;gap:15px;align-items:center;border-right:1px solid rgba(255,255,255,.07);padding-right:18px}.gp-vb-benefits div:last-child{border-right:0}.gp-vb-benefits i{width:52px;height:52px;display:grid;place-items:center;border-radius:999px;background:#0084ff1a;color:#17cfff;font-style:normal}.gp-vb-benefits strong{display:block;color:#fff;margin-bottom:6px}.gp-vb-benefits span{color:#aebbd2;font-size:13px;line-height:1.45}@media(max-width:1500px){.gp-vb-section,.gp-vb-lower{grid-template-columns:1fr}.gp-vb-steps,.gp-vb-benefits{grid-template-columns:repeat(2,1fr)}.gp-vb-benefits div{border-right:0}}@media(max-width:980px){.gp-vb-chart-wrap{grid-template-columns:1fr;min-height:480px}.gp-vb-rail{display:none}.gp-vb-metrics{grid-template-columns:repeat(2,1fr);padding:16px}.gp-vb-pressure-grid{grid-template-columns:1fr;text-align:left}.gp-vb-pressure-grid strong:last-child{text-align:left}.gp-vb-donut{margin:0 auto}}@media(max-width:640px){.gp-vb-section{padding-inline:14px}.gp-vb-head{padding-inline:12px}.gp-vb-metrics,.gp-vb-steps,.gp-vb-benefits{grid-template-columns:1fr}.gp-vb-chart-wrap{min-height:430px}.gp-vb-legend{left:12px;width:190px}.gp-vb-table-head,.gp-vb-table-row{grid-template-columns:1fr 1fr .85fr .6fr;font-size:12px}.gp-vb-table-head span:last-child,.gp-vb-table-row i{display:none}}.gp-cvd-section{align-items:start;grid-template-columns:minmax(280px,380px) minmax(760px,1fr);background:radial-gradient(circle at 76% 18%,rgba(15,129,255,.16),transparent 34%),radial-gradient(circle at 14% 58%,rgba(119,79,255,.12),transparent 34%),linear-gradient(180deg,#040c1feb,#020814f7);border:1px solid rgba(57,118,255,.24);border-radius:28px;padding:clamp(22px,3vw,36px) clamp(18px,2.6vw,34px);margin-top:34px;box-shadow:0 28px 100px #0000004d,inset 0 0 0 1px #ffffff05}.gp-cvd-section:before{background:radial-gradient(circle at 72% 20%,rgba(20,140,255,.14),transparent 35%),radial-gradient(circle at 18% 52%,rgba(121,86,255,.1),transparent 34%)}.gp-cvd-badge{border-color:#4a84ff7a;background:#102c646e;color:#d1e3ff}.gp-cvd-copy h2 span{background:linear-gradient(90deg,#875cff,#096dff 58%,#18ead3);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-cvd-copy li:before{border-color:#4d7effc7;color:#91adff}.gp-cvd-access{background:linear-gradient(135deg,#087cff,#10d8cf)!important;box-shadow:0 0 26px #087cff38!important}.gp-cvd-workspace{min-width:0}.gp-cvd-terminal,.gp-cvd-help{border:1px solid rgba(45,127,255,.31);border-radius:18px;background:linear-gradient(180deg,#07112adb,#030a18f0);box-shadow:0 24px 80px #0000002e,inset 0 0 38px #087cff09;overflow:hidden}.gp-cvd-terminal{position:relative}.gp-cvd-terminal:before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 73% 18%,rgba(33,103,255,.15),transparent 32%),radial-gradient(circle at 44% 76%,rgba(0,215,200,.07),transparent 31%)}.gp-cvd-head{position:relative;z-index:2;min-height:64px;display:flex;align-items:center;gap:12px;padding:0 20px;border-bottom:1px solid rgba(255,255,255,.07);overflow-x:auto;scrollbar-width:none}.gp-cvd-head::-webkit-scrollbar{display:none}.gp-cvd-head b{width:34px;height:34px;border:1px solid rgba(0,224,255,.28);border-radius:9px;display:grid;place-items:center;color:#eaffff;flex:0 0 auto}.gp-cvd-head span,.gp-cvd-head strong{flex:0 0 auto;min-height:34px;padding:0 12px;display:inline-flex;align-items:center;border:1px solid rgba(255,255,255,.11);border-radius:8px;color:#fff;background:#ffffff0b;font-weight:850;font-size:13px}.gp-cvd-head strong{background:#18418b9e;border-color:#3d86ff73}.gp-cvd-head i{margin-left:auto;flex:0 0 auto;color:#cbd8ed;font-style:normal}.gp-cvd-chart-wrap{position:relative;z-index:2;display:grid;grid-template-columns:58px 1fr;min-height:clamp(470px,34vw,610px)}.gp-cvd-rail{display:flex;flex-direction:column;align-items:center;gap:13px;padding-top:24px;border-right:1px solid rgba(255,255,255,.06);color:#d7e1f3;background:#030a1670}.gp-cvd-rail span{width:29px;height:29px;display:grid;place-items:center;border-radius:7px;font-size:16px;opacity:.9}.gp-cvd-chart{position:relative;min-height:inherit;overflow:hidden;background:linear-gradient(rgba(255,255,255,.033) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.033) 1px,transparent 1px),radial-gradient(circle at 68% 28%,rgba(33,103,255,.12),transparent 36%);background-size:82px 50px,82px 50px,100% 100%}.gp-cvd-svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible}.gp-cvd-price-tag{position:absolute;right:22px;top:51%;z-index:6;padding:8px 12px;border-radius:6px;background:#13c486;color:#fff;font:950 14px JetBrains Mono,monospace;box-shadow:0 0 20px #13c4862e}.gp-cvd-legend{position:relative;z-index:2;min-height:48px;display:flex;align-items:center;gap:22px;border-top:1px solid rgba(255,255,255,.06);padding:0 28px 0 82px;color:#b7c4d8;font-size:13px}.gp-cvd-legend i{width:10px;height:10px;display:inline-block;border-radius:2px;margin-right:8px}.gp-cvd-metrics{position:relative;z-index:2;display:grid;grid-template-columns:repeat(5,1fr);gap:14px;padding:20px 24px 24px 82px;border-top:1px solid rgba(255,255,255,.07)}.gp-cvd-metrics>div{min-height:100px;border:1px solid rgba(45,127,255,.22);border-radius:13px;background:#07112ab3;padding:16px}.gp-cvd-metrics small{display:block;color:#aebbd4;font-size:13px;margin-bottom:4px}.gp-cvd-metrics span{display:block;color:#cbd8ed;font-size:13px;margin-bottom:10px}.gp-cvd-metrics strong{color:#0df0b3;font:950 22px JetBrains Mono,monospace}.gp-cvd-metrics strong.red{color:#ff315f}.gp-cvd-metrics strong.neutral{color:#fff}.gp-cvd-below{margin-top:22px}.gp-cvd-help{padding:22px}.gp-cvd-help h3{margin:0 0 16px;color:#fff;font-size:20px}.gp-cvd-help>div{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.gp-cvd-help article{border:1px solid rgba(45,127,255,.16);border-radius:13px;background:#061127a8;padding:16px;min-height:150px}.gp-cvd-help i{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#087cff1f;color:#14d8ff;font-style:normal;margin-bottom:12px}.gp-cvd-help strong{display:block;color:#fff;margin-bottom:8px}.gp-cvd-help span{color:#b0bed7;font-size:13px;line-height:1.55}@media(max-width:1500px){.gp-cvd-section{grid-template-columns:1fr}.gp-cvd-help>div{grid-template-columns:repeat(2,1fr)}}@media(max-width:980px){.gp-cvd-chart-wrap{grid-template-columns:1fr;min-height:480px}.gp-cvd-rail{display:none}.gp-cvd-metrics{grid-template-columns:repeat(2,1fr);padding:16px}.gp-cvd-legend{padding-left:16px;flex-wrap:wrap}}@media(max-width:640px){.gp-cvd-section{padding-inline:14px}.gp-cvd-head{padding-inline:12px}.gp-cvd-metrics,.gp-cvd-help>div{grid-template-columns:1fr}.gp-cvd-chart-wrap{min-height:430px}}.gp-ai-section{position:relative;max-width:1880px;margin:0 auto;padding:clamp(70px,7vw,118px) clamp(18px,3vw,44px);display:grid;grid-template-columns:minmax(280px,430px) minmax(0,1fr);gap:clamp(28px,4vw,56px);align-items:start;background:radial-gradient(circle at 72% 15%,rgba(139,53,255,.12),transparent 34%),radial-gradient(circle at 12% 60%,rgba(0,150,255,.1),transparent 36%),linear-gradient(180deg,#020712f5,#020b1afa);border-top:1px solid rgba(45,127,255,.16);overflow:hidden}.gp-ai-badge{border-color:#8b35ff73;background:#34175a6b;color:#d9c5ff}.gp-ai-copy h2 span{display:block;background:linear-gradient(90deg,#8b35ff,#0d8dff 58%,#18ead3);-webkit-background-clip:text;background-clip:text;color:transparent}.gp-ai-copy h3{color:#fff}.gp-ai-copy li:before{border-color:#945fffd9;color:#b287ff}.gp-ai-access{background:linear-gradient(135deg,#7d42ff,#10d8cf)!important}.gp-ai-main{min-width:0}.gp-ai-top-actions{display:flex;justify-content:flex-end;gap:14px;margin-bottom:16px}.gp-ai-top-actions button{min-height:42px;padding:0 20px;border:1px solid rgba(57,118,255,.32);border-radius:11px;background:#08122aa3;color:#fff;font-weight:900;cursor:pointer}.gp-ai-layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:18px}.gp-ai-panel{border:1px solid rgba(45,127,255,.25);border-radius:17px;background:linear-gradient(180deg,#08122adb,#040b1af0);box-shadow:0 26px 90px #0003,inset 0 0 34px #8b35ff09;overflow:hidden}.gp-ai-feed-head{min-height:58px;display:flex;align-items:center;gap:8px;padding:0 18px;border-bottom:1px solid rgba(255,255,255,.065);overflow-x:auto;scrollbar-width:none}.gp-ai-feed-head::-webkit-scrollbar{display:none}.gp-ai-feed-head h3{margin:0 12px 0 0;color:#fff;font-size:18px;flex:0 0 auto}.gp-ai-feed-head span,.gp-ai-feed-head b{flex:0 0 auto;padding:8px 11px;border-radius:8px;background:#ffffff09;color:#aab8d3;font-size:12px;font-weight:850}.gp-ai-feed-head span.active{background:#2f6affb8;color:#fff;box-shadow:0 0 20px #2f6aff38}.gp-ai-feed-head b{color:#dbe7ff;border:1px solid rgba(255,255,255,.08)}.gp-ai-news-row{display:grid;grid-template-columns:74px 70px minmax(0,1fr) 105px 92px;gap:14px;padding:18px;border-bottom:1px solid rgba(255,255,255,.06);align-items:start}.gp-ai-news-row time{color:#aab7cb;font-size:13px}.gp-ai-source{width:44px;height:44px;display:grid;place-items:center;border-radius:999px;background:#ffffff0d;color:#fff;font-weight:950;position:relative}.gp-ai-source small{position:absolute;top:48px;left:50%;transform:translate(-50%);font-size:10px;color:#aab7cb;white-space:nowrap}.gp-ai-source.reuters{color:#ff5d35}.gp-ai-source.coindesk{color:#ffd33d}.gp-ai-story i{display:inline-flex;padding:6px 9px;border-radius:7px;font-style:normal;font-size:11px;font-weight:950;margin-bottom:8px}.gp-ai-story i.red{background:#ff335b33;color:#ff86a0}.gp-ai-story i.blue{background:#1e78ff2e;color:#87b8ff}.gp-ai-story i.purple{background:#8b35ff38;color:#c59cff}.gp-ai-story i.green{background:#13df912e;color:#75ffd0}.gp-ai-story strong{display:block;color:#fff;font-size:16px;line-height:1.25}.gp-ai-story p{margin:8px 0 9px;color:#bac6da;line-height:1.48}.gp-ai-story em{display:flex;gap:8px;flex-wrap:wrap;font-style:normal}.gp-ai-story em span{padding:6px 9px;border-radius:7px;background:#ffffff0e;color:#bcc9dd;font-size:11px;font-weight:850}.gp-ai-impact span,.gp-ai-sentiment span{display:block;color:#a7b5cb;font-size:12px;margin-bottom:8px}.gp-ai-impact b,.gp-ai-sentiment b{display:block;font-size:15px}.gp-ai-section .red{color:#ff335b!important}.gp-ai-section .green{color:#13df91!important}.gp-ai-section .orange{color:#ffb22b!important}.gp-ai-link{display:inline-flex;color:#a855ff;text-decoration:none;font-weight:950;margin:18px}.gp-ai-side{display:grid;gap:18px}.gp-ai-side .gp-ai-panel{padding:18px}.gp-ai-panel h3{margin:0 0 16px;color:#fff;font-size:18px;display:flex;justify-content:space-between;gap:12px;align-items:center}.gp-ai-panel h3 small{color:#93a4bd}.gp-ai-panel h3 a{color:#9a58ff;text-decoration:none;font-size:13px}.gp-ai-sentiment-card svg{width:100%;height:70px;margin-top:12px}.gp-ai-gauge{height:132px;display:grid;place-items:center;background:conic-gradient(from 225deg,#ff335b 0 22%,#ffb22b 22% 45%,#e4f060 45% 58%,#13df91 58% 75%,transparent 75% 100%);border-radius:999px 999px 12px 12px;max-width:190px;margin:0 auto;position:relative;overflow:hidden}.gp-ai-gauge:after{content:"";position:absolute;inset:26px 26px 0;background:#071225;border-radius:999px 999px 8px 8px}.gp-ai-gauge div{position:relative;z-index:2;text-align:center;padding-top:20px}.gp-ai-gauge strong{display:block;color:#fff;font-size:32px}.gp-ai-gauge span{color:#13df91;font-weight:900}.gp-ai-today{display:flex;justify-content:space-around;color:#c5d0e2;margin:14px 0 4px}.gp-ai-today b{display:block;color:#13df91;margin-top:5px}.gp-ai-events div{display:grid;grid-template-columns:54px 1fr auto;gap:12px;align-items:center;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.055)}.gp-ai-events b{display:grid;place-items:center;min-height:52px;border-radius:9px;background:linear-gradient(135deg,#2f5bff,#1c2f80);color:#fff;font-size:12px;text-align:center}.gp-ai-events strong{display:block;color:#fff;font-size:13px}.gp-ai-events small{display:block;color:#9dadc4;margin-top:4px}.gp-ai-events i{font-style:normal;padding:6px 10px;border-radius:999px;background:#ff335b1f;color:#ff6f8a;font-size:11px;font-weight:900}.gp-ai-events i.med{color:#ffbd59;background:#ffb22b1f}.gp-ai-lower{display:grid;grid-template-columns:1.1fr 1fr 1fr;gap:18px;margin-top:20px}.gp-ai-lower .gp-ai-panel{padding:22px}.gp-ai-impact-wrap{display:grid;grid-template-columns:180px 1fr;gap:22px;align-items:center}.gp-ai-donut{width:150px;height:150px;border-radius:999px;background:conic-gradient(#ff335b 0 17%,#ffb22b 17% 57%,#13df91 57% 100%);display:grid;place-items:center;margin:auto;position:relative}.gp-ai-donut:after{content:"";position:absolute;width:82px;height:82px;border-radius:999px;background:#061126}.gp-ai-donut strong,.gp-ai-donut span{position:relative;z-index:2;text-align:center}.gp-ai-donut strong{color:#fff;font:950 22px JetBrains Mono,monospace;margin-top:18px}.gp-ai-donut span{color:#fff;font-size:11px;font-weight:900;margin-top:-42px}.gp-ai-impact-card p{display:grid;grid-template-columns:16px 1fr auto;gap:9px;align-items:center;color:#cbd6e8}.gp-ai-impact-card .dot{width:10px;height:10px;border-radius:999px;display:inline-block}.gp-ai-impact-card .dot.red{background:#ff335b}.gp-ai-impact-card .dot.orange{background:#ffb22b}.gp-ai-impact-card .dot.green{background:#13df91}.gp-ai-impact-card h4{margin:18px 0 10px;color:#fff}.gp-ai-impact-card ol{margin:0;padding-left:18px;color:#cbd6e8}.gp-ai-impact-card li{margin:9px 0}.gp-ai-impact-card li b{float:right;color:#13df91}.gp-ai-summary-body{display:grid;grid-template-columns:58px 1fr;gap:18px}.gp-ai-summary-body div{width:58px;height:58px;display:grid;place-items:center;border-radius:14px;border:1px solid rgba(168,85,255,.32);background:#a855ff1f;color:#d9b6ff;font-size:27px}.gp-ai-summary-body p{margin:0;color:#c5d0e2;line-height:1.65}.gp-ai-summary-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:24px}.gp-ai-summary-kpis span{padding:14px;border:1px solid rgba(255,255,255,.07);border-radius:12px;color:#aebbd2;background:#ffffff09}.gp-ai-summary-kpis b{display:block;margin-top:6px;color:#fff}.gp-ai-alert{display:grid;grid-template-columns:48px 1fr auto;gap:12px;align-items:center;padding:12px 0}.gp-ai-alert i{width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:#ff335b14;color:#ff335b;font-style:normal}.gp-ai-alert i.green{background:#13df9114}.gp-ai-alert i.purple{background:#8b35ff1a}.gp-ai-alert strong{display:block;color:#fff}.gp-ai-alert small{display:block;color:#aebbd2;margin-top:5px}.gp-ai-alert time{color:#9dadc4;font-size:12px}.gp-ai-benefits{display:grid;grid-template-columns:repeat(5,1fr);margin-top:20px;border:1px solid rgba(45,127,255,.22);border-radius:17px;background:#050e21c7;overflow:hidden}.gp-ai-benefits div{min-height:98px;display:grid;grid-template-columns:58px 1fr;gap:15px;align-items:center;padding:18px;border-right:1px solid rgba(255,255,255,.07)}.gp-ai-benefits div:last-child{border-right:0}.gp-ai-benefits i{width:52px;height:52px;display:grid;place-items:center;border-radius:999px;background:#0084ff1a;font-style:normal}.gp-ai-benefits strong{display:block;color:#fff;margin-bottom:5px}.gp-ai-benefits span{color:#aebbd2;font-size:13px;line-height:1.45}@media(max-width:1550px){.gp-ai-section,.gp-ai-layout{grid-template-columns:1fr}.gp-ai-side{grid-template-columns:1fr 1fr}}@media(max-width:1120px){.gp-ai-lower{grid-template-columns:1fr}.gp-ai-benefits{grid-template-columns:repeat(2,1fr)}.gp-ai-benefits div{border-right:0}.gp-ai-news-row{grid-template-columns:70px minmax(0,1fr)}.gp-ai-source,.gp-ai-impact,.gp-ai-sentiment,.gp-ai-story{grid-column:2}}@media(max-width:720px){.gp-ai-section{padding-inline:14px}.gp-ai-side{grid-template-columns:1fr}.gp-ai-news-row{grid-template-columns:1fr;gap:10px}.gp-ai-source,.gp-ai-story,.gp-ai-impact,.gp-ai-sentiment{grid-column:auto}.gp-ai-source small{position:static;transform:none}.gp-ai-impact-wrap,.gp-ai-summary-body,.gp-ai-alert,.gp-ai-summary-kpis,.gp-ai-benefits{grid-template-columns:1fr}}.gp-ai-calendar-open,.gp-ai-link-button{border:0;background:transparent;color:#a855f7;font:inherit;font-weight:900;cursor:pointer;padding:0;text-align:left}.home-ai-calendar-modal{position:fixed;inset:0;z-index:99960;display:flex;align-items:center;justify-content:center;padding:24px;background:#010612bd;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px)}.home-ai-calendar-window{width:min(1120px,calc(100vw - 40px));max-height:calc(100vh - 46px);overflow:auto;border-radius:28px;border:1px solid rgba(38,166,255,.3);background:radial-gradient(circle at 8% 0%,rgba(0,140,255,.22),transparent 35%),radial-gradient(circle at 92% 4%,rgba(139,92,246,.2),transparent 32%),#071126;color:#f8fbff;padding:26px;box-shadow:0 28px 90px #0000008f}.home-ai-calendar-close{position:sticky;float:right;top:0;width:38px;height:38px;border-radius:14px;border:1px solid rgba(255,255,255,.14);background:#ffffff14;color:#fff;font-size:22px;cursor:pointer}.home-ai-calendar-head{display:flex;justify-content:space-between;gap:22px;align-items:flex-start;margin-bottom:18px;padding-right:50px}.home-ai-calendar-head span{color:#6cf7ff;font-size:11px;letter-spacing:.14em;font-weight:1000}.home-ai-calendar-head h2{margin:6px 0;font-size:clamp(30px,4vw,48px);letter-spacing:-.055em;line-height:.95}.home-ai-calendar-head p{margin:0;max-width:760px;color:#e2ecffbd;line-height:1.55}.home-ai-calendar-head a{color:#a855f7;text-decoration:none;font-weight:950;white-space:nowrap}.home-ai-calendar-filters{display:flex;flex-wrap:wrap;gap:9px;margin:14px 0 18px}.home-ai-calendar-filters button{border:1px solid rgba(38,166,255,.22);background:#ffffff0e;color:#dceaff;border-radius:999px;padding:10px 13px;font-weight:900;cursor:pointer}.home-ai-calendar-filters button.active{background:linear-gradient(135deg,#2563ebe0,#0fddd399);color:#fff;box-shadow:0 0 20px #0fddd329}.home-ai-calendar-grid{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:16px}.home-ai-calendar-grid section,.home-ai-calendar-grid aside{border:1px solid rgba(255,255,255,.09);border-radius:20px;background:#ffffff0b;padding:18px}.home-ai-calendar-grid h3{margin:0 0 14px;font-size:19px}.home-ai-calendar-list{display:grid;gap:10px}.home-ai-calendar-row{border:1px solid rgba(255,255,255,.08);border-radius:16px;background:#0108188c;padding:13px}.home-ai-calendar-row b,.home-ai-calendar-row small,.home-ai-calendar-row span{display:block}.home-ai-calendar-row b{color:#fff;font-size:14px}.home-ai-calendar-row small{color:#8ea0bf;margin:5px 0}.home-ai-calendar-row span{color:#c5d3ec;line-height:1.45}.home-ai-high{border-color:#ff335b47}.home-ai-holiday{border-color:#ffd56a3d}.home-ai-insight-card{border-top:1px solid rgba(255,255,255,.08);padding:13px 0}.home-ai-insight-card:first-of-type{border-top:0;padding-top:0}.home-ai-insight-card strong,.home-ai-insight-card span{display:block}.home-ai-insight-card strong{color:#fff}.home-ai-insight-card span{color:#aebbd4;margin-top:5px;line-height:1.45}@media(max-width:900px){.home-ai-calendar-grid{grid-template-columns:1fr}.home-ai-calendar-head{flex-direction:column}}@media(min-width:901px){html,body{overflow-x:auto!important}body:not(.terminal-active):not(.gp-terminal-active) .home-page{min-width:1180px!important;overflow-x:auto!important}body:not(.terminal-active):not(.gp-terminal-active) .home-nav.gp-nav-v2{display:flex!important;flex-wrap:nowrap!important;align-items:center!important;height:74px!important;min-height:74px!important;min-width:1180px!important;padding:0 clamp(14px,1.6vw,30px)!important;gap:clamp(10px,1.15vw,22px)!important;overflow:visible!important}body:not(.terminal-active):not(.gp-terminal-active) .home-brand.gp-brand-v2{flex:0 0 auto!important;max-width:230px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;font-size:clamp(16px,1.2vw,21px)!important}body:not(.terminal-active):not(.gp-terminal-active) .gp-brand-v2 .home-brand-logo{flex:0 0 auto!important;width:clamp(31px,2.2vw,39px)!important;height:clamp(31px,2.2vw,39px)!important}body:not(.terminal-active):not(.gp-terminal-active) .gp-menu-v2,body:not(.terminal-active):not(.gp-terminal-active) .home-menu{flex:1 1 auto!important;min-width:0!important;width:auto!important;display:flex!important;flex-wrap:nowrap!important;align-items:center!important;justify-content:center!important;gap:clamp(8px,1.15vw,26px)!important;overflow:visible!important;white-space:nowrap!important}body:not(.terminal-active):not(.gp-terminal-active) .gp-menu-v2>span,body:not(.terminal-active):not(.gp-terminal-active) .gp-menu-v2>a,body:not(.terminal-active):not(.gp-terminal-active) .home-menu>span,body:not(.terminal-active):not(.gp-terminal-active) .home-menu>a{flex:0 0 auto!important;min-width:0!important;font-size:clamp(10px,.78vw,14px)!important;line-height:1.05!important;padding:clamp(8px,.72vw,12px) clamp(9px,.92vw,18px)!important;letter-spacing:0!important;white-space:nowrap!important}body:not(.terminal-active):not(.gp-terminal-active) .home-actions.gp-actions-v2{flex:0 0 auto!important;display:flex!important;flex-wrap:nowrap!important;align-items:center!important;justify-content:flex-end!important;width:auto!important;gap:clamp(8px,.8vw,12px)!important;margin-left:0!important}body:not(.terminal-active):not(.gp-terminal-active) .home-actions.gp-actions-v2 .home-btn{flex:0 0 auto!important;min-height:40px!important;height:auto!important;padding:clamp(10px,.82vw,14px) clamp(13px,1.25vw,24px)!important;font-size:clamp(11px,.78vw,14px)!important;white-space:nowrap!important}body:not(.terminal-active):not(.gp-terminal-active) .gp-home-v2{min-width:1180px!important}body:not(.terminal-active):not(.gp-terminal-active) .home-hero.gp-hero-v2{grid-template-columns:minmax(410px,.86fr) minmax(560px,1.14fr)!important;gap:clamp(22px,3vw,58px)!important}}@media(min-width:901px)and (max-width:1360px){body:not(.terminal-active):not(.gp-terminal-active) .gp-menu-v2>span,body:not(.terminal-active):not(.gp-terminal-active) .gp-menu-v2>a{font-size:11px!important;padding:9px 10px!important}body:not(.terminal-active):not(.gp-terminal-active) .home-brand.gp-brand-v2 span{display:inline-block!important;max-width:170px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body:not(.terminal-active):not(.gp-terminal-active) .gp-actions-v2 .home-btn{padding-inline:13px!important}}@media(min-width:901px){body.terminal-active,body.gp-terminal-active{overflow:hidden!important}body.terminal-active #app,body.gp-terminal-active #app{min-width:1180px!important}body.terminal-active .header,body.gp-terminal-active .header{flex-wrap:nowrap!important;overflow:hidden!important;gap:clamp(5px,.6vw,10px)!important;padding-inline:clamp(6px,.7vw,12px)!important}body.terminal-active .header__logo,body.gp-terminal-active .header__logo{flex:0 1 180px!important;min-width:0!important;white-space:nowrap!important}body.terminal-active .header__logo span,body.gp-terminal-active .header__logo span{max-width:130px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body.terminal-active .header__controls,body.gp-terminal-active .header__controls{flex:1 1 auto!important;min-width:0!important;gap:clamp(5px,.45vw,8px)!important;justify-content:flex-end!important;overflow:hidden!important}body.terminal-active .selector,body.gp-terminal-active .selector{flex:0 1 auto!important;min-width:0!important}body.terminal-active .selector__trigger,body.terminal-active .btn,body.terminal-active .tv-top-tool,body.gp-terminal-active .selector__trigger,body.gp-terminal-active .btn,body.gp-terminal-active .tv-top-tool{min-width:0!important;padding-inline:clamp(7px,.7vw,12px)!important;font-size:clamp(10px,.72vw,12px)!important;white-space:nowrap!important}body.terminal-active #prime-orderflow-btn,body.terminal-active #prime-indicator-btn,body.gp-terminal-active #prime-orderflow-btn,body.gp-terminal-active #prime-indicator-btn{max-width:154px!important}body.terminal-active .timeframes,body.gp-terminal-active .timeframes{overflow:hidden!important}body.terminal-active .timeframes__scroll,body.gp-terminal-active .timeframes__scroll,body.terminal-active .timeframes__tools,body.gp-terminal-active .timeframes__tools{min-width:0!important;overflow-x:auto!important;scrollbar-width:none!important}body.terminal-active .timeframes__scroll::-webkit-scrollbar,body.gp-terminal-active .timeframes__scroll::-webkit-scrollbar,body.terminal-active .timeframes__tools::-webkit-scrollbar,body.gp-terminal-active .timeframes__tools::-webkit-scrollbar{display:none!important}}.gp-top-menu,.gp-terminal-livebar,.gp-terminal-side,.gp-market-overview,.gp-market-widgets,.gp-terminal-bottom,.gp-chart-card-head{display:none}body.terminal-active,body.gp-terminal-active{background:radial-gradient(circle at 18% 10%,rgba(0,114,255,.1),transparent 28%),radial-gradient(circle at 88% 18%,rgba(0,244,165,.06),transparent 25%),linear-gradient(135deg,#020812,#06101d 42%,#020710)!important;overflow:hidden;color:#dce7f7}body.terminal-active .home-page,body.gp-terminal-active .home-page{display:none!important}body.terminal-active #app,body.gp-terminal-active #app{height:100dvh;width:100vw;overflow:hidden;background:transparent!important;color:#dce7f7}body.terminal-active .header,body.gp-terminal-active .header{background:#020812eb!important;border-bottom:1px solid rgba(70,123,196,.18)!important;box-shadow:0 12px 28px #00000042;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px)}body.terminal-active .header__logo,body.gp-terminal-active .header__logo{min-width:178px;gap:8px;color:#2f9bff!important;letter-spacing:.02em;font-weight:900}body.terminal-active .header__logo-img,body.gp-terminal-active .header__logo-img{width:28px;height:28px;border-radius:7px;object-fit:contain;filter:drop-shadow(0 0 10px rgba(0,126,255,.45))}body.terminal-active .gp-top-menu,body.gp-terminal-active .gp-top-menu{display:flex;align-items:stretch;height:100%;min-width:0;flex:1 1 auto;overflow:hidden}body.terminal-active .gp-top-menu button,body.terminal-active .gp-top-menu a,body.gp-terminal-active .gp-top-menu button,body.gp-terminal-active .gp-top-menu a{display:inline-flex;align-items:center;justify-content:center;height:100%;padding:0 13px;border:0;border-left:1px solid transparent;border-right:1px solid transparent;color:#d9e5f6db;background:transparent;font:750 12px/1 var(--font-sans);text-decoration:none;white-space:nowrap;cursor:pointer;transition:.18s ease}body.terminal-active .gp-top-menu button:hover,body.terminal-active .gp-top-menu a:hover,body.terminal-active .gp-top-menu .active,body.gp-terminal-active .gp-top-menu button:hover,body.gp-terminal-active .gp-top-menu a:hover,body.gp-terminal-active .gp-top-menu .active{color:#f7fbff;background:linear-gradient(180deg,#1266ff33,#1266ff12);border-color:#2485ff2e;box-shadow:inset 0 -2px #1677ff}body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar{display:inline-flex;align-items:center;gap:7px;height:30px;padding:0 8px;color:#c9d6ea;font-size:12px;white-space:nowrap}body.terminal-active .gp-live-dot,body.gp-terminal-active .gp-live-dot{width:8px;height:8px;border-radius:999px;background:#09da79;box-shadow:0 0 0 4px #09da791a,0 0 12px #09da79bf}body.terminal-active #gp-terminal-clock,body.gp-terminal-active #gp-terminal-clock{color:#eef6ffd6;font-family:var(--font-mono);font-weight:600}body.terminal-active .selector,body.gp-terminal-active .selector{flex:0 0 auto}body.terminal-active .selector__trigger,body.gp-terminal-active .selector__trigger,body.terminal-active .header__timeframe,body.gp-terminal-active .header__timeframe,body.terminal-active .btn--chart-settings,body.gp-terminal-active .btn--chart-settings,body.terminal-active .header__controls .btn,body.gp-terminal-active .header__controls .btn{height:32px;border-radius:8px;border:1px solid rgba(96,137,198,.22)!important;background:#050d1cdb!important;color:#e5eefb!important;box-shadow:none!important}body.terminal-active .btn--chart-settings,body.gp-terminal-active .btn--chart-settings,body.terminal-active .header__timeframe,body.gp-terminal-active .header__timeframe,body.terminal-active #tools-panel-btn,body.gp-terminal-active #tools-panel-btn{display:none!important}body.terminal-active .header__controls,body.gp-terminal-active .header__controls{margin-left:0;gap:7px}body.terminal-active .header__controls .btn,body.gp-terminal-active .header__controls .btn{min-width:34px;padding:0 9px;font-size:13px}body.terminal-active .selector__dropdown,body.gp-terminal-active .selector__dropdown{background:#030a16fa!important;border-color:#5091e747!important;box-shadow:0 18px 44px #0000007a!important}body.terminal-active .chart-settings-panel,body.terminal-active .watchlist-panel,body.gp-terminal-active .chart-settings-panel,body.gp-terminal-active .watchlist-panel{z-index:9500!important}body.terminal-active .positive,body.gp-terminal-active .positive,body.terminal-active .metric__value--positive,body.gp-terminal-active .metric__value--positive{color:#19d97f!important}body.terminal-active .negative,body.gp-terminal-active .negative,body.terminal-active .metric__value--negative,body.gp-terminal-active .metric__value--negative{color:#ff4d67!important}@media(min-width:1181px){body.terminal-active #app,body.gp-terminal-active #app{display:grid!important;grid-template-columns:132px minmax(520px,1fr) 238px 328px;grid-template-rows:48px 70px minmax(300px,1fr) 132px 256px;gap:8px;padding:0 8px 8px}body.terminal-active .header,body.gp-terminal-active .header{grid-column:1 / 5;grid-row:1;height:48px!important;min-height:48px;padding:0 8px!important;gap:8px}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{grid-column:1;grid-row:2 / 6;display:flex;min-height:0;flex-direction:column;justify-content:space-between;padding:8px;border-radius:10px;border:1px solid rgba(70,123,196,.14);background:#030a16b8;box-shadow:inset 1px 0 #ffffff08,0 18px 46px #00000038;overflow:hidden}body.terminal-active .gp-terminal-side nav,body.gp-terminal-active .gp-terminal-side nav{display:grid;gap:5px}body.terminal-active .gp-terminal-side a,body.terminal-active .gp-terminal-side button,body.gp-terminal-active .gp-terminal-side a,body.gp-terminal-active .gp-terminal-side button{display:flex;align-items:center;gap:10px;width:100%;min-height:36px;padding:0 8px;border:1px solid transparent;border-radius:9px;color:#dae7f8d1;background:transparent;text-decoration:none;font:720 12px/1 var(--font-sans);cursor:pointer;transition:.18s ease}body.terminal-active .gp-terminal-side span,body.gp-terminal-active .gp-terminal-side span{width:16px;text-align:center;color:#87a6c9;font-size:15px}body.terminal-active .gp-terminal-side a:hover,body.terminal-active .gp-terminal-side button:hover,body.terminal-active .gp-terminal-side .active,body.gp-terminal-active .gp-terminal-side a:hover,body.gp-terminal-active .gp-terminal-side button:hover,body.gp-terminal-active .gp-terminal-side .active{color:#f8fbff;background:#145cc42e;border-color:#1d80ff2e}body.terminal-active .gp-plan-card,body.gp-terminal-active .gp-plan-card{display:grid;gap:5px;padding:10px;border-radius:9px;border:1px solid rgba(56,128,255,.18);background:linear-gradient(180deg,#0c182edb,#070e1ed1)}body.terminal-active .gp-plan-card strong,body.gp-terminal-active .gp-plan-card strong{color:#fff;font-size:12px}body.terminal-active .gp-plan-card b,body.gp-terminal-active .gp-plan-card b{justify-self:end;margin-top:-20px;color:#1fe081;font-size:11px}body.terminal-active .gp-plan-card span,body.gp-terminal-active .gp-plan-card span{width:auto;text-align:left;color:#dfe9f7a3;font-size:10px}body.terminal-active .gp-plan-card button,body.gp-terminal-active .gp-plan-card button{height:30px;border-radius:7px;border:1px solid rgba(43,128,255,.24);background:#1b66d633;color:#bcd9ff;font-weight:800}body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview{grid-column:2 / 5;grid-row:2;display:grid;min-height:0;grid-template-columns:1.25fr 1.45fr repeat(4,1fr) 1.45fr;border-radius:6px;border:1px solid rgba(70,123,196,.14);background:#040c19b8;overflow:hidden}body.terminal-active .gp-overview-card,body.gp-terminal-active .gp-overview-card,body.terminal-active .gp-overview-sentiment,body.gp-terminal-active .gp-overview-sentiment{min-width:0;display:flex;flex-direction:column;justify-content:center;gap:5px;padding:10px 14px;border-right:1px solid rgba(82,129,195,.13);background:linear-gradient(180deg,#0712228f,#0309145c)}body.terminal-active .gp-overview-card span,body.gp-terminal-active .gp-overview-card span,body.terminal-active .gp-overview-sentiment span,body.gp-terminal-active .gp-overview-sentiment span{color:#d3deefa6;font-size:10px;font-weight:850;letter-spacing:.055em}body.terminal-active .gp-overview-card strong,body.gp-terminal-active .gp-overview-card strong{color:#f5f8ff;font-family:var(--font-mono);font-size:16px;line-height:1}body.terminal-active .gp-overview-card em,body.gp-terminal-active .gp-overview-card em{font-style:normal;color:#1fe081;font-size:10px;font-weight:800}body.terminal-active .gp-overview-market strong,body.gp-terminal-active .gp-overview-market strong{display:inline-flex;align-items:center;width:100%;height:28px;padding:0 10px;border-radius:5px;background:#020812d1;border:1px solid rgba(87,127,184,.16);font-size:12px}body.terminal-active .gp-overview-sentiment,body.gp-terminal-active .gp-overview-sentiment{align-items:center;gap:3px;border-right:0}body.terminal-active .gp-overview-sentiment strong,body.gp-terminal-active .gp-overview-sentiment strong{color:#19d97f;font-size:17px;font-weight:950}body.terminal-active .gp-overview-sentiment.bearish strong,body.gp-terminal-active .gp-overview-sentiment.bearish strong{color:#ff4d67}body.terminal-active .gp-gauge,body.gp-terminal-active .gp-gauge{width:84px;height:32px;position:relative;overflow:hidden}body.terminal-active .gp-gauge:before,body.gp-terminal-active .gp-gauge:before{content:"";position:absolute;inset:0 0 auto;height:64px;border-radius:64px 64px 0 0;background:conic-gradient(from 270deg,#ff304d 0deg,#ffcf3f 58deg,#1fd982 126deg,transparent 127deg 360deg);-webkit-mask:radial-gradient(circle at 50% 100%,transparent 0 35px,#000 36px);mask:radial-gradient(circle at 50% 100%,transparent 0 35px,#000 36px)}body.terminal-active .gp-gauge i,body.gp-terminal-active .gp-gauge i{position:absolute;left:50%;bottom:2px;width:2px;height:25px;background:#eef6ff;transform-origin:bottom;transform:rotate(-8deg);box-shadow:0 0 8px #ffffffa6}body.terminal-active .main,body.gp-terminal-active .main{grid-column:2;grid-row:3 / 5;display:block!important;min-width:0;min-height:0;overflow:hidden;background:transparent!important}body.terminal-active .chart-container,body.gp-terminal-active .chart-container{height:100%;min-height:0;min-width:0;margin-left:0!important;display:flex;flex-direction:column;border-radius:6px;border:1px solid rgba(70,123,196,.14);background:#040c19ad!important;overflow:hidden;box-shadow:inset 0 1px #ffffff08}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:42px;padding:0 12px 0 14px;border-bottom:1px solid rgba(70,123,196,.12);background:#060f1d7a}body.terminal-active .gp-chart-card-head span,body.gp-terminal-active .gp-chart-card-head span{display:block;color:#f4f8ff;font-size:12px;font-weight:900;letter-spacing:.045em}body.terminal-active .gp-chart-card-head strong,body.gp-terminal-active .gp-chart-card-head strong{display:block;margin-top:2px;color:#d1e0f39e;font:700 10px/1 var(--font-mono)}body.terminal-active .gp-chart-head-actions,body.gp-terminal-active .gp-chart-head-actions{display:flex;align-items:center;gap:5px}body.terminal-active .gp-chart-head-actions button,body.gp-terminal-active .gp-chart-head-actions button{height:25px;padding:0 9px;border-radius:5px;border:1px solid rgba(72,118,183,.14);background:#081223ad;color:#dde9f9bd;font-size:10px;font-weight:800;cursor:pointer}body.terminal-active .gp-chart-head-actions button:hover,body.terminal-active .gp-chart-head-actions .active,body.gp-terminal-active .gp-chart-head-actions button:hover,body.gp-terminal-active .gp-chart-head-actions .active{background:#0c55c9;color:#fff}body.terminal-active .timeframes,body.gp-terminal-active .timeframes{display:flex!important;height:34px!important;min-height:34px;padding:4px 10px!important;border-bottom:1px solid rgba(70,123,196,.12)!important;background:#02081259!important;overflow:hidden}body.terminal-active .timeframes__scroll,body.gp-terminal-active .timeframes__scroll{display:flex;width:100%;align-items:center;gap:4px;overflow:hidden}body.terminal-active .timeframe-btn,body.gp-terminal-active .timeframe-btn,body.terminal-active .tv-top-tool,body.gp-terminal-active .tv-top-tool{height:24px;padding:0 9px;border-radius:5px;color:#d5e3f6b3;background:transparent;border:1px solid transparent;font-size:10px;font-weight:800}body.terminal-active .timeframe-btn:hover,body.terminal-active .timeframe-btn.active,body.terminal-active .tv-top-tool:hover,body.terminal-active .tv-top-tool.active,body.gp-terminal-active .timeframe-btn:hover,body.gp-terminal-active .timeframe-btn.active,body.gp-terminal-active .tv-top-tool:hover,body.gp-terminal-active .tv-top-tool.active{background:#0b63e7!important;color:#fff!important;border-color:#3d95ff4d}body.terminal-active .timeframes__tools,body.gp-terminal-active .timeframes__tools{margin-left:auto;display:flex;align-items:center;gap:4px}body.terminal-active .timeframe-select,body.gp-terminal-active .timeframe-select,body.terminal-active .timeframes__divider,body.gp-terminal-active .timeframes__divider{display:none!important}body.terminal-active .chart-area,body.gp-terminal-active .chart-area{flex:1 1 auto;min-height:0!important;background:linear-gradient(rgba(35,70,115,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(35,70,115,.055) 1px,transparent 1px),radial-gradient(circle at 60% 18%,rgba(14,113,255,.05),transparent 36%),#06101c!important;background-size:100% 33px,66px 100%,auto,auto!important}body.terminal-active .cvd-container,body.gp-terminal-active .cvd-container{height:44px!important;min-height:44px!important;flex:0 0 44px!important;border-top:1px solid rgba(70,123,196,.12)!important;background:#030a16b3!important}body.terminal-active .analytics,body.gp-terminal-active .analytics{height:82px!important;min-height:82px!important;flex:0 0 82px!important;display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:0!important;padding:0!important;border-top:1px solid rgba(70,123,196,.12)!important;background:#040c19a3!important}body.terminal-active .metric,body.gp-terminal-active .metric{justify-content:center;gap:5px;min-width:0;padding:11px 14px!important;border-radius:0!important;border-right:1px solid rgba(82,129,195,.12);background:transparent!important}body.terminal-active .metric__label,body.gp-terminal-active .metric__label{color:#d3deef9e!important;font-size:10px!important;font-weight:850;letter-spacing:.06em}body.terminal-active .metric__value,body.gp-terminal-active .metric__value{color:#f4f8ff;font-size:18px!important;font-weight:900}body.terminal-active .tools-panel,body.gp-terminal-active .tools-panel{grid-column:3;grid-row:3;position:relative!important;inset:auto!important;display:flex!important;flex-direction:column;width:auto!important;max-width:none!important;height:auto!important;max-height:none!important;min-height:0;overflow:hidden!important;opacity:1!important;visibility:visible!important;transform:none!important;pointer-events:auto!important;border-radius:6px!important;border:1px solid rgba(70,123,196,.14)!important;background:#040c19c2!important;box-shadow:inset 0 1px #ffffff08!important;-webkit-backdrop-filter:none!important;backdrop-filter:none!important;z-index:auto!important}body.terminal-active .tools-panel__header,body.gp-terminal-active .tools-panel__header{min-height:42px;padding:0 12px!important;border-bottom:1px solid rgba(70,123,196,.12)!important}body.terminal-active .tools-panel__header strong,body.gp-terminal-active .tools-panel__header strong{font-size:12px!important;letter-spacing:.045em}body.terminal-active .tools-panel__header span,body.gp-terminal-active .tools-panel__header span{margin-top:1px!important;font-size:9px!important;color:#d3deef8a!important}body.terminal-active .tools-panel__close,body.gp-terminal-active .tools-panel__close{display:none!important}body.terminal-active .tools-panel__body,body.gp-terminal-active .tools-panel__body{display:grid!important;gap:9px!important;padding:11px!important;overflow-y:auto!important;max-height:none!important}body.terminal-active .gp-of-slider,body.gp-terminal-active .gp-of-slider{display:grid;grid-template-columns:1fr auto;align-items:center;row-gap:5px;color:#e2edfac7;font-size:10px;font-weight:800}body.terminal-active .gp-of-slider span,body.gp-terminal-active .gp-of-slider span{color:#d7e4f694;font:700 9px/1 var(--font-mono)}body.terminal-active .gp-of-slider input,body.gp-terminal-active .gp-of-slider input{grid-column:1 / 3;width:100%;height:4px;accent-color:#0b7dff;cursor:pointer}body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select{display:grid;gap:6px;color:#d3deef85;font-size:9px;font-weight:900;letter-spacing:.06em}body.terminal-active .gp-of-select select,body.gp-terminal-active .gp-of-select select{width:100%;height:31px;padding:0 9px;border-radius:5px;border:1px solid rgba(78,126,192,.2);background:#030913d1;color:#f6fbff;font:800 11px/1 var(--font-sans)}body.terminal-active .gp-of-switch-row,body.gp-terminal-active .gp-of-switch-row,body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row{display:flex;align-items:center;justify-content:space-between;gap:8px;color:#deeaf9c2;font-size:10px;font-weight:850}body.terminal-active .gp-mini-switch,body.gp-terminal-active .gp-mini-switch,body.terminal-active .tool-toggle,body.gp-terminal-active .tool-toggle{min-width:45px!important;height:23px!important;padding:0 8px!important;border-radius:999px!important;border:1px solid rgba(100,137,190,.2)!important;color:#dde8f8b8!important;background:#ffffff0b!important;font-size:9px!important;font-weight:950!important;letter-spacing:.04em!important;cursor:pointer}body.terminal-active .gp-mini-switch.active,body.gp-terminal-active .gp-mini-switch.active,body.terminal-active .tool-toggle.active,body.gp-terminal-active .tool-toggle.active{color:#051425!important;background:linear-gradient(135deg,#16a2ff,#22f19a)!important;border-color:#17d2a885!important;box-shadow:0 0 16px #18d0a024!important}body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions{display:grid;grid-template-columns:1fr 1fr;gap:7px}body.terminal-active .gp-of-mode-grid button,body.gp-terminal-active .gp-of-mode-grid button,body.terminal-active .gp-of-actions button,body.gp-terminal-active .gp-of-actions button{height:31px;border-radius:5px;border:1px solid rgba(86,130,190,.18);background:#ffffff0b;color:#e6f0fcd1;font:850 11px/1 var(--font-sans);cursor:pointer}body.terminal-active .gp-of-mode-grid .active,body.gp-terminal-active .gp-of-mode-grid .active,body.terminal-active .gp-prime-action,body.gp-terminal-active .gp-prime-action{background:linear-gradient(135deg,#116bff,#0bd2ff)!important;color:#fff!important;border-color:#4aa1ff6b!important}body.terminal-active .gp-prime-action.active,body.gp-terminal-active .gp-prime-action.active{background:linear-gradient(135deg,#ff3158,#ff7b3d)!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{display:grid;gap:6px;padding-top:4px;border-top:1px solid rgba(70,123,196,.12)}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{grid-column:4;grid-row:3;width:auto!important;min-width:0;min-height:0;display:flex;border-radius:6px!important;border:1px solid rgba(70,123,196,.14)!important;border-left:1px solid rgba(70,123,196,.14)!important;background:#040c19c2!important;overflow:hidden;box-shadow:inset 0 1px #ffffff08}body.terminal-active .orderbook__header,body.gp-terminal-active .orderbook__header{min-height:42px;padding:0 12px!important;border-bottom:1px solid rgba(70,123,196,.12)!important;background:#060f1d70!important}body.terminal-active .orderbook__title,body.gp-terminal-active .orderbook__title{font-size:12px;font-weight:900;letter-spacing:.04em;text-transform:uppercase}body.terminal-active .orderbook__modes .btn,body.gp-terminal-active .orderbook__modes .btn{height:24px;min-width:25px;padding:0 7px;border-radius:5px;background:#ffffff0b;border:1px solid rgba(88,132,192,.14);font-size:11px}body.terminal-active .orderbook__depth,body.gp-terminal-active .orderbook__depth{height:34px;min-height:34px;padding:0 12px!important;justify-content:flex-end;background:#02081259!important;border-bottom:1px solid rgba(70,123,196,.12)!important}body.terminal-active .orderbook__depth label,body.gp-terminal-active .orderbook__depth label{margin-right:auto;color:#d3deef94!important;font-size:10px;font-weight:800;text-transform:uppercase}body.terminal-active .orderbook__depth select,body.gp-terminal-active .orderbook__depth select{height:24px;border-radius:5px;border:1px solid rgba(88,132,192,.18)!important;background:#030913d1!important;color:#edf6ff!important}body.terminal-active .orderbook__content,body.gp-terminal-active .orderbook__content{min-height:0;background:transparent!important}body.terminal-active .dom-ladder,body.gp-terminal-active .dom-ladder{background:transparent!important;color:#dce7f7!important;font-size:10px!important}body.terminal-active .dom-ladder__header,body.gp-terminal-active .dom-ladder__header{padding:6px 10px!important;border-bottom:1px solid rgba(70,123,196,.12)!important;color:#cbd8eb80!important}body.terminal-active .dom-ladder__row,body.gp-terminal-active .dom-ladder__row{height:21px!important}body.terminal-active .dom-ladder__bar--ask,body.gp-terminal-active .dom-ladder__bar--ask{background:#ff335094!important;opacity:.32!important}body.terminal-active .dom-ladder__bar--bid,body.gp-terminal-active .dom-ladder__bar--bid{background:#13d68499!important;opacity:.32!important}body.terminal-active .dom-ladder__cell--ask,body.gp-terminal-active .dom-ladder__cell--ask{color:#ff526c!important}body.terminal-active .dom-ladder__cell--bid,body.gp-terminal-active .dom-ladder__cell--bid{color:#18d980!important}body.terminal-active .dom-ladder__spread,body.gp-terminal-active .dom-ladder__spread{padding:7px 6px!important;background:#030a16b8!important;border-top:1px solid rgba(70,123,196,.12)!important;border-bottom:1px solid rgba(70,123,196,.12)!important}body.terminal-active #levels-summary,body.gp-terminal-active #levels-summary{max-height:34%;overflow:auto;border-top:1px solid rgba(70,123,196,.12)}body.terminal-active .gp-market-widgets,body.gp-terminal-active .gp-market-widgets{grid-column:3 / 5;grid-row:4;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:8px;min-height:0}body.terminal-active .gp-widget-card,body.gp-terminal-active .gp-widget-card,body.terminal-active .gp-bottom-card,body.gp-terminal-active .gp-bottom-card{border-radius:6px;border:1px solid rgba(70,123,196,.14);background:#040c19b8;overflow:hidden;box-shadow:inset 0 1px #ffffff08}body.terminal-active .gp-widget-card,body.gp-terminal-active .gp-widget-card{position:relative;min-height:0;padding:10px 12px}body.terminal-active .gp-widget-head,body.gp-terminal-active .gp-widget-head{display:flex;justify-content:space-between;gap:8px;margin-bottom:8px}body.terminal-active .gp-widget-head strong,body.gp-terminal-active .gp-widget-head strong,body.terminal-active .gp-bottom-head strong,body.gp-terminal-active .gp-bottom-head strong{color:#f4f8ff;font-size:11px;font-weight:950;letter-spacing:.045em}body.terminal-active .gp-widget-head span,body.gp-terminal-active .gp-widget-head span,body.terminal-active .gp-bottom-head span,body.gp-terminal-active .gp-bottom-head span{color:#d3deef85;font-size:10px;font-weight:700}body.terminal-active .gp-liquidity-legend,body.gp-terminal-active .gp-liquidity-legend{height:5px;border-radius:999px;background:linear-gradient(90deg,#1fd98040,#ffc43d,#ff4162,#2b76ff47);opacity:.92}body.terminal-active .gp-heatmap-mini,body.gp-terminal-active .gp-heatmap-mini{position:absolute;inset:42px 12px 10px;border-radius:4px;background:linear-gradient(180deg,transparent 0 18%,rgba(255,172,48,.65) 19% 23%,transparent 24% 100%),linear-gradient(180deg,transparent 34%,rgba(37,118,255,.58) 35% 39%,transparent 40%),linear-gradient(180deg,transparent 55%,rgba(255,84,47,.62) 56% 60%,transparent 61%),repeating-linear-gradient(90deg,rgba(255,178,48,.35) 0 8px,transparent 8px 22px),radial-gradient(circle at 24% 62%,rgba(255,203,44,.75),transparent 11%),radial-gradient(circle at 66% 38%,rgba(39,124,255,.52),transparent 12%),#06101d}body.terminal-active .gp-volume-profile-mini,body.gp-terminal-active .gp-volume-profile-mini{position:absolute;inset:38px 12px 10px;border-radius:4px;background:linear-gradient(90deg,rgba(40,98,255,.95) 0 5%,transparent 5% 100%),linear-gradient(180deg,transparent 0 16%,rgba(34,105,255,.95) 16% 21%,transparent 21% 100%),linear-gradient(180deg,transparent 23%,rgba(34,105,255,.78) 23% 28%,transparent 28%),linear-gradient(180deg,transparent 31%,rgba(34,105,255,.66) 31% 36%,transparent 36%),linear-gradient(180deg,transparent 39%,rgba(34,105,255,.84) 39% 44%,transparent 44%),linear-gradient(180deg,transparent 47%,rgba(34,105,255,.72) 47% 52%,transparent 52%),linear-gradient(180deg,transparent 55%,rgba(34,105,255,.58) 55% 60%,transparent 60%),linear-gradient(180deg,transparent 66%,rgba(34,105,255,.68) 66% 71%,transparent 71%),#06101d;clip-path:polygon(0 0,88% 0,66% 10%,74% 18%,53% 25%,80% 34%,42% 42%,94% 51%,50% 61%,38% 72%,22% 85%,0 100%)}body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom{grid-column:2 / 5;grid-row:5;display:grid;grid-template-columns:1.05fr 1.1fr 1fr 1.08fr;gap:8px;min-height:0}body.terminal-active .gp-bottom-card,body.gp-terminal-active .gp-bottom-card{display:flex;flex-direction:column;min-width:0;min-height:0;padding:12px;gap:9px}body.terminal-active .gp-bottom-head,body.gp-terminal-active .gp-bottom-head{display:flex;align-items:center;justify-content:space-between;gap:8px}body.terminal-active .gp-bottom-head select,body.gp-terminal-active .gp-bottom-head select{height:26px;border-radius:6px;border:1px solid rgba(88,132,192,.18);background:#030913d1;color:#e7f0fcc7;font-size:10px}body.terminal-active .gp-journal-grid,body.gp-terminal-active .gp-journal-grid{display:grid;grid-template-columns:1fr 1fr;gap:7px 12px}body.terminal-active .gp-journal-grid div,body.gp-terminal-active .gp-journal-grid div,body.terminal-active .gp-performance-wrap>div:last-child,body.gp-terminal-active .gp-performance-wrap>div:last-child{display:grid;gap:2px}body.terminal-active .gp-journal-grid span,body.gp-terminal-active .gp-journal-grid span,body.terminal-active .gp-performance-wrap span,body.gp-terminal-active .gp-performance-wrap span{color:#d3deef8a;font-size:10px;font-weight:700}body.terminal-active .gp-journal-grid b,body.gp-terminal-active .gp-journal-grid b,body.terminal-active .gp-performance-wrap b,body.gp-terminal-active .gp-performance-wrap b{color:#eef7ff;font:850 12px/1.25 var(--font-mono)}body.terminal-active .gp-calendar-mini,body.gp-terminal-active .gp-calendar-mini{margin-top:auto;display:grid;gap:7px}body.terminal-active .gp-calendar-mini b,body.gp-terminal-active .gp-calendar-mini b{color:#e9f2ffb8;font-size:11px;text-align:center}body.terminal-active .gp-calendar-mini div,body.gp-terminal-active .gp-calendar-mini div{display:grid;grid-template-columns:repeat(7,1fr);gap:4px}body.terminal-active .gp-calendar-mini span,body.gp-terminal-active .gp-calendar-mini span{display:grid;place-items:center;height:23px;border-radius:6px;color:#e2eefcb3;background:#ffffff09;font-size:10px;font-weight:800}body.terminal-active .gp-calendar-mini .active,body.gp-terminal-active .gp-calendar-mini .active{background:#0b63e7;color:#fff}body.terminal-active .gp-bottom-card button,body.gp-terminal-active .gp-bottom-card button{height:30px;margin-top:auto;border:1px solid rgba(45,128,255,.22);border-radius:6px;background:#154da438;color:#9cc7ff;font-weight:850;font-size:11px;cursor:pointer}body.terminal-active .gp-news-card ul,body.gp-terminal-active .gp-news-card ul{display:grid;gap:8px;min-height:0;overflow:hidden;list-style:none}body.terminal-active .gp-news-card li,body.gp-terminal-active .gp-news-card li{display:grid;grid-template-columns:38px 1fr auto;gap:7px;align-items:start;padding-bottom:7px;border-bottom:1px solid rgba(70,123,196,.08);color:#e6effbd1;font-size:10px;line-height:1.35}body.terminal-active .gp-news-card li span,body.gp-terminal-active .gp-news-card li span{color:#d3deef75;font-family:var(--font-mono)}body.terminal-active .gp-news-card li b,body.gp-terminal-active .gp-news-card li b,body.terminal-active .gp-calendar-card b,body.gp-terminal-active .gp-calendar-card b{padding:3px 5px;border-radius:4px;color:#ff6c7c;background:#ff2a501c;font-size:9px;white-space:nowrap}body.terminal-active .gp-news-card li b.low,body.gp-terminal-active .gp-news-card li b.low{color:#23df8d;background:#23df8d1a}body.terminal-active .gp-chip,body.gp-terminal-active .gp-chip{padding:5px 9px;border-radius:6px;background:#0b63e7;color:#fff!important;font-size:10px!important}body.terminal-active .gp-calendar-card table,body.gp-terminal-active .gp-calendar-card table{width:100%;border-collapse:collapse;overflow:hidden}body.terminal-active .gp-calendar-card td,body.gp-terminal-active .gp-calendar-card td{padding:7px 4px;border-bottom:1px solid rgba(70,123,196,.08);color:#e7f0fcc7;font-size:10px}body.terminal-active .gp-calendar-card td:first-child,body.gp-terminal-active .gp-calendar-card td:first-child,body.terminal-active .gp-calendar-card td:nth-child(2),body.gp-terminal-active .gp-calendar-card td:nth-child(2){color:#d3deef85;font-family:var(--font-mono)}body.terminal-active .gp-calendar-card b.medium,body.gp-terminal-active .gp-calendar-card b.medium{color:#ffbf4b;background:#ffbf4b1a}body.terminal-active .gp-performance-wrap,body.gp-terminal-active .gp-performance-wrap{display:grid;grid-template-columns:104px 1fr;gap:14px;align-items:center}body.terminal-active .gp-win-ring,body.gp-terminal-active .gp-win-ring{width:96px;height:96px;display:grid;place-items:center;align-content:center;border-radius:50%;background:conic-gradient(#20d982 0 66%,#0e58c9 66% 100%);position:relative}body.terminal-active .gp-win-ring:after,body.gp-terminal-active .gp-win-ring:after{content:"";position:absolute;inset:12px;border-radius:50%;background:#06101d}body.terminal-active .gp-win-ring span,body.terminal-active .gp-win-ring small,body.gp-terminal-active .gp-win-ring span,body.gp-terminal-active .gp-win-ring small{position:relative;z-index:1}body.terminal-active .gp-win-ring span,body.gp-terminal-active .gp-win-ring span{color:#20d982;font-weight:950}body.terminal-active .gp-win-ring small,body.gp-terminal-active .gp-win-ring small{color:#e2eefcad;font-size:10px}body.terminal-active .gp-equity-line,body.gp-terminal-active .gp-equity-line{height:48px;border-radius:6px;background:linear-gradient(180deg,transparent,rgba(22,217,127,.1)),url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 60'%3E%3Cpolyline fill='none' stroke='%2321d982' stroke-width='2.2' points='0,52 12,48 24,43 35,45 46,32 58,38 70,34 82,23 94,25 105,16 116,21 128,18 139,31 151,24 163,28 174,19 186,20 198,12 210,14 222,8 234,12 246,4 260,8'/%3E%3C/svg%3E") center/100% 100% no-repeat}}@media(max-width:1180px){body.terminal-active #app,body.gp-terminal-active #app{display:flex!important;flex-direction:column;overflow-y:auto;padding:0}body.terminal-active .gp-top-menu,body.gp-terminal-active .gp-top-menu{display:none!important}body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar{display:inline-flex;margin-left:auto}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side,body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview,body.terminal-active .gp-market-widgets,body.gp-terminal-active .gp-market-widgets,body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom{display:none!important}body.terminal-active .main,body.gp-terminal-active .main{flex:1 1 auto;min-height:0}body.terminal-active .chart-container,body.gp-terminal-active .chart-container{margin-left:0!important}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{display:none!important}body.terminal-active #tools-panel-btn,body.gp-terminal-active #tools-panel-btn{display:inline-flex!important}}@media(min-width:1181px){body.terminal-active .header__logo span,body.gp-terminal-active .header__logo span{white-space:nowrap!important;overflow:visible!important;text-overflow:clip!important;font-size:15px!important}body.terminal-active .sidebar__close,body.gp-terminal-active .sidebar__close{display:none!important}}.gp-dashboard-tab-panels{display:none}body.terminal-active .gp-top-menu,body.gp-terminal-active .gp-top-menu{overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none}body.terminal-active .gp-top-menu::-webkit-scrollbar,body.gp-terminal-active .gp-top-menu::-webkit-scrollbar{display:none}body.terminal-active .gp-top-menu button,body.gp-terminal-active .gp-top-menu button{flex:0 0 auto}body.terminal-active .gp-overview-market b,body.gp-terminal-active .gp-overview-market b{color:#2c93ff;font:inherit}@media(min-width:1181px){body.terminal-active.gp-dashboard-show-panel #app,body.gp-terminal-active.gp-dashboard-show-panel #app{grid-template-columns:132px minmax(520px,1fr) 238px 328px;grid-template-rows:48px minmax(0,1fr)}body.terminal-active.gp-dashboard-show-panel .gp-market-overview,body.terminal-active.gp-dashboard-show-panel .main,body.terminal-active.gp-dashboard-show-panel .sidebar,body.terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.terminal-active.gp-dashboard-show-panel .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-show-panel .gp-market-overview,body.gp-terminal-active.gp-dashboard-show-panel .main,body.gp-terminal-active.gp-dashboard-show-panel .sidebar,body.gp-terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.gp-terminal-active.gp-dashboard-show-panel .gp-terminal-bottom{display:none!important}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels{grid-column:2 / 5;grid-row:2;display:block;min-width:0;min-height:0;padding:12px;border-radius:10px;border:1px solid rgba(70,123,196,.16);background:#040c19b8;box-shadow:inset 0 1px #ffffff08,0 20px 60px #00000042;overflow:auto}}body.terminal-active .gp-dashboard-tab-panel,body.gp-terminal-active .gp-dashboard-tab-panel{display:none}body.terminal-active .gp-dashboard-tab-panel.active,body.gp-terminal-active .gp-dashboard-tab-panel.active{display:block}body.terminal-active .gp-tab-page-head,body.gp-terminal-active .gp-tab-page-head{display:grid;gap:8px;margin-bottom:18px;padding:18px;border-radius:10px;border:1px solid rgba(70,123,196,.14);background:radial-gradient(circle at 12% 10%,rgba(20,106,255,.17),transparent 30%),linear-gradient(180deg,#071222c2,#03091494)}body.terminal-active .gp-tab-page-head span,body.gp-terminal-active .gp-tab-page-head span{color:#2c93ff;font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}body.terminal-active .gp-tab-page-head h2,body.gp-terminal-active .gp-tab-page-head h2{margin:0;color:#f5f9ff;font-size:clamp(24px,2.2vw,34px);line-height:1.05}body.terminal-active .gp-tab-page-head p,body.gp-terminal-active .gp-tab-page-head p{max-width:820px;margin:0;color:#d8e5f7ad;font-size:13px;line-height:1.55}body.terminal-active .gp-tab-page-grid,body.gp-terminal-active .gp-tab-page-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:14px}body.terminal-active .gp-tab-page-card,body.gp-terminal-active .gp-tab-page-card,body.terminal-active .gp-alert-list>div,body.gp-terminal-active .gp-alert-list>div,body.terminal-active .gp-news-tab-list>div,body.gp-terminal-active .gp-news-tab-list>div{border-radius:9px;border:1px solid rgba(70,123,196,.14);background:#040c19bd;box-shadow:inset 0 1px #ffffff08}body.terminal-active .gp-tab-page-card strong,body.gp-terminal-active .gp-tab-page-card strong{color:#d8e5f794;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}body.terminal-active .gp-tab-page-card b,body.gp-terminal-active .gp-tab-page-card b{color:#f6fbff;font:950 26px/1 var(--font-mono)}body.terminal-active .gp-tab-page-card span,body.gp-terminal-active .gp-tab-page-card span{color:#d8e5f79e;font-size:12px;line-height:1.45}body.terminal-active .gp-alert-list>div,body.gp-terminal-active .gp-alert-list>div,body.terminal-active .gp-news-tab-list>div,body.gp-terminal-active .gp-news-tab-list>div{display:grid;grid-template-columns:76px minmax(0,1fr) auto;align-items:center;gap:12px;min-height:54px;padding:12px 14px;color:#e7f0fcd6}body.terminal-active .gp-alert-list span,body.gp-terminal-active .gp-alert-list span,body.terminal-active .gp-news-tab-list time,body.gp-terminal-active .gp-news-tab-list time{color:#d3deef7a;font-family:var(--font-mono);font-size:11px}body.terminal-active .gp-alert-list strong,body.gp-terminal-active .gp-alert-list strong,body.terminal-active .gp-news-tab-list strong,body.gp-terminal-active .gp-news-tab-list strong{color:#eef6ffe6;font-size:13px;line-height:1.35}body.terminal-active .gp-alert-list b,body.gp-terminal-active .gp-alert-list b,body.terminal-active .gp-news-tab-list b,body.gp-terminal-active .gp-news-tab-list b{padding:5px 8px;border-radius:6px;color:#ff6c7c;background:#ff2a501c;font-size:10px;white-space:nowrap}body.terminal-active .gp-tab-page-action,body.gp-terminal-active .gp-tab-page-action{height:40px;padding:0 18px;border:1px solid rgba(45,128,255,.28);border-radius:9px;background:linear-gradient(180deg,#1269ff52,#10469838);color:#cfe5ff;font-weight:900;cursor:pointer}body.terminal-active .gp-report-layout,body.gp-terminal-active .gp-report-layout{display:grid;grid-template-columns:150px 1fr;gap:18px;align-items:center}body.terminal-active .gp-equity-line--wide,body.gp-terminal-active .gp-equity-line--wide{height:180px;margin-top:16px;border-radius:10px;border:1px solid rgba(70,123,196,.14);background-size:100% 100%}@media(max-width:1180px){body.terminal-active.gp-dashboard-show-panel .main,body.gp-terminal-active.gp-dashboard-show-panel .main{display:none!important}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels{display:block!important;padding:14px}body.terminal-active .gp-tab-page-grid,body.gp-terminal-active .gp-tab-page-grid,body.terminal-active .gp-report-layout,body.gp-terminal-active .gp-report-layout{grid-template-columns:1fr}body.terminal-active .gp-alert-list>div,body.gp-terminal-active .gp-alert-list>div,body.terminal-active .gp-news-tab-list>div,body.gp-terminal-active .gp-news-tab-list>div{grid-template-columns:1fr}}.gp-dashboard-tab-panels,.gp-dashboard-tab-panel{display:none}body.terminal-active .gp-top-menu [data-dashboard-tab].active,body.gp-terminal-active .gp-top-menu [data-dashboard-tab].active,body.terminal-active .gp-terminal-side [data-dashboard-tab].active,body.gp-terminal-active .gp-terminal-side [data-dashboard-tab].active{color:#fff!important}@media(min-width:1181px){body.terminal-active.gp-dashboard-show-panel .main,body.terminal-active.gp-dashboard-show-panel .tools-panel,body.terminal-active.gp-dashboard-show-panel .sidebar,body.terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.terminal-active.gp-dashboard-show-panel .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-show-panel .main,body.gp-terminal-active.gp-dashboard-show-panel .tools-panel,body.gp-terminal-active.gp-dashboard-show-panel .sidebar,body.gp-terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.gp-terminal-active.gp-dashboard-show-panel .gp-terminal-bottom{display:none!important}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels{grid-column:2 / 5;grid-row:3 / 6;display:block;min-width:0;min-height:0;overflow:hidden}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panel.active,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panel.active{height:100%;min-height:0;display:flex;flex-direction:column;gap:16px;padding:22px;border-radius:8px;border:1px solid rgba(70,123,196,.16);background:radial-gradient(circle at 12% 0%,rgba(0,126,255,.13),transparent 32%),radial-gradient(circle at 88% 0%,rgba(0,245,165,.08),transparent 28%),#040c19d1;box-shadow:inset 0 1px #ffffff0a,0 20px 54px #00000042;overflow:auto}}body.terminal-active .gp-tab-page-head,body.gp-terminal-active .gp-tab-page-head{display:grid;gap:7px;max-width:850px}body.terminal-active .gp-tab-page-head span,body.gp-terminal-active .gp-tab-page-head span{color:#1fd982;font-size:11px;font-weight:950;letter-spacing:.12em;text-transform:uppercase}body.terminal-active .gp-tab-page-head h2,body.gp-terminal-active .gp-tab-page-head h2{margin:0;color:#f7fbff;font-size:clamp(26px,2.1vw,38px);line-height:1.05;letter-spacing:-.035em}body.terminal-active .gp-tab-page-head p,body.gp-terminal-active .gp-tab-page-head p{margin:0;color:#dce8f8b8;font-size:14px;line-height:1.6}body.terminal-active .gp-tab-page-grid,body.gp-terminal-active .gp-tab-page-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}body.terminal-active .gp-tab-page-card,body.gp-terminal-active .gp-tab-page-card{display:grid;gap:8px;min-height:132px;padding:18px;border-radius:12px;border:1px solid rgba(73,133,214,.18);background:linear-gradient(180deg,#081426e0,#040b18d1);box-shadow:inset 0 1px #ffffff0a}body.terminal-active .gp-tab-page-card strong,body.gp-terminal-active .gp-tab-page-card strong{color:#d9e7f9b8;font-size:12px;letter-spacing:.04em;text-transform:uppercase}body.terminal-active .gp-tab-page-card b,body.gp-terminal-active .gp-tab-page-card b{color:#f7fbff;font:950 28px/1 var(--font-mono)}body.terminal-active .gp-tab-page-card span,body.gp-terminal-active .gp-tab-page-card span{color:#d3deef94;font-size:12px;line-height:1.45}body.terminal-active .gp-tab-page-action,body.gp-terminal-active .gp-tab-page-action{justify-self:start;width:fit-content;min-height:38px;padding:0 18px;border-radius:10px;border:1px solid rgba(45,128,255,.28);background:linear-gradient(135deg,#166bfff2,#0bd2ffeb);color:#fff;font-weight:900;cursor:pointer;box-shadow:0 10px 24px #0062ff2e}body.terminal-active .gp-alert-list,body.gp-terminal-active .gp-alert-list,body.terminal-active .gp-news-tab-list,body.gp-terminal-active .gp-news-tab-list{display:grid;gap:10px}body.terminal-active .gp-alert-list>div,body.gp-terminal-active .gp-alert-list>div,body.terminal-active .gp-news-tab-list>div,body.gp-terminal-active .gp-news-tab-list>div{display:grid;grid-template-columns:70px 1fr auto;align-items:center;gap:14px;min-height:54px;padding:0 16px;border-radius:10px;border:1px solid rgba(73,133,214,.14);background:#050f1fc7;color:#ebf3ffe0}body.terminal-active .gp-alert-list span,body.gp-terminal-active .gp-alert-list span,body.terminal-active .gp-news-tab-list time,body.gp-terminal-active .gp-news-tab-list time{color:#d3deef8a;font-family:var(--font-mono);font-size:12px}body.terminal-active .gp-alert-list b,body.gp-terminal-active .gp-alert-list b,body.terminal-active .gp-news-tab-list b,body.gp-terminal-active .gp-news-tab-list b{padding:5px 8px;border-radius:999px;color:#ffbf4b;background:#ffbf4b1a;font-size:10px;text-transform:uppercase}body.terminal-active .gp-report-layout,body.gp-terminal-active .gp-report-layout{display:grid;grid-template-columns:180px 1fr;gap:22px;align-items:center}body.terminal-active .gp-equity-line--wide,body.gp-terminal-active .gp-equity-line--wide{min-height:170px;border-radius:12px;border:1px solid rgba(73,133,214,.14);background:linear-gradient(180deg,rgba(31,217,128,.22),transparent 68%),linear-gradient(135deg,transparent 0 10%,rgba(31,217,128,.55) 10.4% 11.4%,transparent 12% 20%,rgba(31,217,128,.72) 20.4% 21.4%,transparent 22% 32%,rgba(31,217,128,.72) 32.4% 33.4%,transparent 34% 45%,rgba(31,217,128,.85) 45.4% 46.4%,transparent 47% 58%,rgba(31,217,128,.75) 58.4% 59.4%,transparent 60% 72%,rgba(31,217,128,.95) 72.4% 73.4%,transparent 74% 88%,rgba(31,217,128,1) 88.4% 89.4%,transparent 90%),#050f1fc7}@media(max-width:1180px){body.terminal-active.gp-dashboard-show-panel .main,body.terminal-active.gp-dashboard-show-panel .sidebar,body.terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.terminal-active.gp-dashboard-show-panel .gp-terminal-bottom,body.terminal-active.gp-dashboard-show-panel .tools-panel,body.gp-terminal-active.gp-dashboard-show-panel .main,body.gp-terminal-active.gp-dashboard-show-panel .sidebar,body.gp-terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.gp-terminal-active.gp-dashboard-show-panel .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-show-panel .tools-panel{display:none!important}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels{display:block!important;position:fixed;inset:calc(var(--gp-header-mobile, 46px) + var(--gp-safe-top, 0px) + 8px) 8px calc(var(--gp-bottom-nav, 62px) + var(--gp-safe-bottom, 0px) + 8px) 8px;z-index:240;overflow:auto}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panel.active,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panel.active{display:flex;flex-direction:column;gap:12px;min-height:100%;padding:16px;border-radius:14px;border:1px solid rgba(70,123,196,.18);background:#040c19f5}body.terminal-active .gp-tab-page-grid,body.gp-terminal-active .gp-tab-page-grid,body.terminal-active .gp-report-layout,body.gp-terminal-active .gp-report-layout{grid-template-columns:1fr}body.terminal-active .gp-alert-list>div,body.gp-terminal-active .gp-alert-list>div,body.terminal-active .gp-news-tab-list>div,body.gp-terminal-active .gp-news-tab-list>div{grid-template-columns:1fr;align-items:start;padding:13px}}.gp-dashboard-tab-panels{display:none;min-width:0;min-height:0}.gp-dashboard-tab-panel{display:none}.gp-dashboard-tab-panel.active{display:block}body.terminal-active .gp-top-menu [data-dashboard-tab],body.gp-terminal-active .gp-top-menu [data-dashboard-tab],body.terminal-active .gp-terminal-side [data-dashboard-tab],body.gp-terminal-active .gp-terminal-side [data-dashboard-tab]{-webkit-user-select:none;user-select:none}body.terminal-active .gp-tab-page-head,body.gp-terminal-active .gp-tab-page-head{margin-bottom:18px}body.terminal-active .gp-tab-page-head span,body.gp-terminal-active .gp-tab-page-head span{display:inline-flex;align-items:center;min-height:24px;padding:0 10px;border-radius:999px;background:#1070ff24;border:1px solid rgba(61,149,255,.22);color:#85bdff;font-size:10px;font-weight:950;letter-spacing:.08em;text-transform:uppercase}body.terminal-active .gp-tab-page-head h2,body.gp-terminal-active .gp-tab-page-head h2{margin:10px 0 7px;color:#f7fbff;font-size:clamp(24px,2.35vw,38px);line-height:1.02;letter-spacing:-.045em}body.terminal-active .gp-tab-page-head p,body.gp-terminal-active .gp-tab-page-head p{max-width:860px;margin:0;color:#d6e4f8ad;font-size:13px;line-height:1.6}body.terminal-active .gp-tab-page-grid,body.gp-terminal-active .gp-tab-page-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:16px}body.terminal-active .gp-tab-page-card,body.gp-terminal-active .gp-tab-page-card,body.terminal-active .gp-alert-list,body.gp-terminal-active .gp-alert-list,body.terminal-active .gp-news-tab-list,body.gp-terminal-active .gp-news-tab-list{border:1px solid rgba(70,123,196,.15);border-radius:12px;background:linear-gradient(180deg,#071222c7,#030914b3);box-shadow:inset 0 1px #ffffff0a,0 20px 45px #00000029}body.terminal-active .gp-tab-page-card,body.gp-terminal-active .gp-tab-page-card{display:grid;gap:8px;min-height:118px;padding:16px}body.terminal-active .gp-tab-page-card strong,body.gp-terminal-active .gp-tab-page-card strong{color:#d6e4f8a8;font-size:11px;font-weight:900;letter-spacing:.055em;text-transform:uppercase}body.terminal-active .gp-tab-page-card b,body.gp-terminal-active .gp-tab-page-card b{color:#f8fbff;font:950 25px/1 var(--font-mono, monospace)}body.terminal-active .gp-tab-page-card span,body.gp-terminal-active .gp-tab-page-card span{color:#d6e4f88f;font-size:12px;line-height:1.45}body.terminal-active .gp-alert-list,body.gp-terminal-active .gp-alert-list,body.terminal-active .gp-news-tab-list,body.gp-terminal-active .gp-news-tab-list{display:grid;gap:0;overflow:hidden}body.terminal-active .gp-alert-list>div,body.gp-terminal-active .gp-alert-list>div,body.terminal-active .gp-news-tab-list>div,body.gp-terminal-active .gp-news-tab-list>div{display:grid;grid-template-columns:76px 1fr auto;gap:12px;align-items:center;min-height:58px;padding:12px 16px;border-bottom:1px solid rgba(70,123,196,.1);color:#e7f0fcd1}body.terminal-active .gp-alert-list>div:last-child,body.gp-terminal-active .gp-alert-list>div:last-child,body.terminal-active .gp-news-tab-list>div:last-child,body.gp-terminal-active .gp-news-tab-list>div:last-child{border-bottom:0}body.terminal-active .gp-alert-list span,body.gp-terminal-active .gp-alert-list span,body.terminal-active .gp-news-tab-list time,body.gp-terminal-active .gp-news-tab-list time{color:#d3deef80;font:800 11px/1 var(--font-mono, monospace)}body.terminal-active .gp-alert-list strong,body.gp-terminal-active .gp-alert-list strong,body.terminal-active .gp-news-tab-list strong,body.gp-terminal-active .gp-news-tab-list strong{color:#f1f7ffe6;font-size:13px;line-height:1.35}body.terminal-active .gp-alert-list b,body.gp-terminal-active .gp-alert-list b,body.terminal-active .gp-news-tab-list b,body.gp-terminal-active .gp-news-tab-list b{padding:5px 8px;border-radius:7px;color:#ff6c7c;background:#ff2a501c;font-size:10px;font-weight:950}body.terminal-active .gp-report-layout,body.gp-terminal-active .gp-report-layout{display:grid;grid-template-columns:180px 1fr;gap:18px;align-items:center}body.terminal-active .gp-equity-line--wide,body.gp-terminal-active .gp-equity-line--wide{height:128px!important;margin-top:18px;border:1px solid rgba(70,123,196,.14);border-radius:12px;background-color:#040c19b3!important}body.terminal-active .gp-tab-page-action,body.gp-terminal-active .gp-tab-page-action{min-height:42px;padding:0 18px;border:1px solid rgba(45,128,255,.36);border-radius:10px;background:linear-gradient(135deg,#1266ffe6,#00d0ffc7);color:#fff;font-size:12px;font-weight:950;cursor:pointer;box-shadow:0 14px 30px #005aff2e}body.terminal-active .gp-tab-page-action:hover,body.gp-terminal-active .gp-tab-page-action:hover{transform:translateY(-1px);box-shadow:0 18px 38px #0076ff3d}@media(min-width:1181px){body.terminal-active.gp-dashboard-show-panel .main,body.gp-terminal-active.gp-dashboard-show-panel .main,body.terminal-active.gp-dashboard-show-panel .tools-panel,body.gp-terminal-active.gp-dashboard-show-panel .tools-panel,body.terminal-active.gp-dashboard-show-panel .sidebar,body.gp-terminal-active.gp-dashboard-show-panel .sidebar,body.terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.gp-terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.terminal-active.gp-dashboard-show-panel .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-show-panel .gp-terminal-bottom{display:none!important}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels{grid-column:2 / 5;grid-row:3 / 6;display:block!important;min-height:0;padding:clamp(18px,2.1vw,30px);border:1px solid rgba(70,123,196,.14);border-radius:8px;background:radial-gradient(circle at 88% 12%,rgba(0,118,255,.12),transparent 34%),radial-gradient(circle at 8% 96%,rgba(28,226,140,.06),transparent 28%),#040c19bd;overflow:auto;box-shadow:inset 0 1px #ffffff09,0 22px 55px #00000029}}@media(max-width:1180px){body.terminal-active.gp-dashboard-show-panel #app,body.gp-terminal-active.gp-dashboard-show-panel #app{overflow-y:auto!important}body.terminal-active.gp-dashboard-show-panel .main,body.gp-terminal-active.gp-dashboard-show-panel .main,body.terminal-active.gp-dashboard-show-panel .tools-panel,body.gp-terminal-active.gp-dashboard-show-panel .tools-panel,body.terminal-active.gp-dashboard-show-panel .sidebar,body.gp-terminal-active.gp-dashboard-show-panel .sidebar,body.terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.gp-terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.terminal-active.gp-dashboard-show-panel .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-show-panel .gp-terminal-bottom{display:none!important}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels{display:block!important;flex:1 1 auto;min-height:calc(var(--gp-vh, 100vh) - 58px);padding:14px;overflow:auto}body.terminal-active .gp-tab-page-grid,body.gp-terminal-active .gp-tab-page-grid,body.terminal-active .gp-report-layout,body.gp-terminal-active .gp-report-layout{grid-template-columns:1fr}body.terminal-active .gp-alert-list>div,body.gp-terminal-active .gp-alert-list>div,body.terminal-active .gp-news-tab-list>div,body.gp-terminal-active .gp-news-tab-list>div{grid-template-columns:1fr;align-items:start}}@media(min-width:1181px){body.terminal-active #app,body.gp-terminal-active #app{display:grid!important;grid-template-columns:132px minmax(0,1fr)!important;grid-template-rows:48px 70px minmax(360px,1fr) 188px 220px!important;gap:8px!important;padding:0 8px 8px!important;overflow-x:hidden!important;overflow-y:auto!important}body.terminal-active .header,body.gp-terminal-active .header{grid-column:1 / 3!important;grid-row:1!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{grid-column:1!important;grid-row:2 / 6!important}body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview{grid-column:2!important;grid-row:2!important;grid-template-columns:minmax(128px,.85fr) minmax(150px,1.05fr) repeat(4,minmax(112px,.9fr)) minmax(120px,.82fr)!important}body.terminal-active .gp-overview-card,body.gp-terminal-active .gp-overview-card,body.terminal-active .gp-overview-sentiment,body.gp-terminal-active .gp-overview-sentiment{padding-inline:clamp(10px,.9vw,16px)!important}body.terminal-active #gp-overview-price,body.gp-terminal-active #gp-overview-price{font-size:clamp(16px,1.08vw,21px)!important;line-height:1.08!important;white-space:nowrap!important}body.terminal-active #gp-overview-change,body.gp-terminal-active #gp-overview-change{display:block!important;max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;line-height:1.1!important}body.terminal-active .main,body.gp-terminal-active .main{grid-column:2!important;grid-row:3!important;width:100%!important;min-width:0!important}body.terminal-active .chart-container,body.gp-terminal-active .chart-container{width:100%!important}body.terminal-active .timeframes__scroll,body.gp-terminal-active .timeframes__scroll{overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:thin!important}body.terminal-active .timeframes__tools,body.gp-terminal-active .timeframes__tools{flex:0 0 auto!important;overflow:visible!important}body.terminal-active .tv-top-tool,body.gp-terminal-active .tv-top-tool{max-width:none!important;overflow:visible!important;text-overflow:clip!important}body.terminal-active .tools-panel,body.gp-terminal-active .tools-panel{grid-column:2!important;grid-row:4!important;justify-self:start!important;align-self:stretch!important;width:calc(46% - 4px)!important;height:100%!important;min-height:0!important;max-height:none!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{grid-column:2!important;grid-row:4!important;justify-self:end!important;align-self:stretch!important;width:calc(54% - 4px)!important;height:100%!important;min-height:0!important;max-height:none!important}body.terminal-active .tools-panel__body,body.gp-terminal-active .tools-panel__body{grid-template-columns:repeat(2,minmax(0,1fr))!important;align-content:start!important;gap:8px 12px!important;overflow-y:auto!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{grid-column:1 / -1!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:6px 10px!important}body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row{min-width:0!important}body.terminal-active .gp-layer-row span,body.gp-terminal-active .gp-layer-row span{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body.terminal-active .gp-market-widgets,body.gp-terminal-active .gp-market-widgets{display:none!important}body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom{grid-column:2!important;grid-row:5!important;min-width:0!important}body.terminal-active.gp-dashboard-show-panel #app,body.gp-terminal-active.gp-dashboard-show-panel #app{grid-template-columns:132px minmax(0,1fr)!important;grid-template-rows:48px 70px minmax(0,1fr)!important}body.terminal-active.gp-dashboard-show-panel .gp-market-overview,body.gp-terminal-active.gp-dashboard-show-panel .gp-market-overview{grid-column:2!important;grid-row:2!important;display:grid!important}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels{grid-column:2!important;grid-row:3!important;display:block!important;min-width:0!important;min-height:0!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active #app,body.gp-terminal-active #app{grid-template-rows:48px 66px minmax(330px,1fr) 178px 204px!important}body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview{grid-template-columns:minmax(116px,.8fr) minmax(138px,.98fr) repeat(4,minmax(96px,.82fr)) minmax(100px,.75fr)!important}body.terminal-active .gp-overview-card strong,body.gp-terminal-active .gp-overview-card strong{font-size:14px!important}body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom{grid-template-columns:repeat(4,minmax(0,1fr))!important}}@media(max-width:1180px){body.terminal-active .gp-market-widgets,body.gp-terminal-active .gp-market-widgets{display:none!important}}@media(min-width:1181px){body.terminal-active,body.gp-terminal-active{overflow:hidden!important}body.terminal-active #app,body.gp-terminal-active #app{grid-template-columns:132px minmax(0,1fr) minmax(300px,360px)!important;grid-template-rows:48px 70px minmax(340px,1fr) 212px minmax(220px,250px)!important;gap:8px!important;overflow-y:auto!important;overflow-x:hidden!important;scrollbar-width:thin}body.terminal-active .header,body.gp-terminal-active .header{grid-column:1 / 4!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{grid-row:2 / 6!important}body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview{grid-column:2 / 4!important;grid-row:2!important;grid-template-columns:minmax(145px,1.15fr) minmax(150px,1.2fr) repeat(4,minmax(120px,1fr)) minmax(145px,1.05fr)!important}body.terminal-active .gp-overview-card strong,body.gp-terminal-active .gp-overview-card strong{font-size:clamp(14px,.92vw,18px)!important;white-space:nowrap!important;overflow:visible!important;text-overflow:clip!important}body.terminal-active .main,body.gp-terminal-active .main{grid-column:2 / 4!important;grid-row:3!important;min-height:340px!important}body.terminal-active .chart-container,body.gp-terminal-active .chart-container{min-height:340px!important}body.terminal-active .timeframes,body.gp-terminal-active .timeframes{overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:thin}body.terminal-active .timeframes__scroll,body.gp-terminal-active .timeframes__scroll{width:max-content!important;min-width:100%!important;overflow:visible!important;flex-wrap:nowrap!important}body.terminal-active .timeframes__tools,body.gp-terminal-active .timeframes__tools{margin-left:10px!important;flex:0 0 auto!important}body.terminal-active .timeframe-btn,body.gp-terminal-active .timeframe-btn,body.terminal-active .tv-top-tool,body.gp-terminal-active .tv-top-tool{flex:0 0 auto!important;min-width:max-content!important;max-width:none!important;overflow:visible!important;text-overflow:clip!important;white-space:nowrap!important;padding-inline:10px!important;font-size:10px!important}body.terminal-active .tools-panel,body.gp-terminal-active .tools-panel{grid-column:2!important;grid-row:4!important;min-height:0!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{grid-column:3!important;grid-row:4!important;min-height:0!important}body.terminal-active .tools-panel__body,body.gp-terminal-active .tools-panel__body{grid-template-columns:repeat(4,minmax(120px,1fr))!important;align-items:start!important;gap:10px!important}body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select,body.terminal-active .gp-of-switch-row,body.gp-terminal-active .gp-of-switch-row,body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions,body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{grid-column:span 2}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:6px 8px!important}body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row{min-height:30px!important}body.terminal-active .gp-market-widgets,body.gp-terminal-active .gp-market-widgets{display:none!important}body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom{grid-column:2 / 4!important;grid-row:5!important;grid-template-columns:repeat(4,minmax(0,1fr))!important}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels{grid-column:2 / 4!important;grid-row:2 / 6!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active #app,body.gp-terminal-active #app{grid-template-columns:126px minmax(0,1fr) minmax(286px,330px)!important;grid-template-rows:48px 68px minmax(320px,1fr) 208px minmax(218px,auto)!important}body.terminal-active .tools-panel__body,body.gp-terminal-active .tools-panel__body{grid-template-columns:repeat(3,minmax(110px,1fr))!important}body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select,body.terminal-active .gp-of-switch-row,body.gp-terminal-active .gp-of-switch-row,body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions,body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{grid-column:span 3}}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{grid-template-columns:132px minmax(0,1fr) minmax(300px,.38fr) minmax(360px,.46fr)!important;grid-template-rows:48px 70px minmax(360px,1fr) minmax(205px,23vh) minmax(212px,24vh)!important;gap:8px!important}body.terminal-active.gp-dashboard-chart-mode .gp-market-overview,body.gp-terminal-active.gp-dashboard-chart-mode .gp-market-overview{grid-column:2 / 5!important;grid-row:2!important}body.terminal-active.gp-dashboard-chart-mode .main,body.gp-terminal-active.gp-dashboard-chart-mode .main{grid-column:2 / 5!important;grid-row:3!important;min-height:0!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel{grid-column:2 / 4!important;grid-row:4!important}body.terminal-active.gp-dashboard-chart-mode .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode .sidebar{grid-column:4 / 5!important;grid-row:4!important}body.terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom{grid-column:2 / 5!important;grid-row:5!important}body.terminal-active.gp-dashboard-chart-mode .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode .chart-container{height:100%!important}body.terminal-active.gp-dashboard-chart-mode .timeframes,body.gp-terminal-active.gp-dashboard-chart-mode .timeframes{overflow-x:auto!important;overflow-y:hidden!important}body.terminal-active.gp-dashboard-chart-mode .timeframes__scroll,body.gp-terminal-active.gp-dashboard-chart-mode .timeframes__scroll{overflow-x:auto!important;overflow-y:hidden!important;padding-left:10px!important;scrollbar-width:thin!important;scrollbar-color:rgba(80,145,231,.38) transparent!important}body.terminal-active.gp-dashboard-chart-mode .timeframes__scroll::-webkit-scrollbar,body.gp-terminal-active.gp-dashboard-chart-mode .timeframes__scroll::-webkit-scrollbar{display:block!important;height:4px!important}body.terminal-active.gp-dashboard-chart-mode .timeframe-btn,body.gp-terminal-active.gp-dashboard-chart-mode .timeframe-btn,body.terminal-active.gp-dashboard-chart-mode .tv-top-tool,body.gp-terminal-active.gp-dashboard-chart-mode .tv-top-tool{flex:0 0 auto!important;overflow:visible!important;text-overflow:clip!important;white-space:nowrap!important}body.terminal-active.gp-dashboard-chart-mode .timeframes__tools,body.gp-terminal-active.gp-dashboard-chart-mode .timeframes__tools{flex:0 0 auto!important;min-width:max-content!important;max-width:none!important;overflow:visible!important;margin-left:8px!important}body.terminal-active.gp-dashboard-chart-mode .tv-top-tool,body.gp-terminal-active.gp-dashboard-chart-mode .tv-top-tool{min-width:max-content!important;padding-inline:10px!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body{grid-template-columns:repeat(5,minmax(120px,1fr))!important;align-content:start!important;overflow:auto!important}body.terminal-active.gp-dashboard-chart-mode .gp-layer-toggles,body.gp-terminal-active.gp-dashboard-chart-mode .gp-layer-toggles{grid-column:1 / -1!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;align-items:center!important}body.terminal-active.gp-dashboard-chart-mode #gp-overview-price,body.gp-terminal-active.gp-dashboard-chart-mode #gp-overview-price{font-size:18px!important;letter-spacing:-.02em!important}}@media(min-width:1181px)and (max-height:880px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{grid-template-rows:48px 62px minmax(330px,1fr) minmax(178px,21vh) minmax(190px,23vh)!important}body.terminal-active.gp-dashboard-chart-mode .analytics,body.gp-terminal-active.gp-dashboard-chart-mode .analytics{height:66px!important;min-height:66px!important;flex-basis:66px!important}body.terminal-active.gp-dashboard-chart-mode .cvd-container,body.gp-terminal-active.gp-dashboard-chart-mode .cvd-container{height:34px!important;min-height:34px!important;flex-basis:34px!important}body.terminal-active.gp-dashboard-chart-mode .gp-bottom-card,body.gp-terminal-active.gp-dashboard-chart-mode .gp-bottom-card{padding:10px!important;gap:7px!important}}body.terminal-active .gp-market-widgets,body.gp-terminal-active .gp-market-widgets{display:none!important}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{display:grid!important;grid-template-columns:132px minmax(0,1fr) minmax(310px,360px)!important;grid-template-rows:48px 64px minmax(360px,1fr) 218px 228px!important;gap:8px!important;padding:0 8px 8px!important;overflow-x:hidden!important;overflow-y:auto!important}body.terminal-active.gp-dashboard-chart-mode .header,body.gp-terminal-active.gp-dashboard-chart-mode .header{grid-column:1 / 4!important;grid-row:1!important}body.terminal-active.gp-dashboard-chart-mode .gp-terminal-side,body.gp-terminal-active.gp-dashboard-chart-mode .gp-terminal-side{grid-column:1!important;grid-row:2 / 6!important}body.terminal-active.gp-dashboard-chart-mode .gp-market-overview,body.gp-terminal-active.gp-dashboard-chart-mode .gp-market-overview{grid-column:2 / 4!important;grid-row:2!important}body.terminal-active.gp-dashboard-chart-mode .main,body.gp-terminal-active.gp-dashboard-chart-mode .main{grid-column:2 / 4!important;grid-row:3!important;display:block!important;min-width:0!important;min-height:360px!important;overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode .chart-container{height:100%!important;min-height:360px!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel{grid-column:2!important;grid-row:4!important;display:flex!important;width:auto!important;min-width:0!important;min-height:0!important;height:auto!important;max-height:none!important;overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode .sidebar{grid-column:3!important;grid-row:4!important;display:flex!important;width:auto!important;min-width:0!important;min-height:0!important;overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom{grid-column:2 / 4!important;grid-row:5!important;display:grid!important;grid-template-columns:1fr 1fr 1fr 1fr!important;gap:8px!important;min-height:0!important}body.terminal-active.gp-dashboard-chart-mode .timeframes,body.gp-terminal-active.gp-dashboard-chart-mode .timeframes{overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .timeframes__scroll,body.gp-terminal-active.gp-dashboard-chart-mode .timeframes__scroll{overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:thin!important;padding-left:10px!important}body.terminal-active.gp-dashboard-chart-mode .timeframes__scroll::-webkit-scrollbar,body.gp-terminal-active.gp-dashboard-chart-mode .timeframes__scroll::-webkit-scrollbar{display:block!important;height:5px!important}body.terminal-active.gp-dashboard-chart-mode .timeframes__tools,body.gp-terminal-active.gp-dashboard-chart-mode .timeframes__tools{flex:0 0 auto!important;margin-left:10px!important;overflow:visible!important}body.terminal-active.gp-dashboard-chart-mode .timeframe-btn,body.gp-terminal-active.gp-dashboard-chart-mode .timeframe-btn,body.terminal-active.gp-dashboard-chart-mode .tv-top-tool,body.gp-terminal-active.gp-dashboard-chart-mode .tv-top-tool{flex:0 0 auto!important;max-width:none!important;min-width:max-content!important;overflow:visible!important;text-overflow:clip!important;white-space:nowrap!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__body,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__body{display:grid!important;grid-template-columns:repeat(4,minmax(130px,1fr))!important;align-content:start!important;gap:8px 10px!important;padding:10px!important;overflow-y:auto!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__header,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__header{min-height:38px!important}body.terminal-active.gp-dashboard-chart-mode .gp-of-slider,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-slider{row-gap:4px!important;font-size:9px!important}body.terminal-active.gp-dashboard-chart-mode .gp-of-select,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-select{grid-column:span 2!important}body.terminal-active.gp-dashboard-chart-mode .gp-of-switch-row,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-switch-row,body.terminal-active.gp-dashboard-chart-mode .gp-of-mode-grid,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-mode-grid,body.terminal-active.gp-dashboard-chart-mode .gp-of-actions,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-actions{min-width:0!important}body.terminal-active.gp-dashboard-chart-mode .gp-layer-toggles,body.gp-terminal-active.gp-dashboard-chart-mode .gp-layer-toggles{grid-column:1 / -1!important;display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:6px 8px!important;padding-top:8px!important}body.terminal-active.gp-dashboard-chart-mode .gp-layer-row,body.gp-terminal-active.gp-dashboard-chart-mode .gp-layer-row{min-width:0!important;padding:5px 7px!important;border-radius:6px!important;background:#ffffff09!important}body.terminal-active.gp-dashboard-chart-mode .orderbook__header,body.gp-terminal-active.gp-dashboard-chart-mode .orderbook__header,body.terminal-active.gp-dashboard-chart-mode .orderbook__depth,body.gp-terminal-active.gp-dashboard-chart-mode .orderbook__depth{flex:0 0 auto!important}body.terminal-active.gp-dashboard-chart-mode #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode #levels-summary{max-height:90px!important}body.terminal-active.gp-dashboard-chart-mode .orderbook__content,body.gp-terminal-active.gp-dashboard-chart-mode .orderbook__content{min-height:0!important;overflow:auto!important}}@media(min-width:1181px)and (max-height:780px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{grid-template-rows:48px 58px minmax(280px,1fr) minmax(156px,20vh) minmax(170px,22vh)!important}body.terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom{grid-template-columns:repeat(4,minmax(0,1fr))!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body{grid-template-columns:repeat(4,minmax(110px,1fr))!important}}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{grid-template-columns:132px minmax(0,1fr) minmax(310px,360px)!important;grid-template-rows:48px 82px minmax(620px,calc(100dvh - 154px)) minmax(220px,26vh) minmax(230px,26vh)!important;overflow-y:auto!important;overflow-x:hidden!important;align-items:stretch!important;scroll-padding-top:140px!important}body.terminal-active.gp-dashboard-chart-mode .gp-market-overview,body.gp-terminal-active.gp-dashboard-chart-mode .gp-market-overview{grid-column:2 / 4!important;grid-row:2!important;min-height:82px!important;height:82px!important;grid-template-columns:minmax(178px,1.12fr) minmax(160px,1.02fr) repeat(4,minmax(148px,.95fr)) minmax(136px,.78fr)!important;overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .gp-overview-card,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-card,body.terminal-active.gp-dashboard-chart-mode .gp-overview-sentiment,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-sentiment{justify-content:center!important;gap:5px!important;min-height:82px!important;padding:9px 16px!important;overflow:visible!important}body.terminal-active.gp-dashboard-chart-mode .gp-overview-card span,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-card span,body.terminal-active.gp-dashboard-chart-mode .gp-overview-sentiment span,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-sentiment span{display:block!important;line-height:1.15!important;white-space:nowrap!important}body.terminal-active.gp-dashboard-chart-mode .gp-overview-card strong,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-card strong{display:block!important;max-width:100%!important;min-height:22px!important;overflow:visible!important;text-overflow:clip!important;white-space:nowrap!important;line-height:1.18!important;font-size:clamp(15px,1.02vw,19px)!important}body.terminal-active.gp-dashboard-chart-mode .gp-overview-market strong,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-market strong{display:flex!important;height:31px!important;min-height:31px!important;align-items:center!important;overflow:hidden!important;text-overflow:ellipsis!important}body.terminal-active.gp-dashboard-chart-mode #gp-overview-price,body.gp-terminal-active.gp-dashboard-chart-mode #gp-overview-price{color:#ff4d67!important;font-size:clamp(17px,1.08vw,20px)!important;line-height:1.15!important}body.terminal-active.gp-dashboard-chart-mode #gp-overview-change,body.gp-terminal-active.gp-dashboard-chart-mode #gp-overview-change{display:block!important;max-height:14px!important;line-height:1.1!important;overflow:hidden!important;white-space:nowrap!important;text-overflow:ellipsis!important}body.terminal-active.gp-dashboard-chart-mode .gp-gauge,body.gp-terminal-active.gp-dashboard-chart-mode .gp-gauge{width:86px!important;height:34px!important;flex:0 0 auto!important}body.terminal-active.gp-dashboard-chart-mode .gp-overview-sentiment strong,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-sentiment strong{font-size:0!important;line-height:0!important;min-height:0!important}body.terminal-active.gp-dashboard-chart-mode .main,body.gp-terminal-active.gp-dashboard-chart-mode .main,body.terminal-active.gp-dashboard-chart-mode .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode .chart-container{min-height:620px!important;height:100%!important}body.terminal-active.gp-dashboard-chart-mode .chart-area,body.gp-terminal-active.gp-dashboard-chart-mode .chart-area{min-height:420px!important}}@media(min-width:1181px)and (max-height:860px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{grid-template-rows:48px 78px minmax(560px,calc(100dvh - 146px)) minmax(205px,25vh) minmax(220px,26vh)!important}body.terminal-active.gp-dashboard-chart-mode .gp-market-overview,body.gp-terminal-active.gp-dashboard-chart-mode .gp-market-overview{min-height:78px!important;height:78px!important}body.terminal-active.gp-dashboard-chart-mode .gp-overview-card,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-card,body.terminal-active.gp-dashboard-chart-mode .gp-overview-sentiment,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-sentiment{min-height:78px!important;padding-block:8px!important}body.terminal-active.gp-dashboard-chart-mode .main,body.gp-terminal-active.gp-dashboard-chart-mode .main,body.terminal-active.gp-dashboard-chart-mode .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode .chart-container{min-height:560px!important}body.terminal-active.gp-dashboard-chart-mode .chart-area,body.gp-terminal-active.gp-dashboard-chart-mode .chart-area{min-height:370px!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active.gp-dashboard-chart-mode .gp-market-overview,body.gp-terminal-active.gp-dashboard-chart-mode .gp-market-overview{grid-template-columns:minmax(150px,1fr) minmax(142px,.95fr) repeat(4,minmax(126px,.9fr)) minmax(118px,.72fr)!important}body.terminal-active.gp-dashboard-chart-mode .gp-overview-card,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-card,body.terminal-active.gp-dashboard-chart-mode .gp-overview-sentiment,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-sentiment{padding-inline:12px!important}body.terminal-active.gp-dashboard-chart-mode .gp-overview-card strong,body.gp-terminal-active.gp-dashboard-chart-mode .gp-overview-card strong{font-size:clamp(13px,1.15vw,16px)!important}}body.terminal-active.gp-dashboard-chart-mode .gp-calendar-card,body.gp-terminal-active.gp-dashboard-chart-mode .gp-calendar-card,body.terminal-active.gp-dashboard-chart-mode .gp-performance-card,body.gp-terminal-active.gp-dashboard-chart-mode .gp-performance-card{display:none!important}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{grid-template-columns:132px minmax(0,1fr) minmax(420px,460px)!important;grid-template-rows:48px 78px minmax(560px,calc(100dvh - 146px)) 660px minmax(238px,270px)!important;align-items:stretch!important;overflow-y:auto!important;overflow-x:hidden!important}body.terminal-active.gp-dashboard-chart-mode .main,body.gp-terminal-active.gp-dashboard-chart-mode .main{grid-column:2 / 4!important;grid-row:3!important}body.terminal-active.gp-dashboard-chart-mode .main,body.gp-terminal-active.gp-dashboard-chart-mode .main,body.terminal-active.gp-dashboard-chart-mode .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode .chart-container{min-height:560px!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel{grid-column:2!important;grid-row:4!important;align-self:stretch!important;width:100%!important;height:100%!important;min-height:660px!important;max-height:none!important;overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode .sidebar{grid-column:3!important;grid-row:4!important;align-self:stretch!important;width:100%!important;height:100%!important;min-height:660px!important;max-height:none!important;overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__header,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__header,body.terminal-active.gp-dashboard-chart-mode .orderbook__header,body.gp-terminal-active.gp-dashboard-chart-mode .orderbook__header{min-height:44px!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body{flex:1 1 auto!important;display:grid!important;grid-template-columns:repeat(5,minmax(120px,1fr))!important;grid-auto-rows:min-content!important;align-content:start!important;gap:12px!important;padding:14px!important;overflow:visible!important}body.terminal-active.gp-dashboard-chart-mode .gp-of-select,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-select{grid-column:span 2!important}body.terminal-active.gp-dashboard-chart-mode .gp-of-switch-row,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-switch-row,body.terminal-active.gp-dashboard-chart-mode .gp-of-mode-grid,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-mode-grid,body.terminal-active.gp-dashboard-chart-mode .gp-of-actions,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-actions{grid-column:span 1!important;min-height:36px!important}body.terminal-active.gp-dashboard-chart-mode .gp-layer-toggles,body.gp-terminal-active.gp-dashboard-chart-mode .gp-layer-toggles{grid-column:1 / -1!important;display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:8px 10px!important;padding-top:10px!important}body.terminal-active.gp-dashboard-chart-mode .gp-layer-row,body.gp-terminal-active.gp-dashboard-chart-mode .gp-layer-row{min-height:34px!important;padding:7px 9px!important}body.terminal-active.gp-dashboard-chart-mode .orderbook__content,body.gp-terminal-active.gp-dashboard-chart-mode .orderbook__content{flex:1 1 auto!important;min-height:360px!important;max-height:none!important;overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .dom-ladder,body.gp-terminal-active.gp-dashboard-chart-mode .dom-ladder{height:100%!important;min-height:360px!important;font-size:9px!important}body.terminal-active.gp-dashboard-chart-mode .dom-ladder__header,body.gp-terminal-active.gp-dashboard-chart-mode .dom-ladder__header{padding:5px 10px!important;font-size:8px!important}body.terminal-active.gp-dashboard-chart-mode .dom-ladder__row,body.gp-terminal-active.gp-dashboard-chart-mode .dom-ladder__row{height:15px!important;min-height:15px!important}body.terminal-active.gp-dashboard-chart-mode .dom-ladder__spread,body.gp-terminal-active.gp-dashboard-chart-mode .dom-ladder__spread{min-height:25px!important;padding:5px 6px!important}body.terminal-active.gp-dashboard-chart-mode #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode #levels-summary{flex:0 0 auto!important;max-height:none!important;overflow:visible!important;border-top:1px solid rgba(70,123,196,.14)!important}body.terminal-active.gp-dashboard-chart-mode .levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode .levels-summary{gap:8px!important;padding:10px!important;background:#040c1994!important}body.terminal-active.gp-dashboard-chart-mode .levels-summary__stats,body.gp-terminal-active.gp-dashboard-chart-mode .levels-summary__stats{gap:7px!important}body.terminal-active.gp-dashboard-chart-mode .levels-summary__stat,body.gp-terminal-active.gp-dashboard-chart-mode .levels-summary__stat{padding:7px!important}body.terminal-active.gp-dashboard-chart-mode .levels-summary__section,body.gp-terminal-active.gp-dashboard-chart-mode .levels-summary__section{gap:4px!important}body.terminal-active.gp-dashboard-chart-mode .levels-summary__item,body.gp-terminal-active.gp-dashboard-chart-mode .levels-summary__item{padding:5px 7px!important;gap:3px!important}body.terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom{grid-column:2 / 4!important;grid-row:5!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;min-height:238px!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{grid-template-columns:126px minmax(0,1fr) minmax(385px,420px)!important;grid-template-rows:48px 78px minmax(540px,calc(100dvh - 146px)) 640px minmax(230px,260px)!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel,body.terminal-active.gp-dashboard-chart-mode .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode .sidebar{min-height:640px!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body{grid-template-columns:repeat(4,minmax(115px,1fr))!important}body.terminal-active.gp-dashboard-chart-mode .gp-of-switch-row,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-switch-row,body.terminal-active.gp-dashboard-chart-mode .gp-of-mode-grid,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-mode-grid,body.terminal-active.gp-dashboard-chart-mode .gp-of-actions,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-actions{grid-column:span 2!important}body.terminal-active.gp-dashboard-chart-mode .gp-layer-toggles,body.gp-terminal-active.gp-dashboard-chart-mode .gp-layer-toggles{grid-template-columns:repeat(3,minmax(0,1fr))!important}}@media(min-width:1181px)and (max-height:780px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{grid-template-rows:48px 74px minmax(500px,calc(100dvh - 140px)) 620px minmax(220px,250px)!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel,body.terminal-active.gp-dashboard-chart-mode .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode .sidebar{min-height:620px!important}}@media(min-width:1181px){body.terminal-active .gp-top-menu,body.gp-terminal-active .gp-top-menu{display:none!important;visibility:hidden!important;width:0!important;min-width:0!important;max-width:0!important;flex:0 0 0!important;overflow:hidden!important}body.terminal-active .header,body.gp-terminal-active .header{gap:10px!important;padding-inline:10px!important;overflow:visible!important}body.terminal-active .header__logo,body.gp-terminal-active .header__logo{flex:0 0 184px!important;min-width:184px!important}body.terminal-active .header__logo span,body.gp-terminal-active .header__logo span{max-width:none!important;overflow:visible!important;text-overflow:clip!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector,body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex:0 0 auto!important;min-width:0!important}body.terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger{min-width:146px!important;justify-content:space-between!important;padding-inline:14px!important}body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{min-width:126px!important;justify-content:space-between!important;padding-inline:14px!important}body.terminal-active #exchange-selector .selector__label,body.gp-terminal-active #exchange-selector .selector__label,body.terminal-active #symbol-selector .selector__label,body.gp-terminal-active #symbol-selector .selector__label{max-width:none!important;overflow:visible!important;text-overflow:clip!important;white-space:nowrap!important}body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar{margin-left:auto!important;flex:0 0 auto!important}body.terminal-active .header__controls,body.gp-terminal-active .header__controls{flex:0 0 auto!important;margin-left:0!important;overflow:visible!important}body.terminal-active .gp-chart-head-actions,body.gp-terminal-active .gp-chart-head-actions{display:none!important}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{grid-template-columns:1fr!important;padding-right:12px!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active .header__logo,body.gp-terminal-active .header__logo{flex-basis:176px!important;min-width:176px!important}body.terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger{min-width:134px!important}body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{min-width:116px!important}}body.terminal-active .gp-help-layout,body.gp-terminal-active .gp-help-layout{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}body.terminal-active .gp-help-card,body.gp-terminal-active .gp-help-card{display:grid;gap:9px;min-height:128px;padding:18px;border-radius:12px;border:1px solid rgba(73,133,214,.16);background:linear-gradient(180deg,#081426db,#040b18c7);box-shadow:inset 0 1px #ffffff0a,0 18px 42px #00000029}body.terminal-active .gp-help-card strong,body.gp-terminal-active .gp-help-card strong{color:#f7fbff;font-size:14px;font-weight:950}body.terminal-active .gp-help-card p,body.gp-terminal-active .gp-help-card p{margin:0;color:#d6e4f8ad;font-size:13px;line-height:1.55}body.terminal-active .gp-contact-card,body.gp-terminal-active .gp-contact-card{border-color:#00d8ff38;background:radial-gradient(circle at 92% 0%,rgba(0,216,255,.14),transparent 36%),linear-gradient(180deg,#081426eb,#040b18d1)}body.terminal-active .gp-contact-card a,body.gp-terminal-active .gp-contact-card a{display:inline-flex;width:fit-content;min-height:38px;align-items:center;padding:0 14px;border-radius:10px;border:1px solid rgba(45,128,255,.36);background:linear-gradient(135deg,#1266ffe6,#00d0ffc7);color:#fff;font-size:13px;font-weight:950;text-decoration:none;box-shadow:0 14px 30px #005aff2e}@media(max-width:1180px){body.terminal-active .gp-help-layout,body.gp-terminal-active .gp-help-layout{grid-template-columns:1fr}}@media(min-width:1181px){body.terminal-active .header,body.gp-terminal-active .header{gap:10px!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector{flex:0 0 146px!important;width:146px!important}body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex:0 0 132px!important;width:132px!important}body.terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger,body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{width:100%!important;min-width:100%!important;padding-inline:13px!important;justify-content:space-between!important}body.terminal-active #exchange-selector .selector__label,body.gp-terminal-active #exchange-selector .selector__label,body.terminal-active #symbol-selector .selector__label,body.gp-terminal-active #symbol-selector .selector__label{max-width:none!important;overflow:visible!important;text-overflow:clip!important;white-space:nowrap!important}body.terminal-active #symbol-selector .selector__dropdown,body.gp-terminal-active #symbol-selector .selector__dropdown{min-width:260px!important}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{justify-content:flex-start!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector{flex-basis:132px!important;width:132px!important}body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex-basis:120px!important;width:120px!important}}body.terminal-active .gp-help-grid,body.gp-terminal-active .gp-help-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}body.terminal-active .gp-help-contact a,body.gp-terminal-active .gp-help-contact a{display:inline-flex;align-items:center;justify-content:center;width:fit-content;margin-top:12px;padding:9px 14px;border-radius:10px;color:#00111e;background:linear-gradient(135deg,#28a7ff,#18e6d3);font-weight:900;text-decoration:none;box-shadow:0 10px 24px #00aaff2e}@media(max-width:1180px){body.terminal-active .gp-help-grid,body.gp-terminal-active .gp-help-grid{grid-template-columns:1fr!important}}@media(min-width:1181px){body.terminal-active .gp-top-menu,body.gp-terminal-active .gp-top-menu{display:none!important}body.terminal-active .header,body.gp-terminal-active .header{overflow:visible!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector{flex:0 0 clamp(150px,9vw,184px)!important;width:clamp(150px,9vw,184px)!important;min-width:150px!important}body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex:0 0 clamp(145px,8vw,174px)!important;width:clamp(145px,8vw,174px)!important;min-width:145px!important}body.terminal-active #exchange-selector .selector__trigger,body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{width:100%!important;justify-content:space-between!important;padding-inline:14px!important;font-size:12px!important;font-weight:900!important}body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar{margin-left:auto!important}body.terminal-active .gp-chart-head-actions,body.gp-terminal-active .gp-chart-head-actions{display:none!important}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{justify-content:flex-start!important}}body.terminal-active .gp-help-layout,body.gp-terminal-active .gp-help-layout{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:14px}body.terminal-active .gp-help-card,body.gp-terminal-active .gp-help-card,body.terminal-active .gp-contact-card,body.gp-terminal-active .gp-contact-card{border:1px solid rgba(70,123,196,.15);border-radius:12px;background:linear-gradient(180deg,#071222d1,#030914b8);box-shadow:inset 0 1px #ffffff0a,0 20px 45px #00000029}body.terminal-active .gp-help-card,body.gp-terminal-active .gp-help-card{display:grid;gap:8px;min-height:136px;padding:16px}body.terminal-active .gp-help-card strong,body.gp-terminal-active .gp-help-card strong,body.terminal-active .gp-contact-card strong,body.gp-terminal-active .gp-contact-card strong{color:#f7fbff;font-size:13px;font-weight:950;letter-spacing:.02em}body.terminal-active .gp-help-card p,body.gp-terminal-active .gp-help-card p,body.terminal-active .gp-contact-card span,body.gp-terminal-active .gp-contact-card span{margin:0;color:#d6e4f8a8;font-size:12px;line-height:1.55}body.terminal-active .gp-contact-card,body.gp-terminal-active .gp-contact-card{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 18px}body.terminal-active .gp-contact-card div,body.gp-terminal-active .gp-contact-card div{display:grid;gap:5px}body.terminal-active .gp-contact-card a,body.gp-terminal-active .gp-contact-card a{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 18px;border-radius:10px;border:1px solid rgba(45,128,255,.32);background:linear-gradient(135deg,#166bfffa,#0bd2ffeb);color:#fff!important;font-weight:950;text-decoration:none;white-space:nowrap;box-shadow:0 10px 24px #0062ff2e}@media(max-width:1180px){body.terminal-active .gp-help-layout,body.gp-terminal-active .gp-help-layout{grid-template-columns:1fr}body.terminal-active .gp-contact-card,body.gp-terminal-active .gp-contact-card{align-items:stretch;flex-direction:column}}@media(min-width:1181px){body.terminal-active .gp-header-spacer,body.gp-terminal-active .gp-header-spacer{display:block!important;flex:1 1 auto!important;min-width:18px!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector{flex:0 0 clamp(154px,9vw,188px)!important;width:clamp(154px,9vw,188px)!important;min-width:154px!important}body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex:0 0 clamp(148px,8vw,178px)!important;width:clamp(148px,8vw,178px)!important;min-width:148px!important}}body.terminal-active .gp-help-contact,body.gp-terminal-active .gp-help-contact{border-color:#00e0ff4d!important;background:radial-gradient(circle at 90% 0%,rgba(0,224,255,.16),transparent 36%),linear-gradient(180deg,#00e0ff1a,#111c36c2)!important}body.terminal-active .gp-help-contact a,body.gp-terminal-active .gp-help-contact a{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:fit-content!important;min-height:40px!important;margin-top:8px!important;padding:0 16px!important;border-radius:10px!important;color:#00111e!important;background:linear-gradient(135deg,#28a7ff,#18e6d3)!important;font-weight:950!important;text-decoration:none!important;box-shadow:0 12px 28px #0af3!important}body.terminal-active .gp-top-menu,body.gp-terminal-active .gp-top-menu,body.terminal-active .gp-header-spacer,body.gp-terminal-active .gp-header-spacer,body.terminal-active .gp-chart-head-actions,body.gp-terminal-active .gp-chart-head-actions{display:none!important}@media(min-width:1181px){body.terminal-active .header,body.gp-terminal-active .header{grid-column:1 / -1!important;gap:10px!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector{flex:0 0 154px!important;width:154px!important}body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex:0 0 142px!important;width:142px!important}body.terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger,body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{width:100%!important;min-width:100%!important;height:36px!important;padding-inline:14px!important;justify-content:space-between!important;border-radius:8px!important}body.terminal-active #exchange-selector .selector__label,body.gp-terminal-active #exchange-selector .selector__label,body.terminal-active #symbol-selector .selector__label,body.gp-terminal-active #symbol-selector .selector__label{display:inline-block!important;max-width:none!important;overflow:visible!important;text-overflow:clip!important;white-space:nowrap!important}body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar{margin-left:auto!important}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{justify-content:flex-start!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector{flex-basis:144px!important;width:144px!important}body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex-basis:132px!important;width:132px!important}}body.terminal-active .gp-help-layout,body.gp-terminal-active .gp-help-layout{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:14px!important}body.terminal-active .gp-help-card,body.gp-terminal-active .gp-help-card{display:block!important;min-height:0!important;padding:18px!important;border-radius:14px!important;border:1px solid rgba(73,133,214,.17)!important;background:linear-gradient(180deg,#081426e0,#040b18c7)!important;box-shadow:inset 0 1px #ffffff0a,0 18px 42px #00000029!important}body.terminal-active .gp-help-card--primary,body.gp-terminal-active .gp-help-card--primary{grid-column:1 / -1!important}body.terminal-active .gp-help-card h3,body.gp-terminal-active .gp-help-card h3{margin:0 0 10px!important;color:#f7fbff!important;font-size:16px!important;font-weight:950!important}body.terminal-active .gp-help-card p,body.gp-terminal-active .gp-help-card p,body.terminal-active .gp-help-card li,body.gp-terminal-active .gp-help-card li{color:#d6e4f8c2!important;font-size:13px!important;line-height:1.6!important}body.terminal-active .gp-help-card ul,body.gp-terminal-active .gp-help-card ul{display:grid!important;gap:8px!important;margin:0!important;padding-left:18px!important}body.terminal-active .gp-help-card strong,body.gp-terminal-active .gp-help-card strong{color:#fff!important}body.terminal-active .gp-help-steps,body.gp-terminal-active .gp-help-steps{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:12px!important;margin-top:14px!important}body.terminal-active .gp-help-steps div,body.gp-terminal-active .gp-help-steps div{display:grid!important;gap:6px!important;padding:14px!important;border-radius:13px!important;border:1px solid rgba(54,137,255,.2)!important;background:#0d28498f!important}body.terminal-active .gp-help-steps b,body.gp-terminal-active .gp-help-steps b{display:grid!important;place-items:center!important;width:30px!important;height:30px!important;border-radius:999px!important;background:linear-gradient(135deg,#1677ff,#21e0c0)!important;color:#fff!important;font-weight:950!important}body.terminal-active .gp-help-steps span,body.gp-terminal-active .gp-help-steps span{color:#fff!important;font-weight:900!important}body.terminal-active .gp-help-steps small,body.gp-terminal-active .gp-help-steps small{color:#dae8f9a8!important;line-height:1.45!important}body.terminal-active .gp-help-contact,body.gp-terminal-active .gp-help-contact{border-color:#00e0ff4d!important;background:linear-gradient(180deg,#00e0ff1a,#111c36b8)!important}body.terminal-active .gp-help-contact a,body.gp-terminal-active .gp-help-contact a{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:fit-content!important;margin-top:12px!important;padding:9px 14px!important;border-radius:10px!important;color:#00111e!important;background:linear-gradient(135deg,#28a7ff,#18e6d3)!important;font-weight:950!important;text-decoration:none!important;box-shadow:0 10px 24px #00aaff2e!important}@media(max-width:1180px){body.terminal-active .gp-help-layout,body.gp-terminal-active .gp-help-layout,body.terminal-active .gp-help-steps,body.gp-terminal-active .gp-help-steps{grid-template-columns:1fr!important}}body.terminal-active .gp-top-menu,body.gp-terminal-active .gp-top-menu,body.terminal-active .gp-chart-head-actions,body.gp-terminal-active .gp-chart-head-actions{display:none!important}body.terminal-active .gp-header-spacer,body.gp-terminal-active .gp-header-spacer{display:block!important;flex:1 1 auto!important;min-width:20px!important}@media(min-width:1181px){body.terminal-active .header,body.gp-terminal-active .header{gap:10px!important;overflow:visible!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector{flex:0 0 clamp(156px,9vw,190px)!important;width:clamp(156px,9vw,190px)!important;min-width:156px!important}body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex:0 0 clamp(148px,8vw,176px)!important;width:clamp(148px,8vw,176px)!important;min-width:148px!important}body.terminal-active #exchange-selector .selector__trigger,body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{width:100%!important;justify-content:space-between!important;padding-inline:14px!important;font-size:12px!important;font-weight:900!important}body.terminal-active #exchange-selector .selector__label,body.terminal-active #symbol-selector .selector__label,body.gp-terminal-active #exchange-selector .selector__label,body.gp-terminal-active #symbol-selector .selector__label{max-width:none!important;overflow:visible!important;text-overflow:clip!important;white-space:nowrap!important}body.terminal-active #symbol-selector .selector__dropdown,body.gp-terminal-active #symbol-selector .selector__dropdown{min-width:280px!important}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{justify-content:flex-start!important;grid-template-columns:1fr!important}}@media(max-width:1180px){body.terminal-active .gp-header-spacer,body.gp-terminal-active .gp-header-spacer{flex:1 1 auto!important}}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{grid-template-columns:132px minmax(270px,.78fr) minmax(0,1.68fr) minmax(370px,.96fr)!important;grid-template-rows:48px 78px minmax(560px,calc(100dvh - 146px)) minmax(540px,58dvh)!important;align-items:stretch!important;overflow-y:auto!important;overflow-x:hidden!important}body.terminal-active.gp-dashboard-chart-mode .header,body.gp-terminal-active.gp-dashboard-chart-mode .header{grid-column:1 / 5!important;grid-row:1!important}body.terminal-active.gp-dashboard-chart-mode .gp-terminal-side,body.gp-terminal-active.gp-dashboard-chart-mode .gp-terminal-side{grid-column:1!important;grid-row:2 / 5!important}body.terminal-active.gp-dashboard-chart-mode .gp-market-overview,body.gp-terminal-active.gp-dashboard-chart-mode .gp-market-overview{grid-column:2 / 5!important;grid-row:2!important}body.terminal-active.gp-dashboard-chart-mode .main,body.gp-terminal-active.gp-dashboard-chart-mode .main{grid-column:2 / 5!important;grid-row:3!important;min-width:0!important;min-height:560px!important}body.terminal-active.gp-dashboard-chart-mode .main,body.gp-terminal-active.gp-dashboard-chart-mode .main,body.terminal-active.gp-dashboard-chart-mode .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode .chart-container{height:100%!important}body.terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom{grid-column:2!important;grid-row:4!important;display:grid!important;grid-template-columns:1fr!important;grid-template-rows:1fr 1fr!important;gap:8px!important;min-height:0!important;height:100%!important;align-self:stretch!important}body.terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom .gp-bottom-card,body.gp-terminal-active.gp-dashboard-chart-mode .gp-terminal-bottom .gp-bottom-card{min-height:0!important;height:100%!important;display:flex!important;flex-direction:column!important;gap:10px!important;overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .gp-journal-card,body.gp-terminal-active.gp-dashboard-chart-mode .gp-journal-card{grid-row:1!important}body.terminal-active.gp-dashboard-chart-mode .gp-news-card,body.gp-terminal-active.gp-dashboard-chart-mode .gp-news-card{grid-row:2!important}body.terminal-active.gp-dashboard-chart-mode .gp-journal-grid,body.gp-terminal-active.gp-dashboard-chart-mode .gp-journal-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}body.terminal-active.gp-dashboard-chart-mode .gp-calendar-mini,body.gp-terminal-active.gp-dashboard-chart-mode .gp-calendar-mini{margin-top:auto!important}body.terminal-active.gp-dashboard-chart-mode .gp-news-card ul,body.gp-terminal-active.gp-dashboard-chart-mode .gp-news-card ul{flex:1 1 auto!important;min-height:0!important;overflow:auto!important}body.terminal-active.gp-dashboard-chart-mode .gp-bottom-card button,body.gp-terminal-active.gp-dashboard-chart-mode .gp-bottom-card button{margin-top:auto!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel{grid-column:3!important;grid-row:4!important;display:flex!important;flex-direction:column!important;width:100%!important;height:100%!important;min-height:0!important;max-height:none!important;align-self:stretch!important;overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__header,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__header{min-height:44px!important;align-items:center!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__header span,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__header span{display:none!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body{flex:1 1 auto!important;display:grid!important;grid-template-columns:repeat(4,minmax(120px,1fr))!important;grid-auto-rows:min-content!important;align-content:start!important;gap:12px!important;padding:14px!important;overflow:auto!important}body.terminal-active.gp-dashboard-chart-mode .gp-of-mode-grid,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-mode-grid{display:none!important}body.terminal-active.gp-dashboard-chart-mode .gp-of-select,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-select,body.terminal-active.gp-dashboard-chart-mode .gp-of-actions,body.gp-terminal-active.gp-dashboard-chart-mode .gp-of-actions,body.terminal-active.gp-dashboard-chart-mode .gp-layer-toggles,body.gp-terminal-active.gp-dashboard-chart-mode .gp-layer-toggles{grid-column:1 / -1!important}body.terminal-active.gp-dashboard-chart-mode .gp-layer-toggles,body.gp-terminal-active.gp-dashboard-chart-mode .gp-layer-toggles{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px 10px!important;padding-top:8px!important}body.terminal-active.gp-dashboard-chart-mode .gp-layer-row,body.gp-terminal-active.gp-dashboard-chart-mode .gp-layer-row{min-height:36px!important;padding:8px 10px!important}body.terminal-active.gp-dashboard-chart-mode .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode .sidebar{grid-column:4!important;grid-row:4!important;display:flex!important;flex-direction:column!important;width:100%!important;height:100%!important;min-height:0!important;max-height:none!important;align-self:stretch!important;overflow:hidden!important}body.terminal-active.gp-dashboard-chart-mode .orderbook__content,body.gp-terminal-active.gp-dashboard-chart-mode .orderbook__content{flex:1 1 auto!important;min-height:0!important;max-height:none!important;overflow:auto!important}body.terminal-active.gp-dashboard-chart-mode .dom-ladder,body.gp-terminal-active.gp-dashboard-chart-mode .dom-ladder{min-height:100%!important;height:100%!important}body.terminal-active.gp-dashboard-chart-mode #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode #levels-summary{flex:0 0 auto!important;overflow:visible!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active.gp-dashboard-chart-mode #app,body.gp-terminal-active.gp-dashboard-chart-mode #app{grid-template-columns:126px minmax(245px,.78fr) minmax(0,1.55fr) minmax(340px,.94fr)!important;grid-template-rows:48px 76px minmax(520px,calc(100dvh - 144px)) minmax(520px,58dvh)!important}body.terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body,body.gp-terminal-active.gp-dashboard-chart-mode .tools-panel__body.gp-orderflow-body{grid-template-columns:repeat(3,minmax(120px,1fr))!important}body.terminal-active.gp-dashboard-chart-mode .gp-layer-toggles,body.gp-terminal-active.gp-dashboard-chart-mode .gp-layer-toggles{grid-template-columns:1fr!important}}@media(min-width:1181px){body.terminal-active.gp-dashboard-show-panel #app,body.gp-terminal-active.gp-dashboard-show-panel #app{grid-template-columns:132px minmax(0,1fr)!important;grid-template-rows:48px minmax(0,1fr)!important}body.terminal-active.gp-dashboard-show-panel .gp-market-overview,body.gp-terminal-active.gp-dashboard-show-panel .gp-market-overview,body.terminal-active.gp-dashboard-show-panel .main,body.gp-terminal-active.gp-dashboard-show-panel .main,body.terminal-active.gp-dashboard-show-panel .tools-panel,body.gp-terminal-active.gp-dashboard-show-panel .tools-panel,body.terminal-active.gp-dashboard-show-panel .sidebar,body.gp-terminal-active.gp-dashboard-show-panel .sidebar,body.terminal-active.gp-dashboard-show-panel .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-show-panel .gp-terminal-bottom,body.terminal-active.gp-dashboard-show-panel .gp-market-widgets,body.gp-terminal-active.gp-dashboard-show-panel .gp-market-widgets{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels{grid-column:2!important;grid-row:2!important;display:block!important;min-width:0!important;min-height:0!important;padding-top:8px!important}}body.terminal-active .gp-terminal-side nav,body.gp-terminal-active .gp-terminal-side nav{gap:6px!important}body.terminal-active .gp-terminal-side a,body.terminal-active .gp-terminal-side button,body.gp-terminal-active .gp-terminal-side a,body.gp-terminal-active .gp-terminal-side button{display:grid!important;grid-template-columns:18px minmax(0,1fr)!important;align-items:center!important;column-gap:10px!important;row-gap:0!important;text-align:left!important;line-height:1.15!important;padding:0 10px!important}body.terminal-active .gp-terminal-side span,body.gp-terminal-active .gp-terminal-side span{grid-column:1!important;width:18px!important;min-width:18px!important;text-align:center!important;justify-self:center!important}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode .chart-container{display:flex!important;flex-direction:column!important}body.terminal-active.gp-dashboard-chart-mode .chart-area,body.gp-terminal-active.gp-dashboard-chart-mode .chart-area{order:1!important;flex:1 1 auto!important;min-height:0!important}body.terminal-active.gp-dashboard-chart-mode .analytics,body.gp-terminal-active.gp-dashboard-chart-mode .analytics{order:2!important}body.terminal-active.gp-dashboard-chart-mode .cvd-container,body.gp-terminal-active.gp-dashboard-chart-mode .cvd-container{order:3!important;border-top:1px solid rgba(70,123,196,.12)!important;border-bottom:1px solid rgba(70,123,196,.1)!important;background:#030a16b8!important;min-height:74px!important;height:74px!important;flex:0 0 74px!important}}body.terminal-active .chart-theme-switch__btn[data-theme=light],body.gp-terminal-active .chart-theme-switch__btn[data-theme=light],#chart-theme-light{display:none!important}body.terminal-active .chart-theme-switch,body.gp-terminal-active .chart-theme-switch{grid-template-columns:1fr!important}body.terminal-active .tv-top-tool--clean,body.gp-terminal-active .tv-top-tool--clean{border-color:#00e0ff57!important;color:#eaffff!important;background:linear-gradient(135deg,#0062ffb3,#00d2ff75)!important;box-shadow:0 0 18px #00aeff1f!important;font-weight:950!important}body.terminal-active .gp-plan-card,body.gp-terminal-active .gp-plan-card{gap:8px!important;align-content:start!important}body.terminal-active .gp-plan-card .gp-plan-card-head strong,body.gp-terminal-active .gp-plan-card .gp-plan-card-head strong{min-width:0!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body.terminal-active .gp-plan-card .gp-plan-card-head b,body.gp-terminal-active .gp-plan-card .gp-plan-card-head b{flex:0 0 auto!important;justify-self:auto!important;margin-top:0!important;padding:2px 0!important;color:#1fe081!important;font-size:11px!important;line-height:1!important}body.terminal-active .gp-plan-card #gp-terminal-plan-valid,body.gp-terminal-active .gp-plan-card #gp-terminal-plan-valid{display:block!important;line-height:1.35!important;overflow-wrap:anywhere!important}body.terminal-active .gp-plan-card button,body.gp-terminal-active .gp-plan-card button{cursor:pointer!important}.gp-plan-validity-card{border-color:#00e0ff3d!important;background:radial-gradient(circle at 90% 0%,rgba(0,224,255,.12),transparent 34%),linear-gradient(180deg,#081426e6,#040b18cc)!important}.gp-plan-extend-actions{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin-top:12px}.gp-plan-extend-actions .gp-main-action,.gp-plan-extend-actions .gp-soft-action{min-height:38px;padding:0 16px}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{grid-template-columns:minmax(0,1fr) auto!important;align-items:center!important}body.terminal-active .gp-clean-chart-head-btn,body.gp-terminal-active .gp-clean-chart-head-btn{display:inline-flex!important;align-items:center;justify-content:center;min-height:30px;padding:0 14px;border-radius:9px;border:1px solid rgba(0,224,255,.34);color:#eaffff;background:linear-gradient(135deg,#0062ffb8,#00d6ff75);font-size:11px;font-weight:950;letter-spacing:.01em;cursor:pointer;box-shadow:0 0 18px #00aeff1f}body.terminal-active .gp-clean-chart-head-btn:hover,body.gp-terminal-active .gp-clean-chart-head-btn:hover,body.terminal-active .gp-clean-chart-head-btn.active,body.gp-terminal-active .gp-clean-chart-head-btn.active{border-color:#00ffd094;background:linear-gradient(135deg,#007effeb,#00efbeb3);color:#fff}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #app,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #app{grid-template-rows:48px 78px minmax(650px,calc(100dvh - 146px))!important;overflow-y:auto!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .gp-terminal-side,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .gp-terminal-side{grid-row:2 / 4!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .main,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .main{grid-column:2 / 5!important;grid-row:3!important;min-height:650px!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .chart-container{min-height:650px!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .analytics,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .analytics,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .cvd-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .cvd-container,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .tools-panel,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .sidebar,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .gp-terminal-bottom{display:none!important}}#chart-theme-light,.chart-theme-switch,.chart-settings-row:has(#chart-theme-light){display:none!important}body.terminal-active .gp-plan-card,body.gp-terminal-active .gp-plan-card{gap:8px!important;padding:10px!important;overflow:hidden!important}body.terminal-active .gp-plan-card-head,body.gp-terminal-active .gp-plan-card-head{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:8px!important;min-width:0!important}body.terminal-active .gp-plan-card-head strong,body.gp-terminal-active .gp-plan-card-head strong{flex:1 1 auto!important;min-width:0!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}body.terminal-active .gp-plan-card-head b,body.gp-terminal-active .gp-plan-card-head b{position:static!important;flex:0 0 auto!important;justify-self:auto!important;margin:0!important;white-space:nowrap!important;line-height:1!important}body.terminal-active #gp-terminal-plan-valid,body.gp-terminal-active #gp-terminal-plan-valid{display:block!important;width:100%!important;text-align:left!important;line-height:1.35!important;word-break:normal!important;overflow-wrap:normal!important}body.gp-clean-chart-visuals-only .heatmap-canvas,body.gp-clean-chart-visuals-only .atas-heatmap-canvas,body.gp-clean-chart-visuals-only .volume-bubbles-canvas,body.gp-clean-chart-visuals-only .atas-bubbles-canvas,body.gp-clean-chart-visuals-only .volume-bubble-tooltip,body.gp-clean-chart-visuals-only .atas-bubble-tooltip,body.gp-clean-chart-visuals-only .volume-profile-overlay,body.gp-clean-chart-visuals-only .footprint-chart-overlay{display:none!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important}body.gp-clean-chart-visuals-only .gp-clean-chart-head-btn,body.gp-clean-chart-visuals-only .tv-top-tool--clean{border-color:#00ffd094!important;background:linear-gradient(135deg,#007effeb,#00efbeb3)!important;color:#fff!important}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app{grid-template-columns:132px minmax(270px,.78fr) minmax(0,1.68fr) minmax(370px,.96fr)!important;grid-template-rows:48px 78px minmax(560px,calc(100dvh - 146px)) minmax(540px,58dvh)!important;overflow-y:auto!important;overflow-x:hidden!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-terminal-side,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-terminal-side{grid-column:1!important;grid-row:2 / 5!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-market-overview,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-market-overview{grid-column:2 / 5!important;grid-row:2!important;display:grid!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .main,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .main{grid-column:2 / 5!important;grid-row:3!important;display:block!important;min-height:560px!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .chart-container{min-height:560px!important;height:100%!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .analytics,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .analytics{display:grid!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .tools-panel{grid-column:3!important;grid-row:4!important;display:flex!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .sidebar{grid-column:4!important;grid-row:4!important;display:flex!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-terminal-bottom{grid-column:2!important;grid-row:4!important;display:grid!important;visibility:visible!important;opacity:1!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app{grid-template-columns:126px minmax(245px,.78fr) minmax(0,1.55fr) minmax(340px,.94fr)!important;grid-template-rows:48px 76px minmax(520px,calc(100dvh - 144px)) minmax(520px,58dvh)!important}}body.gp-clean-chart-active .heatmap-canvas,body.gp-clean-chart-active .atas-heatmap-canvas,body.gp-clean-chart-active .volume-bubbles-canvas,body.gp-clean-chart-active .atas-bubbles-canvas,body.gp-clean-chart-active .volume-bubble-tooltip,body.gp-clean-chart-active .atas-bubble-tooltip,body.gp-clean-chart-active .volume-profile-overlay,body.gp-clean-chart-active .footprint-chart-overlay,body.gp-clean-chart-active .cvd-container,body.gp-clean-chart-visuals-only .heatmap-canvas,body.gp-clean-chart-visuals-only .atas-heatmap-canvas,body.gp-clean-chart-visuals-only .volume-bubbles-canvas,body.gp-clean-chart-visuals-only .atas-bubbles-canvas,body.gp-clean-chart-visuals-only .volume-bubble-tooltip,body.gp-clean-chart-visuals-only .atas-bubble-tooltip,body.gp-clean-chart-visuals-only .volume-profile-overlay,body.gp-clean-chart-visuals-only .footprint-chart-overlay,body.gp-clean-chart-visuals-only .cvd-container{display:none!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #app,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #app,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app{grid-template-columns:132px minmax(270px,.78fr) minmax(0,1.68fr) minmax(370px,.96fr)!important;grid-template-rows:48px 78px minmax(560px,calc(100dvh - 146px)) minmax(540px,58dvh)!important;overflow-y:auto!important;overflow-x:hidden!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .gp-terminal-side,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .gp-terminal-side,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-terminal-side,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-terminal-side{grid-column:1!important;grid-row:2 / 5!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .gp-market-overview,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .gp-market-overview,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-market-overview,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-market-overview{grid-column:2 / 5!important;grid-row:2!important;display:grid!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .main,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .main,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .main,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .main{grid-column:2 / 5!important;grid-row:3!important;display:block!important;min-height:560px!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .chart-container,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .chart-container{min-height:560px!important;height:100%!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .analytics,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .analytics,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .analytics,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .analytics{display:grid!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .tools-panel,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .tools-panel{grid-column:3!important;grid-row:4!important;display:flex!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .gp-terminal-bottom,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .gp-terminal-bottom{grid-column:2!important;grid-row:4!important;display:grid!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .sidebar,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .sidebar,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #levels-summary,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #levels-summary{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #app,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #app,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app{grid-template-columns:126px minmax(245px,.78fr) minmax(0,1.55fr) minmax(340px,.94fr)!important;grid-template-rows:48px 76px minmax(520px,calc(100dvh - 144px)) minmax(520px,58dvh)!important}}body.gp-clean-chart-visuals-only .heatmap-canvas,body.gp-clean-chart-visuals-only .atas-heatmap-canvas,body.gp-clean-chart-visuals-only .volume-bubbles-canvas,body.gp-clean-chart-visuals-only .atas-bubbles-canvas,body.gp-clean-chart-visuals-only .volume-bubbles,body.gp-clean-chart-visuals-only .volume-bubble-tooltip,body.gp-clean-chart-visuals-only .atas-bubble-tooltip,body.gp-clean-chart-visuals-only .volume-profile-overlay,body.gp-clean-chart-visuals-only .volume-profile-card,body.gp-clean-chart-visuals-only .vp-chart-anchored,body.gp-clean-chart-visuals-only .footprint-chart-overlay,body.gp-clean-chart-visuals-only .footprint-chart-shell{display:none!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app{grid-template-columns:132px minmax(270px,.78fr) minmax(0,1.68fr) minmax(370px,.96fr)!important;grid-template-rows:48px 78px minmax(560px,calc(100dvh - 146px)) minmax(540px,58dvh)!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .main,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .main,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .chart-container{min-height:560px!important;height:100%!important}}@media(min-width:1181px)and (max-width:1500px){body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #app{grid-template-columns:126px minmax(245px,.78fr) minmax(0,1.55fr) minmax(340px,.94fr)!important;grid-template-rows:48px 76px minmax(520px,calc(100dvh - 144px)) minmax(520px,58dvh)!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .main,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .main,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .chart-container{min-height:520px!important}}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .sidebar,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .sidebar{grid-column:4!important;grid-row:4!important;display:flex!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #levels-summary,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #levels-summary{display:block!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important}}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .cvd-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .cvd-container,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .cvd-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .cvd-container{display:none!important}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .sidebar,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .sidebar{grid-column:4!important;grid-row:4!important;display:flex!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important;width:100%!important;height:100%!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #levels-summary,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #levels-summary{display:block!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .orderbook__content,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .orderbook__content,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .orderbook__content,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .orderbook__content{display:block!important;visibility:visible!important;opacity:1!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .chart-container,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .chart-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .chart-container{display:flex!important;flex-direction:column!important}}@media(min-width:1181px){body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .sidebar,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .sidebar,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .sidebar{grid-column:4!important;grid-row:4!important;display:flex!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only #levels-summary,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #levels-summary,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active #levels-summary{display:block!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important}body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .tools-panel,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .tools-panel,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .tools-panel{grid-column:3!important;grid-row:4!important}}body:not(.gp-cvd-enabled) #cvd-chart,body:not(.gp-cvd-enabled) .cvd-container,body.gp-clean-chart-active #cvd-chart,body.gp-clean-chart-active .cvd-container,body.gp-clean-chart-visuals-only #cvd-chart,body.gp-clean-chart-visuals-only .cvd-container,#cvd-chart.gp-cvd-hidden,.cvd-container.gp-cvd-hidden,#cvd-chart[hidden]{display:none!important;height:0!important;min-height:0!important;max-height:0!important;flex:0 0 0!important;flex-basis:0!important;padding:0!important;margin:0!important;border:0!important;overflow:hidden!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important}body.gp-cvd-enabled:not(.gp-clean-chart-active):not(.gp-clean-chart-visuals-only) #cvd-chart,body.gp-cvd-enabled:not(.gp-clean-chart-active):not(.gp-clean-chart-visuals-only) .cvd-container:not(.gp-cvd-hidden){display:block!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important}body.terminal-active #sidebar-settings-btn,body.gp-terminal-active #sidebar-settings-btn,body.terminal-active [data-open-terminal-settings],body.gp-terminal-active [data-open-terminal-settings]{cursor:pointer!important;pointer-events:auto!important}body.terminal-active.gp-dashboard-chart-mode:not(.gp-cvd-enabled) .cvd-container,body.gp-terminal-active.gp-dashboard-chart-mode:not(.gp-cvd-enabled) .cvd-container,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .cvd-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-visuals-only .cvd-container,body.terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .cvd-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-clean-chart-active .cvd-container{display:none!important;height:0!important;min-height:0!important;max-height:0!important;flex:0 0 0!important;flex-basis:0!important;padding:0!important;margin:0!important;border:0!important;overflow:hidden!important;opacity:0!important;visibility:hidden!important}body.terminal-active.gp-dashboard-chart-mode.gp-cvd-enabled:not(.gp-clean-chart-visuals-only):not(.gp-clean-chart-active) .cvd-container,body.gp-terminal-active.gp-dashboard-chart-mode.gp-cvd-enabled:not(.gp-clean-chart-visuals-only):not(.gp-clean-chart-active) .cvd-container{display:block!important;height:74px!important;min-height:74px!important;max-height:74px!important;flex:0 0 74px!important;flex-basis:74px!important;opacity:1!important;visibility:visible!important;overflow:hidden!important;border-top:1px solid rgba(70,123,196,.12)!important;border-bottom:1px solid rgba(70,123,196,.1)!important}#sidebar-settings-btn{cursor:pointer!important}#cvd-chart.gp-cvd-hidden,#cvd-chart[hidden],body:not(.gp-cvd-enabled) #cvd-chart,body.gp-clean-chart-visuals-only #cvd-chart,body.gp-clean-chart-active #cvd-chart{display:none!important;height:0!important;min-height:0!important;max-height:0!important;flex:0 0 0!important;flex-basis:0!important;overflow:hidden!important;border:0!important;margin:0!important;padding:0!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important}body.gp-cvd-enabled:not(.gp-clean-chart-visuals-only):not(.gp-clean-chart-active) #cvd-chart:not(.gp-cvd-hidden){display:block!important;min-height:74px!important;height:74px!important;flex:0 0 74px!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important}body.terminal-active .settings-overlay,body.gp-terminal-active .settings-overlay,.settings-overlay.active{z-index:19990!important}body.terminal-active .settings-panel,body.gp-terminal-active .settings-panel,.settings-panel.active{z-index:20000!important}body.terminal-active #sidebar-settings-btn,body.gp-terminal-active #sidebar-settings-btn{cursor:pointer!important;pointer-events:auto!important}body.terminal-active:not(.gp-cvd-enabled) #cvd-chart,body.gp-terminal-active:not(.gp-cvd-enabled) #cvd-chart,body.gp-clean-chart-visuals-only #cvd-chart,body.gp-clean-chart-active #cvd-chart,#cvd-chart.gp-cvd-hidden{display:none!important;height:0!important;min-height:0!important;max-height:0!important;flex:0 0 0!important;flex-basis:0!important;overflow:hidden!important;border:0!important;margin:0!important;padding:0!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important}body.gp-cvd-enabled:not(.gp-clean-chart-visuals-only):not(.gp-clean-chart-active) #cvd-chart:not(.gp-cvd-hidden){display:block!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important}body.terminal-active .gp-terminal-side #sidebar-settings-btn,body.gp-terminal-active .gp-terminal-side #sidebar-settings-btn{cursor:pointer!important;pointer-events:auto!important}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{justify-content:flex-start!important;gap:9px!important}body.terminal-active .gp-watchlist-star,body.gp-terminal-active .gp-watchlist-star{display:inline-flex!important;align-items:center;justify-content:center;width:26px;height:26px;flex:0 0 26px;border-radius:999px;border:1px solid rgba(255,255,255,.16);background:#ffffff09;color:#fff;font-size:18px;line-height:1;font-weight:900;cursor:pointer;box-shadow:inset 0 1px #ffffff0d,0 8px 18px #0003;transition:.16s ease}body.terminal-active .gp-watchlist-star:hover,body.gp-terminal-active .gp-watchlist-star:hover{transform:translateY(-1px) scale(1.03);border-color:#ffd53585;box-shadow:0 0 18px #ffd53524,inset 0 1px #ffffff14}body.terminal-active .gp-watchlist-star.active,body.gp-terminal-active .gp-watchlist-star.active{color:#ffd329;border-color:#ffd32994;background:#ffd3291a;text-shadow:0 0 14px rgba(255,211,41,.42)}body.terminal-active .watchlist-panel__body,body.gp-terminal-active .watchlist-panel__body{padding-top:4px!important}body.terminal-active .watchlist-empty,body.gp-terminal-active .watchlist-empty{display:grid;gap:8px;margin:8px 0 2px;padding:16px;border-radius:14px;border:1px dashed rgba(121,161,215,.28);background:#050e1d9e;color:#ddeafac2}body.terminal-active .watchlist-empty strong,body.gp-terminal-active .watchlist-empty strong{color:#fff;font-size:13px;font-weight:900}body.terminal-active .watchlist-empty span,body.gp-terminal-active .watchlist-empty span{color:#cbdbf1ad;font-size:12px;line-height:1.45}body.terminal-active .watchlist-row,body.gp-terminal-active .watchlist-row{min-height:48px}body.terminal-active .watchlist-row__symbol,body.gp-terminal-active .watchlist-row__symbol{display:inline-flex;align-items:center;gap:6px;min-width:0}body.terminal-active .watchlist-row__symbol b,body.gp-terminal-active .watchlist-row__symbol b{color:#ffd329;font-size:11px;text-shadow:0 0 12px rgba(255,211,41,.3)}body.terminal-active .watchlist-row__last,body.gp-terminal-active .watchlist-row__last{display:grid;gap:2px;color:#fff;font-family:var(--font-mono);font-weight:850}body.terminal-active .watchlist-row__last small,body.gp-terminal-active .watchlist-row__last small{color:#1ff29c;font:800 9px/1 var(--font-sans);letter-spacing:.03em;text-transform:uppercase}.gp-subscription-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:16px 0 12px}.gp-subscription-card{display:grid;gap:8px;padding:16px;border-radius:18px;border:1px solid rgba(0,224,255,.22);background:linear-gradient(180deg,#ffffff12,#ffffff06)}.gp-subscription-card span{color:#ffffff94;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.gp-subscription-card h3{margin:0;color:#fff;font-size:28px;letter-spacing:-.04em}.gp-subscription-card p{margin:0 0 6px;color:#ffffffa3;line-height:1.45}.gp-checkout-price{margin:12px 0;padding:13px 14px;border-radius:14px;border:1px solid rgba(0,224,255,.26);background:#0084ff1f;color:#fff;font-size:22px;font-weight:950}.gp-checkout-price span{color:#7ff7ff;font-size:13px;margin-left:6px}.gp-checkout-pending p{line-height:1.5}body.terminal-active .gp-plan-card.is-viewer .gp-plan-card-head b,body.gp-terminal-active .gp-plan-card.is-viewer .gp-plan-card-head b{color:#ffd36a!important}body.terminal-active .gp-plan-card.is-viewer,body.gp-terminal-active .gp-plan-card.is-viewer{border-color:#ffd36a47!important}@media(max-width:760px){.gp-subscription-grid{grid-template-columns:1fr}}.gp-payment-link{display:inline-flex;align-items:center;justify-content:center;min-height:44px;margin:10px 0 6px;padding:0 18px;border-radius:14px;background:linear-gradient(135deg,#00e0ff,#38f8a6);color:#031016!important;font-weight:950;text-decoration:none;box-shadow:0 16px 42px #00e0ff2e}.gp-direct-payment-box{display:grid;gap:8px;margin:12px 0;padding:14px;border-radius:16px;border:1px solid rgba(255,255,255,.12);background:#ffffff0d}.gp-direct-payment-box label{color:#ffffff94;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.gp-copy-row{display:grid;grid-template-columns:1fr auto;gap:8px;align-items:center}.gp-copy-row code{display:block;overflow:auto;max-width:100%;padding:10px 12px;border-radius:12px;background:#0000003d;border:1px solid rgba(255,255,255,.1);color:#e8fbff;font-size:12px;white-space:nowrap}.gp-copy-row button{min-height:38px;border:0;border-radius:12px;padding:0 12px;background:#00e0ff24;color:#8bf7ff;font-weight:900;cursor:pointer}.gp-payment-meta{display:grid;gap:4px;margin-top:10px;color:#ffffff94;font-size:12px}.gp-payment-meta strong{color:#ffffffdb}@media(max-width:620px){.gp-copy-row{grid-template-columns:1fr}.gp-copy-row code{white-space:normal;word-break:break-all}}.gp-pricing-trigger{cursor:pointer}.gp-home-pricing-overlay{position:fixed;inset:0;z-index:26000;display:flex;align-items:center;justify-content:center;padding:26px;background:radial-gradient(circle at 20% 20%,rgba(0,140,255,.22),transparent 34%),#000512d1;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px)}.gp-home-pricing-modal{position:relative;width:min(980px,calc(100vw - 28px));max-height:min(92vh,860px);overflow:auto;padding:30px;border:1px solid rgba(0,210,255,.28);border-radius:28px;color:#fff;background:linear-gradient(145deg,#080e22fa,#010814fa),radial-gradient(circle at 80% 0%,rgba(0,255,190,.22),transparent 36%);box-shadow:0 34px 110px #0000009e,0 0 60px #008eff38}.gp-home-pricing-close{position:absolute;top:16px;right:16px;width:40px;height:40px;border:1px solid rgba(255,255,255,.12);border-radius:50%;color:#fff;background:#ffffff14;font-size:26px;line-height:1;cursor:pointer}.gp-home-pricing-header{max-width:720px;margin-bottom:20px}.gp-home-pricing-header span{display:inline-flex;align-items:center;min-height:30px;padding:0 12px;border:1px solid rgba(0,224,255,.34);border-radius:999px;color:#7cfaff;background:#0080ff1f;font-size:11px;font-weight:950;letter-spacing:.12em}.gp-home-pricing-header h2{margin:16px 0 10px;font-size:clamp(32px,5vw,54px);line-height:.95;letter-spacing:-.055em}.gp-home-pricing-header p,.gp-home-pricing-footer p,.gp-home-pricing-specials p{margin:0;color:#ffffffb3;line-height:1.55}.gp-home-pricing-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:22px 0}.gp-home-price-card{position:relative;overflow:hidden;display:grid;gap:8px;padding:22px;border:1px solid rgba(255,255,255,.12);border-radius:22px;background:linear-gradient(180deg,#ffffff14,#ffffff09)}.gp-home-price-card--featured{border-color:#00f4d270;box-shadow:0 0 36px #00d4ff29}.gp-home-price-card small{color:#ffffff9e;font-size:12px;font-weight:950;text-transform:uppercase;letter-spacing:.11em}.gp-home-price-card strong{color:#fff;font-size:clamp(44px,7vw,70px);line-height:.95;letter-spacing:-.065em}.gp-home-price-card em{color:#7cfaff;font-style:normal;font-weight:850}.gp-home-price-card button,.gp-home-pricing-buy-main{min-height:48px;border:0;border-radius:14px;color:#031119;background:linear-gradient(135deg,#00e0ff,#38f8a6);font-weight:950;cursor:pointer;box-shadow:0 16px 34px #00e0ff2e}.gp-home-pricing-tools{margin-top:8px;padding:20px;border:1px solid rgba(255,255,255,.1);border-radius:22px;background:#ffffff0b}.gp-home-pricing-tools h3,.gp-home-pricing-specials b{margin:0 0 12px;color:#fff;font-size:18px}.gp-home-pricing-tool-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.gp-home-pricing-tool-grid span{min-height:38px;display:inline-flex;align-items:center;padding:0 12px;border:1px solid rgba(0,224,255,.16);border-radius:12px;background:#0080ff14;color:#ffffffdb;font-size:12px;font-weight:850}.gp-home-pricing-specials{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:14px}.gp-home-pricing-specials article{padding:18px;border:1px solid rgba(255,255,255,.1);border-radius:20px;background:linear-gradient(180deg,#ffffff0f,#ffffff06)}.gp-home-pricing-specials b{display:block}.gp-home-pricing-footer{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:18px;padding-top:18px;border-top:1px solid rgba(255,255,255,.1)}.gp-home-pricing-buy-main{min-width:170px;padding:0 26px}@media(max-width:820px){.gp-home-pricing-modal{padding:24px 18px}.gp-home-pricing-grid,.gp-home-pricing-specials{grid-template-columns:1fr}.gp-home-pricing-tool-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.gp-home-pricing-footer{display:grid}.gp-home-pricing-buy-main{width:100%}}@media(max-width:520px){.gp-home-pricing-overlay{padding:12px}.gp-home-pricing-tool-grid{grid-template-columns:1fr}}@media(max-width:1180px){body.terminal-active,body.gp-terminal-active{overflow:auto!important;background:#020713!important}body.terminal-active #app,body.gp-terminal-active #app{display:flex!important;flex-direction:column!important;height:var(--gp-vh, 100dvh)!important;min-height:var(--gp-vh, 100dvh)!important;width:100vw!important;max-width:100vw!important;gap:8px!important;padding:0 8px calc(var(--gp-safe-bottom, 0px) + 12px)!important;overflow-x:hidden!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;overscroll-behavior-y:contain!important}body.terminal-active .header,body.gp-terminal-active .header{order:1!important;position:sticky!important;top:0!important;z-index:9600!important;display:flex!important;flex-wrap:wrap!important;align-items:center!important;gap:7px!important;width:calc(100vw - 16px)!important;min-height:0!important;height:auto!important;padding:calc(var(--gp-safe-top, 0px) + 8px) 8px 8px!important;margin:0!important;overflow:visible!important;border-radius:0 0 16px 16px!important;background:#020812f7!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;box-shadow:0 12px 30px #00000061!important}body.terminal-active .header__logo,body.gp-terminal-active .header__logo{display:inline-flex!important;flex:1 1 165px!important;min-width:148px!important;max-width:none!important;height:36px!important;gap:8px!important}body.terminal-active .header__logo-img,body.gp-terminal-active .header__logo-img{width:32px!important;height:32px!important}body.terminal-active .header__logo span,body.gp-terminal-active .header__logo span{display:inline-block!important;max-width:210px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;font-size:15px!important;line-height:1!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector,body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex:1 1 132px!important;width:auto!important;min-width:128px!important;max-width:none!important}body.terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger,body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{width:100%!important;min-width:0!important;height:36px!important;min-height:36px!important;padding:0 11px!important;border-radius:12px!important;justify-content:space-between!important}body.terminal-active #exchange-selector .selector__label,body.gp-terminal-active #exchange-selector .selector__label,body.terminal-active #symbol-selector .selector__label,body.gp-terminal-active #symbol-selector .selector__label{display:inline-block!important;max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;font-size:12px!important;font-weight:900!important}body.terminal-active .btn--chart-settings,body.gp-terminal-active .btn--chart-settings,body.terminal-active .header__timeframe,body.gp-terminal-active .header__timeframe,body.terminal-active .gp-header-spacer,body.gp-terminal-active .gp-header-spacer{display:none!important}body.terminal-active #prime-orderflow-btn.btn--prime-orderflow,body.gp-terminal-active #prime-orderflow-btn.btn--prime-orderflow,body.terminal-active #prime-indicator-btn.btn--prime-indicator,body.gp-terminal-active #prime-indicator-btn.btn--prime-indicator{flex:1 1 178px!important;min-width:158px!important;max-width:none!important;height:36px!important;min-height:36px!important;padding:0 12px!important;justify-content:center!important;border-radius:12px!important;font-size:12px!important;line-height:1!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar{display:inline-flex!important;flex:1 1 152px!important;min-width:138px!important;max-width:none!important;height:34px!important;margin-left:0!important;justify-content:center!important;border-radius:12px!important;background:#040e1fd6!important;border:1px solid rgba(78,133,205,.18)!important;font-size:12px!important}body.terminal-active .header__controls,body.gp-terminal-active .header__controls{display:inline-flex!important;flex:0 0 auto!important;gap:6px!important;margin-left:0!important;overflow:visible!important}body.terminal-active .header__controls .btn,body.gp-terminal-active .header__controls .btn{display:inline-flex!important;width:38px!important;min-width:38px!important;height:36px!important;min-height:36px!important;padding:0!important;border-radius:12px!important;font-size:0!important}body.terminal-active #tools-panel-btn,body.gp-terminal-active #tools-panel-btn{display:inline-flex!important}body.terminal-active .header__controls .btn--toolbox:before,body.gp-terminal-active .header__controls .btn--toolbox:before{content:"☰";font-size:17px;font-weight:950}body.terminal-active #settings-btn:before,body.gp-terminal-active #settings-btn:before{content:"⚙";font-size:16px}body.terminal-active #fullscreen-btn:before,body.gp-terminal-active #fullscreen-btn:before{content:"⛶";font-size:16px}body.terminal-active .selector__dropdown,body.gp-terminal-active .selector__dropdown{position:fixed!important;top:calc(var(--gp-safe-top, 0px) + 62px)!important;left:10px!important;right:10px!important;width:auto!important;min-width:0!important;max-height:min(68dvh,520px)!important;overflow:auto!important;z-index:9900!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{order:2!important;position:relative!important;inset:auto!important;display:grid!important;width:100%!important;max-width:100%!important;height:auto!important;min-height:0!important;padding:8px!important;transform:none!important;border-radius:16px!important;border:1px solid rgba(70,123,196,.16)!important;background:#030a16c7!important;overflow:hidden!important}body.terminal-active .gp-terminal-side nav,body.gp-terminal-active .gp-terminal-side nav{display:flex!important;align-items:center!important;gap:7px!important;overflow-x:auto!important;overflow-y:hidden!important;padding-bottom:2px!important;scrollbar-width:none!important}body.terminal-active .gp-terminal-side nav::-webkit-scrollbar,body.gp-terminal-active .gp-terminal-side nav::-webkit-scrollbar{display:none!important}body.terminal-active .gp-terminal-side button,body.gp-terminal-active .gp-terminal-side button,body.terminal-active .gp-terminal-side a,body.gp-terminal-active .gp-terminal-side a{flex:0 0 auto!important;width:auto!important;min-width:max-content!important;min-height:40px!important;display:inline-grid!important;grid-template-columns:18px auto!important;align-items:center!important;gap:8px!important;padding:0 12px!important;border-radius:12px!important;font-size:12px!important;white-space:nowrap!important}body.terminal-active .gp-plan-card,body.gp-terminal-active .gp-plan-card{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:8px 12px!important;width:100%!important;margin-top:8px!important;padding:10px!important;border-radius:14px!important}body.terminal-active .gp-plan-card>span,body.gp-terminal-active .gp-plan-card>span{grid-column:1 / -1!important}body.terminal-active .gp-plan-card>button,body.gp-terminal-active .gp-plan-card>button{grid-column:2!important;grid-row:1 / 3!important;align-self:center!important;min-width:116px!important}body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview{order:3!important;display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;width:100%!important;min-height:0!important;border-radius:16px!important;border:1px solid rgba(70,123,196,.15)!important;background:#040c19b8!important;overflow:hidden!important}body.terminal-active .gp-overview-card,body.gp-terminal-active .gp-overview-card,body.terminal-active .gp-overview-sentiment,body.gp-terminal-active .gp-overview-sentiment{display:grid!important;gap:4px!important;padding:10px!important;min-width:0!important;border-right:1px solid rgba(82,129,195,.1)!important;border-bottom:1px solid rgba(82,129,195,.08)!important}body.terminal-active .gp-overview-card span,body.gp-terminal-active .gp-overview-card span,body.terminal-active .gp-overview-sentiment span,body.gp-terminal-active .gp-overview-sentiment span{font-size:9px!important}body.terminal-active .gp-overview-card strong,body.gp-terminal-active .gp-overview-card strong,body.terminal-active .gp-overview-sentiment strong,body.gp-terminal-active .gp-overview-sentiment strong{font-size:13px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body.terminal-active .main,body.gp-terminal-active .main{order:4!important;display:block!important;width:100%!important;height:auto!important;min-height:0!important;flex:0 0 auto!important;overflow:visible!important;background:transparent!important}body.terminal-active .chart-container,body.gp-terminal-active .chart-container{display:flex!important;flex-direction:column!important;width:100%!important;min-height:650px!important;height:auto!important;margin:0!important;overflow:hidden!important;border-radius:16px!important;border:1px solid rgba(70,123,196,.16)!important}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{display:flex!important;align-items:center!important;min-height:42px!important;padding:0 10px!important}body.terminal-active .gp-chart-card-head>div,body.gp-terminal-active .gp-chart-card-head>div{min-width:0!important}body.terminal-active .gp-chart-card-head span,body.gp-terminal-active .gp-chart-card-head span{font-size:11px!important}body.terminal-active .gp-chart-card-head strong,body.gp-terminal-active .gp-chart-card-head strong{font-size:9px!important}body.terminal-active .timeframes,body.gp-terminal-active .timeframes{display:flex!important;height:auto!important;min-height:44px!important;padding:5px 8px!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important}body.terminal-active .timeframes::-webkit-scrollbar,body.gp-terminal-active .timeframes::-webkit-scrollbar{display:none!important}body.terminal-active .timeframes__scroll,body.gp-terminal-active .timeframes__scroll{display:flex!important;align-items:center!important;gap:5px!important;width:max-content!important;min-width:100%!important;overflow:visible!important;flex-wrap:nowrap!important}body.terminal-active .timeframes__tools,body.gp-terminal-active .timeframes__tools{display:flex!important;align-items:center!important;gap:5px!important;flex:0 0 auto!important;margin-left:8px!important;overflow:visible!important}body.terminal-active .timeframe-btn,body.gp-terminal-active .timeframe-btn,body.terminal-active .tv-top-tool,body.gp-terminal-active .tv-top-tool{flex:0 0 auto!important;min-width:max-content!important;height:30px!important;padding:0 10px!important;border-radius:9px!important;font-size:11px!important}body.terminal-active .timeframe-select,body.gp-terminal-active .timeframe-select{display:none!important}body.terminal-active .chart-area,body.gp-terminal-active .chart-area{flex:1 1 auto!important;min-height:480px!important;height:58dvh!important;max-height:none!important;overflow:hidden!important}body.terminal-active .analytics,body.gp-terminal-active .analytics{display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;min-height:70px!important;height:70px!important;max-height:70px!important;flex:0 0 70px!important;overflow:hidden!important}body.terminal-active .analytics .metric,body.gp-terminal-active .analytics .metric{display:flex!important;padding:7px 5px!important}body.terminal-active .metric__label,body.gp-terminal-active .metric__label{font-size:8px!important}body.terminal-active .metric__value,body.gp-terminal-active .metric__value{font-size:12px!important}body.terminal-active .cvd-container,body.gp-terminal-active .cvd-container{min-height:54px!important;height:54px!important;max-height:54px!important;flex:0 0 54px!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{order:5!important;position:relative!important;inset:auto!important;display:flex!important;flex-direction:column!important;width:100%!important;max-width:100%!important;height:auto!important;min-height:520px!important;max-height:none!important;transform:none!important;border-radius:16px!important;border:1px solid rgba(70,123,196,.16)!important;background:#040c19c2!important;overflow:hidden!important}body.terminal-active .orderbook__content,body.gp-terminal-active .orderbook__content{flex:1 1 auto!important;min-height:360px!important;overflow:auto!important;-webkit-overflow-scrolling:touch!important}body.terminal-active .tools-panel,body.gp-terminal-active .tools-panel{order:6!important;position:relative!important;inset:auto!important;display:flex!important;flex-direction:column!important;width:100%!important;max-width:100%!important;height:auto!important;max-height:none!important;min-height:0!important;opacity:1!important;visibility:visible!important;transform:none!important;pointer-events:auto!important;border-radius:16px!important;border:1px solid rgba(70,123,196,.16)!important;background:#040c19c7!important;overflow:hidden!important;z-index:auto!important}body.terminal-active .tools-panel__close,body.gp-terminal-active .tools-panel__close{display:none!important}body.terminal-active .tools-panel__body,body.gp-terminal-active .tools-panel__body,body.terminal-active .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel__body.gp-orderflow-body{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;max-height:none!important;overflow:visible!important;padding:12px!important}body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions,body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{grid-column:1 / -1!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom{order:7!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;width:100%!important;min-height:0!important}body.terminal-active .gp-bottom-card,body.gp-terminal-active .gp-bottom-card{min-height:220px!important;border-radius:16px!important;overflow:hidden!important}body.terminal-active .gp-dashboard-tab-panels,body.gp-terminal-active .gp-dashboard-tab-panels{order:8!important;width:100%!important}body.terminal-active.gp-dashboard-show-panel .main,body.gp-terminal-active.gp-dashboard-show-panel .main,body.terminal-active.gp-dashboard-show-panel .tools-panel,body.gp-terminal-active.gp-dashboard-show-panel .tools-panel,body.terminal-active.gp-dashboard-show-panel .sidebar,body.gp-terminal-active.gp-dashboard-show-panel .sidebar,body.terminal-active.gp-dashboard-show-panel .gp-terminal-bottom,body.gp-terminal-active.gp-dashboard-show-panel .gp-terminal-bottom{display:none!important}body.terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels,body.gp-terminal-active.gp-dashboard-show-panel .gp-dashboard-tab-panels{display:block!important;min-height:60dvh!important;padding:10px!important;border-radius:16px!important;border:1px solid rgba(70,123,196,.16)!important;background:#040c19bd!important;overflow:auto!important}body.terminal-active .bottom-nav,body.gp-terminal-active .bottom-nav{display:none!important}}@media(max-width:640px){body.terminal-active #app,body.gp-terminal-active #app{gap:7px!important;padding-inline:6px!important}body.terminal-active .header,body.gp-terminal-active .header{width:calc(100vw - 12px)!important;padding:calc(var(--gp-safe-top, 0px) + 6px) 6px 7px!important;gap:6px!important}body.terminal-active .header__logo,body.gp-terminal-active .header__logo{flex:1 1 100%!important;min-width:0!important;justify-content:space-between!important}body.terminal-active .header__logo span,body.gp-terminal-active .header__logo span{max-width:calc(100vw - 70px)!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector,body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex:1 1 calc(50% - 6px)!important;min-width:130px!important}body.terminal-active #prime-orderflow-btn.btn--prime-orderflow,body.gp-terminal-active #prime-orderflow-btn.btn--prime-orderflow,body.terminal-active #prime-indicator-btn.btn--prime-indicator,body.gp-terminal-active #prime-indicator-btn.btn--prime-indicator{flex:1 1 calc(50% - 6px)!important;min-width:150px!important;font-size:11px!important}body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar{flex:1 1 calc(100% - 128px)!important;min-width:150px!important;height:32px!important;font-size:11px!important}body.terminal-active .header__controls .btn,body.gp-terminal-active .header__controls .btn{width:34px!important;min-width:34px!important;height:32px!important}body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview{grid-template-columns:repeat(2,minmax(0,1fr))!important}body.terminal-active .chart-container,body.gp-terminal-active .chart-container{min-height:570px!important}body.terminal-active .chart-area,body.gp-terminal-active .chart-area{min-height:390px!important;height:54dvh!important}body.terminal-active .analytics,body.gp-terminal-active .analytics{grid-template-columns:repeat(5,minmax(0,1fr))!important;min-height:64px!important;height:64px!important;max-height:64px!important;flex-basis:64px!important}body.terminal-active .analytics .metric:nth-child(n),body.gp-terminal-active .analytics .metric:nth-child(n){display:flex!important}body.terminal-active .metric__label,body.gp-terminal-active .metric__label{font-size:7px!important;letter-spacing:0!important}body.terminal-active .metric__value,body.gp-terminal-active .metric__value{font-size:10px!important}body.terminal-active .tools-panel__body,body.gp-terminal-active .tools-panel__body,body.terminal-active .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel__body.gp-orderflow-body,body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles,body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom,body.terminal-active .gp-plan-card,body.gp-terminal-active .gp-plan-card{grid-template-columns:1fr!important}body.terminal-active .gp-plan-card>button,body.gp-terminal-active .gp-plan-card>button{grid-column:1!important;grid-row:auto!important;width:100%!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{min-height:470px!important}body.terminal-active .orderbook__content,body.gp-terminal-active .orderbook__content{min-height:320px!important}}@media(max-width:920px)and (orientation:landscape){body.terminal-active .chart-container,body.gp-terminal-active .chart-container{min-height:500px!important}body.terminal-active .chart-area,body.gp-terminal-active .chart-area{min-height:330px!important;height:62dvh!important}body.terminal-active .gp-terminal-side nav,body.gp-terminal-active .gp-terminal-side nav{padding-bottom:0!important}}body.terminal-active .gp-terminal-side [data-dashboard-tab=news]:after,body.gp-terminal-active .gp-terminal-side [data-dashboard-tab=news]:after{content:""}@media(max-width:1180px){html,body.terminal-active,body.gp-terminal-active{height:auto!important;min-height:100%!important;overflow:auto!important;overscroll-behavior-y:contain}body.terminal-active #app,body.gp-terminal-active #app{display:flex!important;flex-direction:column!important;width:100vw!important;min-height:100dvh!important;height:auto!important;overflow-x:hidden!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;padding:0 8px calc(82px + env(safe-area-inset-bottom))!important;gap:8px!important;background:radial-gradient(circle at 8% 0%,rgba(0,132,255,.14),transparent 30%),radial-gradient(circle at 92% 0%,rgba(0,245,170,.08),transparent 32%),#020812!important}body.terminal-active .header,body.gp-terminal-active .header{order:1!important;position:sticky!important;top:0!important;z-index:9000!important;width:calc(100vw - 16px)!important;height:auto!important;min-height:58px!important;max-height:none!important;display:flex!important;align-items:center!important;gap:8px!important;padding:calc(7px + env(safe-area-inset-top)) 8px 7px!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important;border:1px solid rgba(70,123,196,.16)!important;border-top:0!important;border-radius:0 0 16px 16px!important;background:#020812f5!important;box-shadow:0 12px 32px #00000057!important}body.terminal-active .header::-webkit-scrollbar,body.gp-terminal-active .header::-webkit-scrollbar{display:none!important}body.terminal-active .header__logo,body.gp-terminal-active .header__logo{flex:0 0 auto!important;min-width:auto!important;gap:8px!important}body.terminal-active .header__logo span,body.gp-terminal-active .header__logo span{display:inline!important;max-width:none!important;color:#2d9dff!important;font-size:15px!important;white-space:nowrap!important}body.terminal-active .header__logo-img,body.gp-terminal-active .header__logo-img{width:34px!important;height:34px!important;border-radius:10px!important}body.terminal-active #exchange-selector,body.terminal-active #symbol-selector,body.gp-terminal-active #exchange-selector,body.gp-terminal-active #symbol-selector{flex:0 0 auto!important}body.terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger,body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{height:40px!important;min-height:40px!important;min-width:118px!important;padding:0 12px!important;border-radius:13px!important;justify-content:space-between!important}body.terminal-active #exchange-selector .selector__label,body.gp-terminal-active #exchange-selector .selector__label,body.terminal-active #symbol-selector .selector__label,body.gp-terminal-active #symbol-selector .selector__label{max-width:108px!important;font-size:13px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body.terminal-active #prime-orderflow-btn,body.terminal-active #prime-indicator-btn,body.gp-terminal-active #prime-orderflow-btn,body.gp-terminal-active #prime-indicator-btn{position:static!important;flex:0 0 auto!important;height:40px!important;min-height:40px!important;max-width:none!important;padding:0 13px!important;border-radius:14px!important;font-size:12px!important;white-space:nowrap!important}body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar{display:inline-flex!important;flex:0 0 auto!important;height:34px!important;margin-left:0!important;padding:0 10px!important;border-radius:999px!important;background:#ffffff09!important;border:1px solid rgba(255,255,255,.08)!important}body.terminal-active .header__controls,body.gp-terminal-active .header__controls{display:flex!important;flex:0 0 auto!important;margin-left:0!important;gap:7px!important}body.terminal-active .header__controls>*,body.gp-terminal-active .header__controls>*{display:inline-flex!important}body.terminal-active .header__controls .btn,body.gp-terminal-active .header__controls .btn{height:40px!important;min-width:42px!important;border-radius:14px!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{order:2!important;position:static!important;display:flex!important;width:100%!important;min-height:0!important;height:auto!important;padding:7px!important;border:1px solid rgba(70,123,196,.14)!important;border-radius:16px!important;background:#040c19bd!important;overflow:hidden!important;box-shadow:inset 0 1px #ffffff0a!important}body.terminal-active .gp-terminal-side nav,body.gp-terminal-active .gp-terminal-side nav{display:flex!important;width:100%!important;gap:7px!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important}body.terminal-active .gp-terminal-side nav::-webkit-scrollbar,body.gp-terminal-active .gp-terminal-side nav::-webkit-scrollbar{display:none!important}body.terminal-active .gp-terminal-side button,body.gp-terminal-active .gp-terminal-side button{flex:0 0 auto!important;display:inline-flex!important;align-items:center!important;gap:7px!important;min-height:39px!important;width:auto!important;padding:0 12px!important;border-radius:13px!important;border:1px solid rgba(84,137,209,.14)!important;background:#ffffff09!important;color:#e2eefcd1!important;font-size:12px!important;font-weight:900!important;white-space:nowrap!important}body.terminal-active .gp-terminal-side button.active,body.gp-terminal-active .gp-terminal-side button.active{color:#fff!important;background:linear-gradient(135deg,#1169ffeb,#00d2ff7a)!important;border-color:#379eff52!important}body.terminal-active .gp-terminal-side .gp-plan-card,body.gp-terminal-active .gp-terminal-side .gp-plan-card{display:none!important}body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview{order:3!important;display:grid!important;grid-auto-flow:column!important;grid-auto-columns:minmax(132px,1fr)!important;grid-template-columns:none!important;min-height:64px!important;width:100%!important;overflow-x:auto!important;overflow-y:hidden!important;border-radius:16px!important;border:1px solid rgba(70,123,196,.14)!important;background:#040c19bd!important;scrollbar-width:none!important}body.terminal-active .gp-market-overview::-webkit-scrollbar,body.gp-terminal-active .gp-market-overview::-webkit-scrollbar{display:none!important}body.terminal-active .gp-overview-card,body.gp-terminal-active .gp-overview-card,body.terminal-active .gp-overview-sentiment,body.gp-terminal-active .gp-overview-sentiment{min-width:132px!important;min-height:64px!important;padding:9px 12px!important;border-right:1px solid rgba(70,123,196,.12)!important;background:transparent!important}body.terminal-active .gp-overview-card span,body.gp-terminal-active .gp-overview-card span,body.terminal-active .gp-overview-sentiment span,body.gp-terminal-active .gp-overview-sentiment span{display:block!important;color:#d2e0f494!important;font-size:9px!important;font-weight:900!important;letter-spacing:.06em!important;line-height:1.05!important;white-space:nowrap!important}body.terminal-active .gp-overview-card strong,body.gp-terminal-active .gp-overview-card strong,body.terminal-active .gp-overview-sentiment strong,body.gp-terminal-active .gp-overview-sentiment strong{color:#f5f9ff!important;font-size:14px!important;line-height:1.1!important;white-space:nowrap!important}body.terminal-active .gp-gauge,body.gp-terminal-active .gp-gauge{display:none!important}body.terminal-active .timeframes,body.gp-terminal-active .timeframes{display:flex!important;height:46px!important;min-height:46px!important;padding:0!important;overflow:hidden!important;border-bottom:1px solid rgba(70,123,196,.12)!important;background:#02081273!important}body.terminal-active .timeframes__scroll,body.gp-terminal-active .timeframes__scroll{display:flex!important;gap:5px!important;padding:7px 9px!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important}body.terminal-active .timeframes__scroll::-webkit-scrollbar,body.gp-terminal-active .timeframes__scroll::-webkit-scrollbar{display:none!important}body.terminal-active .timeframe-btn,body.gp-terminal-active .timeframe-btn,body.terminal-active .tv-top-tool,body.gp-terminal-active .tv-top-tool{display:inline-flex!important;flex:0 0 auto!important;align-items:center!important;justify-content:center!important;min-width:42px!important;height:32px!important;padding:0 11px!important;border-radius:11px!important;font-size:12px!important;font-weight:900!important;white-space:nowrap!important}body.terminal-active .timeframes__tools,body.gp-terminal-active .timeframes__tools{display:flex!important;flex:0 0 auto!important;gap:5px!important;margin-left:8px!important;overflow:visible!important}body.terminal-active .timeframe-select,body.gp-terminal-active .timeframe-select,body.terminal-active .header__timeframe,body.gp-terminal-active .header__timeframe{display:none!important}body.terminal-active .main,body.gp-terminal-active .main{order:4!important;display:block!important;flex:0 0 auto!important;width:100%!important;height:auto!important;min-height:0!important;overflow:visible!important;background:transparent!important}body.terminal-active .chart-container,body.gp-terminal-active .chart-container{display:flex!important;flex-direction:column!important;width:100%!important;height:auto!important;min-height:0!important;margin-left:0!important;padding-bottom:0!important;overflow:hidden!important;border-radius:18px!important;border:1px solid rgba(70,123,196,.16)!important;background:#040c19cc!important;box-shadow:inset 0 1px #ffffff0a!important}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{display:flex!important;min-height:42px!important;padding:0 12px!important;border-bottom:1px solid rgba(70,123,196,.12)!important}body.terminal-active .chart-area,body.gp-terminal-active .chart-area{flex:0 0 auto!important;height:clamp(360px,56dvh,560px)!important;min-height:360px!important;width:100%!important;overflow:hidden!important}body.terminal-active .cvd-container,body.gp-terminal-active .cvd-container{display:block!important;height:44px!important;min-height:44px!important;flex:0 0 44px!important}body.terminal-active .analytics,body.gp-terminal-active .analytics{display:grid!important;grid-template-columns:repeat(5,minmax(94px,1fr))!important;min-height:62px!important;height:62px!important;flex:0 0 62px!important;padding:0!important;gap:0!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important}body.terminal-active .analytics::-webkit-scrollbar,body.gp-terminal-active .analytics::-webkit-scrollbar{display:none!important}body.terminal-active .metric,body.gp-terminal-active .metric{min-width:94px!important;justify-content:center!important;gap:4px!important;padding:7px 9px!important;border-radius:0!important;border-right:1px solid rgba(70,123,196,.12)!important;background:transparent!important}body.terminal-active .metric__label,body.gp-terminal-active .metric__label{font-size:8px!important;letter-spacing:.06em!important}body.terminal-active .metric__value,body.gp-terminal-active .metric__value{font-size:12px!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{order:5!important;position:static!important;inset:auto!important;transform:none!important;display:flex!important;width:100%!important;height:430px!important;min-height:430px!important;max-height:none!important;border-radius:18px!important;border:1px solid rgba(70,123,196,.16)!important;background:#040c19cc!important;overflow:hidden!important}body.terminal-active .sidebar__close,body.gp-terminal-active .sidebar__close{display:none!important}body.terminal-active .orderbook__header,body.gp-terminal-active .orderbook__header{min-height:42px!important;padding:0 12px!important;border-bottom:1px solid rgba(70,123,196,.12)!important}body.terminal-active .orderbook__depth,body.gp-terminal-active .orderbook__depth{height:36px!important;min-height:36px!important;padding:0 12px!important}body.terminal-active .orderbook__content,body.gp-terminal-active .orderbook__content{flex:1 1 auto!important;min-height:0!important;height:auto!important;overflow:auto!important;padding-bottom:0!important}body.terminal-active .dom-ladder,body.gp-terminal-active .dom-ladder{min-height:0!important;height:100%!important;font-size:10px!important}body.terminal-active .dom-ladder__row,body.gp-terminal-active .dom-ladder__row{min-height:18px!important;height:18px!important}body.terminal-active #levels-summary,body.gp-terminal-active #levels-summary{max-height:132px!important;overflow:auto!important;padding-bottom:0!important}body.terminal-active .tools-panel,body.gp-terminal-active .tools-panel{order:6!important;position:static!important;inset:auto!important;display:flex!important;flex-direction:column!important;width:100%!important;height:auto!important;min-height:0!important;max-height:none!important;opacity:1!important;visibility:visible!important;transform:none!important;pointer-events:auto!important;border-radius:18px!important;border:1px solid rgba(70,123,196,.16)!important;background:#040c19cc!important;box-shadow:inset 0 1px #ffffff0a!important;overflow:hidden!important;z-index:1!important}body.terminal-active .tools-panel__header,body.gp-terminal-active .tools-panel__header{min-height:42px!important;padding:0 12px!important;border-bottom:1px solid rgba(70,123,196,.12)!important}body.terminal-active .tools-panel__close,body.gp-terminal-active .tools-panel__close{display:none!important}body.terminal-active .tools-panel__body,body.gp-terminal-active .tools-panel__body,body.terminal-active .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel__body.gp-orderflow-body{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;max-height:none!important;overflow:visible!important;padding:12px!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{grid-column:1 / -1!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row{min-width:0!important;min-height:36px!important;padding:7px 8px!important;border-radius:11px!important;background:#ffffff09!important}body.terminal-active .gp-layer-row span,body.gp-terminal-active .gp-layer-row span{min-width:0!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom{order:7!important;display:grid!important;grid-template-columns:1fr!important;gap:8px!important;width:100%!important;min-height:0!important}body.terminal-active .gp-bottom-card,body.gp-terminal-active .gp-bottom-card{display:flex!important;flex-direction:column!important;min-height:184px!important;padding:12px!important;border-radius:18px!important;border:1px solid rgba(70,123,196,.16)!important;background:#040c19cc!important}body.terminal-active .bottom-nav,body.gp-terminal-active .bottom-nav{position:fixed!important;left:8px!important;right:8px!important;bottom:calc(8px + env(safe-area-inset-bottom))!important;height:62px!important;z-index:8900!important;display:flex!important;border:1px solid rgba(70,123,196,.18)!important;border-radius:22px!important;background:#030a16eb!important;-webkit-backdrop-filter:blur(16px)!important;backdrop-filter:blur(16px)!important;box-shadow:0 18px 42px #0000006b!important;overflow:hidden!important}body.terminal-active .bottom-nav__btn,body.gp-terminal-active .bottom-nav__btn{flex:1 1 20%!important;min-width:0!important;padding:6px 2px!important;border-radius:16px!important}}@media(max-width:520px){body.terminal-active #app,body.gp-terminal-active #app{padding-inline:6px!important;gap:7px!important}body.terminal-active .header,body.gp-terminal-active .header{width:calc(100vw - 12px)!important;min-height:56px!important;padding-left:7px!important;padding-right:7px!important}body.terminal-active .header__logo span,body.gp-terminal-active .header__logo span{display:none!important}body.terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger,body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{min-width:104px!important}body.terminal-active #exchange-selector .selector__label,body.gp-terminal-active #exchange-selector .selector__label,body.terminal-active #symbol-selector .selector__label,body.gp-terminal-active #symbol-selector .selector__label{max-width:82px!important;font-size:12px!important}body.terminal-active #prime-orderflow-btn,body.terminal-active #prime-indicator-btn,body.gp-terminal-active #prime-orderflow-btn,body.gp-terminal-active #prime-indicator-btn{height:38px!important;min-height:38px!important;padding:0 10px!important;font-size:11px!important}body.terminal-active .chart-area,body.gp-terminal-active .chart-area{height:clamp(340px,54dvh,500px)!important;min-height:340px!important}body.terminal-active .tools-panel__body,body.gp-terminal-active .tools-panel__body,body.terminal-active .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel__body.gp-orderflow-body,body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{grid-template-columns:1fr!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{height:420px!important;min-height:420px!important}}@media(max-width:920px)and (orientation:landscape){body.terminal-active #app,body.gp-terminal-active #app{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(260px,34vw)!important;grid-template-rows:auto auto auto minmax(300px,calc(100dvh - 178px)) auto auto!important;gap:7px!important;padding:0 7px 10px!important;overflow-y:auto!important}body.terminal-active .header,body.gp-terminal-active .header{grid-column:1 / 3!important;grid-row:1!important;width:calc(100vw - 14px)!important;min-height:48px!important;padding-top:calc(5px + env(safe-area-inset-top))!important;padding-bottom:5px!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{grid-column:1 / 3!important;grid-row:2!important;order:initial!important;padding:5px!important;border-radius:13px!important}body.terminal-active .gp-terminal-side button,body.gp-terminal-active .gp-terminal-side button{min-height:32px!important;padding:0 10px!important;font-size:11px!important;border-radius:10px!important}body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview{grid-column:1 / 3!important;grid-row:3!important;order:initial!important;min-height:52px!important}body.terminal-active .gp-overview-card,body.gp-terminal-active .gp-overview-card,body.terminal-active .gp-overview-sentiment,body.gp-terminal-active .gp-overview-sentiment{min-height:52px!important;padding-block:6px!important}body.terminal-active .main,body.gp-terminal-active .main{grid-column:1!important;grid-row:4!important;order:initial!important;min-height:300px!important}body.terminal-active .chart-area,body.gp-terminal-active .chart-area{height:100%!important;min-height:218px!important}body.terminal-active .cvd-container,body.gp-terminal-active .cvd-container{height:36px!important;min-height:36px!important;flex-basis:36px!important}body.terminal-active .analytics,body.gp-terminal-active .analytics{height:48px!important;min-height:48px!important;flex-basis:48px!important}body.terminal-active .timeframes,body.gp-terminal-active .timeframes{height:38px!important;min-height:38px!important}body.terminal-active .timeframe-btn,body.gp-terminal-active .timeframe-btn,body.terminal-active .tv-top-tool,body.gp-terminal-active .tv-top-tool{height:26px!important;min-width:36px!important;font-size:10px!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{grid-column:2!important;grid-row:4!important;order:initial!important;height:auto!important;min-height:300px!important}body.terminal-active .tools-panel,body.gp-terminal-active .tools-panel{grid-column:1 / 3!important;grid-row:5!important;order:initial!important}body.terminal-active .tools-panel__body,body.gp-terminal-active .tools-panel__body,body.terminal-active .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel__body.gp-orderflow-body{grid-template-columns:repeat(4,minmax(110px,1fr))!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{grid-template-columns:repeat(4,minmax(0,1fr))!important}body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom{grid-column:1 / 3!important;grid-row:6!important;order:initial!important;grid-template-columns:repeat(2,minmax(0,1fr))!important}body.terminal-active .bottom-nav,body.gp-terminal-active .bottom-nav{display:none!important}}@media(hover:none)and (pointer:coarse){html,body{overflow-x:hidden!important}body.terminal-active #app,body.gp-terminal-active #app{width:100vw!important;max-width:100vw!important;min-width:0!important}body.terminal-active .home-page,body.gp-terminal-active .home-page{min-width:0!important}}body.gp-device-phone.terminal-active,body.gp-device-phone.gp-terminal-active{width:100vw!important;height:var(--gp-vh, 100dvh)!important;max-width:100vw!important;overflow:hidden!important;touch-action:manipulation}body.gp-device-phone.terminal-active #app,body.gp-device-phone.gp-terminal-active #app{--gp-mobile-header: calc(56px + var(--gp-safe-top, 0px));--gp-mobile-tf: 42px;--gp-mobile-bottom: calc(62px + var(--gp-safe-bottom, 0px));display:grid!important;grid-template-columns:minmax(0,1fr)!important;grid-template-rows:var(--gp-mobile-header) var(--gp-mobile-tf) minmax(0,1fr)!important;gap:0!important;width:100vw!important;max-width:100vw!important;min-width:0!important;height:var(--gp-vh, 100dvh)!important;max-height:var(--gp-vh, 100dvh)!important;padding:0!important;overflow:hidden!important;background:#070912!important}body.gp-device-phone.terminal-active .header,body.gp-device-phone.gp-terminal-active .header{grid-column:1!important;grid-row:1!important;display:grid!important;grid-template-columns:34px minmax(92px,1fr) minmax(98px,1fr) auto!important;align-items:center!important;gap:7px!important;width:100%!important;height:var(--gp-mobile-header)!important;min-height:var(--gp-mobile-header)!important;padding:var(--gp-safe-top, 0px) 8px 7px 8px!important;overflow:hidden!important;border-bottom:1px solid rgba(64,126,210,.22)!important;background:#040a16fa!important;z-index:9400!important}body.gp-device-phone.terminal-active .header__logo,body.gp-device-phone.gp-terminal-active .header__logo{grid-column:1!important;min-width:0!important;width:34px!important;flex:0 0 34px!important;display:flex!important;justify-content:center!important}body.gp-device-phone.terminal-active .header__logo-img,body.gp-device-phone.gp-terminal-active .header__logo-img{width:32px!important;height:32px!important;border-radius:9px!important}body.gp-device-phone.terminal-active .header__logo span,body.gp-device-phone.gp-terminal-active .header__logo span{display:none!important}body.gp-device-phone.terminal-active #exchange-selector,body.gp-device-phone.gp-terminal-active #exchange-selector,body.gp-device-phone.terminal-active #symbol-selector,body.gp-device-phone.gp-terminal-active #symbol-selector{min-width:0!important;width:auto!important;max-width:none!important;flex:none!important}body.gp-device-phone.terminal-active #exchange-selector,body.gp-device-phone.gp-terminal-active #exchange-selector{grid-column:2!important}body.gp-device-phone.terminal-active #symbol-selector,body.gp-device-phone.gp-terminal-active #symbol-selector{grid-column:3!important}body.gp-device-phone.terminal-active #exchange-selector .selector__trigger,body.gp-device-phone.gp-terminal-active #exchange-selector .selector__trigger,body.gp-device-phone.terminal-active #symbol-selector .selector__trigger,body.gp-device-phone.gp-terminal-active #symbol-selector .selector__trigger{width:100%!important;height:38px!important;min-height:38px!important;padding:0 10px!important;border-radius:12px!important;justify-content:space-between!important;font-size:13px!important}body.gp-device-phone.terminal-active #exchange-selector .selector__label,body.gp-device-phone.gp-terminal-active #exchange-selector .selector__label,body.gp-device-phone.terminal-active #symbol-selector .selector__label,body.gp-device-phone.gp-terminal-active #symbol-selector .selector__label{max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;font-size:13px!important;font-weight:850!important}body.gp-device-phone.terminal-active .header__controls,body.gp-device-phone.gp-terminal-active .header__controls{grid-column:4!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:6px!important;margin:0!important;min-width:0!important;overflow:visible!important}body.gp-device-phone.terminal-active .btn--chart-settings,body.gp-device-phone.gp-terminal-active .btn--chart-settings,body.gp-device-phone.terminal-active .header__timeframe,body.gp-device-phone.gp-terminal-active .header__timeframe,body.gp-device-phone.terminal-active #prime-orderflow-btn,body.gp-device-phone.gp-terminal-active #prime-orderflow-btn,body.gp-device-phone.terminal-active #prime-indicator-btn,body.gp-device-phone.gp-terminal-active #prime-indicator-btn,body.gp-device-phone.terminal-active .gp-terminal-livebar,body.gp-device-phone.gp-terminal-active .gp-terminal-livebar,body.gp-device-phone.terminal-active #fullscreen-btn,body.gp-device-phone.gp-terminal-active #fullscreen-btn{display:none!important}body.gp-device-phone.terminal-active #tools-panel-btn,body.gp-device-phone.gp-terminal-active #tools-panel-btn,body.gp-device-phone.terminal-active #settings-btn,body.gp-device-phone.gp-terminal-active #settings-btn{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:38px!important;min-width:38px!important;height:38px!important;min-height:38px!important;padding:0!important;border-radius:12px!important;font-size:0!important}body.gp-device-phone.terminal-active #tools-panel-btn:before,body.gp-device-phone.gp-terminal-active #tools-panel-btn:before{content:"TOOLS";font-size:9px;font-weight:1000;letter-spacing:.02em}body.gp-device-phone.terminal-active #settings-btn:before,body.gp-device-phone.gp-terminal-active #settings-btn:before{content:"⚙";font-size:18px;line-height:1}body.gp-device-phone.terminal-active .timeframes,body.gp-device-phone.gp-terminal-active .timeframes{grid-column:1!important;grid-row:2!important;display:flex!important;align-items:center!important;width:100%!important;height:var(--gp-mobile-tf)!important;min-height:var(--gp-mobile-tf)!important;padding:4px 6px!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:#0d0e18fa!important;overflow:hidden!important;z-index:9300!important}body.gp-device-phone.terminal-active .timeframes__scroll,body.gp-device-phone.gp-terminal-active .timeframes__scroll{display:flex!important;align-items:center!important;gap:5px!important;width:100%!important;max-width:100%!important;min-width:0!important;height:100%!important;padding:0!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important;-webkit-overflow-scrolling:touch}body.gp-device-phone.terminal-active .timeframes__scroll::-webkit-scrollbar,body.gp-device-phone.gp-terminal-active .timeframes__scroll::-webkit-scrollbar{display:none!important}body.gp-device-phone.terminal-active .timeframe-btn,body.gp-device-phone.gp-terminal-active .timeframe-btn{flex:0 0 auto!important;min-width:42px!important;height:32px!important;min-height:32px!important;padding:0 10px!important;border-radius:9px!important;font-size:13px!important;font-weight:850!important}body.gp-device-phone.terminal-active .timeframes__divider,body.gp-device-phone.gp-terminal-active .timeframes__divider,body.gp-device-phone.terminal-active .timeframes__tools,body.gp-device-phone.gp-terminal-active .timeframes__tools,body.gp-device-phone.terminal-active .timeframe-select,body.gp-device-phone.gp-terminal-active .timeframe-select,body.gp-device-phone.terminal-active .gp-terminal-side,body.gp-device-phone.gp-terminal-active .gp-terminal-side,body.gp-device-phone.terminal-active .gp-market-overview,body.gp-device-phone.gp-terminal-active .gp-market-overview,body.gp-device-phone.terminal-active .gp-market-widgets,body.gp-device-phone.gp-terminal-active .gp-market-widgets,body.gp-device-phone.terminal-active .gp-terminal-bottom,body.gp-device-phone.gp-terminal-active .gp-terminal-bottom,body.gp-device-phone.terminal-active .gp-chart-card-head,body.gp-device-phone.gp-terminal-active .gp-chart-card-head{display:none!important}body.gp-device-phone.terminal-active .main,body.gp-device-phone.gp-terminal-active .main{grid-column:1!important;grid-row:3!important;display:block!important;width:100%!important;min-width:0!important;height:calc(var(--gp-vh, 100dvh) - var(--gp-mobile-header) - var(--gp-mobile-tf) - var(--gp-mobile-bottom))!important;min-height:0!important;max-height:none!important;margin:0!important;padding:0!important;overflow:hidden!important}body.gp-device-phone.terminal-active .chart-container,body.gp-device-phone.gp-terminal-active .chart-container{display:flex!important;flex-direction:column!important;width:100%!important;min-width:0!important;height:100%!important;max-height:100%!important;margin:0!important;padding:0!important;border-radius:0!important;overflow:hidden!important}body.gp-device-phone.terminal-active .chart-area,body.gp-device-phone.gp-terminal-active .chart-area{flex:1 1 auto!important;width:100%!important;min-width:0!important;min-height:0!important;height:auto!important;max-height:none!important;overflow:hidden!important}body.gp-device-phone.terminal-active .cvd-container,body.gp-device-phone.gp-terminal-active .cvd-container{display:none!important}body.gp-device-phone.terminal-active .analytics,body.gp-device-phone.gp-terminal-active .analytics{flex:0 0 48px!important;display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:4px!important;min-height:48px!important;max-height:48px!important;padding:4px!important;border-top:1px solid rgba(255,255,255,.08)!important;overflow:hidden!important}body.gp-device-phone.terminal-active .analytics .metric,body.gp-device-phone.gp-terminal-active .analytics .metric{min-width:0!important;padding:4px 5px!important;border-radius:9px!important}body.gp-device-phone.terminal-active .analytics .metric:nth-child(n+4),body.gp-device-phone.gp-terminal-active .analytics .metric:nth-child(n+4){display:none!important}body.gp-device-phone.terminal-active .metric__label,body.gp-device-phone.gp-terminal-active .metric__label{font-size:7px!important;letter-spacing:0!important}body.gp-device-phone.terminal-active .metric__value,body.gp-device-phone.gp-terminal-active .metric__value{font-size:10px!important;line-height:1.1!important}body.gp-device-phone.terminal-active .bottom-nav,body.gp-device-phone.gp-terminal-active .bottom-nav{position:fixed!important;left:0!important;right:0!important;bottom:0!important;display:flex!important;width:100vw!important;max-width:100vw!important;height:var(--gp-mobile-bottom)!important;min-height:var(--gp-mobile-bottom)!important;padding:5px 6px calc(5px + var(--gp-safe-bottom, 0px)) 6px!important;border-top:1px solid rgba(255,255,255,.1)!important;background:#080912fa!important;z-index:9500!important}body.gp-device-phone.terminal-active .bottom-nav__btn,body.gp-device-phone.gp-terminal-active .bottom-nav__btn{flex:1 1 20%!important;min-width:0!important;height:52px!important;min-height:0!important;padding:4px 2px!important;border-radius:14px!important}body.gp-device-phone.terminal-active .bottom-nav__icon,body.gp-device-phone.gp-terminal-active .bottom-nav__icon{font-size:18px!important;line-height:1!important}body.gp-device-phone.terminal-active .bottom-nav__label,body.gp-device-phone.gp-terminal-active .bottom-nav__label{display:block!important;margin-top:2px!important;font-size:9px!important;line-height:1!important}body.gp-device-phone.terminal-active .sidebar,body.gp-device-phone.gp-terminal-active .sidebar{position:fixed!important;inset:calc(var(--gp-mobile-header) + var(--gp-mobile-tf)) 0 var(--gp-mobile-bottom) 0!important;width:100vw!important;max-width:100vw!important;height:auto!important;min-width:0!important;transform:translate(105%)!important;border-radius:0!important;z-index:9450!important;transition:transform .22s ease!important}body.gp-device-phone.terminal-active .sidebar.open,body.gp-device-phone.terminal-active .sidebar.active,body.gp-device-phone.gp-terminal-active .sidebar.open,body.gp-device-phone.gp-terminal-active .sidebar.active{display:flex!important;transform:translate(0)!important}body.gp-device-phone.terminal-active .tools-panel,body.gp-device-phone.gp-terminal-active .tools-panel,body.gp-device-phone.terminal-active .chart-settings-panel,body.gp-device-phone.gp-terminal-active .chart-settings-panel,body.gp-device-phone.terminal-active .watchlist-panel,body.gp-device-phone.gp-terminal-active .watchlist-panel{position:fixed!important;top:calc(var(--gp-mobile-header) + var(--gp-mobile-tf) + 8px)!important;right:8px!important;left:8px!important;width:auto!important;max-width:none!important;max-height:calc(var(--gp-vh, 100dvh) - var(--gp-mobile-header) - var(--gp-mobile-tf) - var(--gp-mobile-bottom) - 16px)!important;border-radius:18px!important;z-index:9600!important}body.gp-device-phone.terminal-active .tools-panel__body,body.gp-device-phone.gp-terminal-active .tools-panel__body,body.gp-device-phone.terminal-active .chart-settings-panel__body,body.gp-device-phone.gp-terminal-active .chart-settings-panel__body,body.gp-device-phone.terminal-active .watchlist-panel__body,body.gp-device-phone.gp-terminal-active .watchlist-panel__body{max-height:calc(var(--gp-vh, 100dvh) - var(--gp-mobile-header) - var(--gp-mobile-tf) - var(--gp-mobile-bottom) - 96px)!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch}body.gp-device-phone.terminal-active .selector__dropdown,body.gp-device-phone.gp-terminal-active .selector__dropdown{position:fixed!important;top:calc(var(--gp-mobile-header) + 6px)!important;left:8px!important;right:8px!important;width:auto!important;min-width:0!important;max-height:min(58dvh,420px)!important;overflow:auto!important;z-index:9700!important}body.gp-device-phone.gp-mobile-portrait.terminal-active .main,body.gp-device-phone.gp-mobile-portrait.gp-terminal-active .main{height:calc(var(--gp-vh, 100dvh) - var(--gp-mobile-header) - var(--gp-mobile-tf) - var(--gp-mobile-bottom))!important}body.gp-device-phone.gp-mobile-portrait.terminal-active .chart-area,body.gp-device-phone.gp-mobile-portrait.gp-terminal-active .chart-area{min-height:0!important}body.gp-device-phone.gp-mobile-landscape.terminal-active #app,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active #app{--gp-mobile-header: calc(44px + var(--gp-safe-top, 0px));--gp-mobile-tf: 34px;--gp-mobile-bottom: calc(46px + var(--gp-safe-bottom, 0px))}body.gp-device-phone.gp-mobile-landscape.terminal-active .header,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .header{grid-template-columns:32px minmax(118px,150px) minmax(112px,142px) minmax(0,1fr) auto!important;gap:7px!important;padding-bottom:5px!important}body.gp-device-phone.gp-mobile-landscape.terminal-active .header__logo-img,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .header__logo-img{width:30px!important;height:30px!important}body.gp-device-phone.gp-mobile-landscape.terminal-active #exchange-selector .selector__trigger,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active #exchange-selector .selector__trigger,body.gp-device-phone.gp-mobile-landscape.terminal-active #symbol-selector .selector__trigger,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active #symbol-selector .selector__trigger{height:34px!important;min-height:34px!important;font-size:12px!important}body.gp-device-phone.gp-mobile-landscape.terminal-active .gp-terminal-livebar,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .gp-terminal-livebar{grid-column:4!important;display:inline-flex!important;min-width:0!important;width:auto!important;max-width:100%!important;height:30px!important;padding:0 8px!important;margin:0!important;overflow:hidden!important;justify-self:end!important}body.gp-device-phone.gp-mobile-landscape.terminal-active .gp-terminal-livebar span,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .gp-terminal-livebar span,body.gp-device-phone.gp-mobile-landscape.terminal-active .gp-terminal-livebar b,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .gp-terminal-livebar b{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body.gp-device-phone.gp-mobile-landscape.terminal-active .header__controls,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .header__controls{grid-column:5!important}body.gp-device-phone.gp-mobile-landscape.terminal-active #tools-panel-btn,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active #tools-panel-btn,body.gp-device-phone.gp-mobile-landscape.terminal-active #settings-btn,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active #settings-btn{width:36px!important;min-width:36px!important;height:34px!important;min-height:34px!important}body.gp-device-phone.gp-mobile-landscape.terminal-active .timeframe-btn,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .timeframe-btn{min-width:38px!important;height:28px!important;min-height:28px!important;padding:0 8px!important;font-size:12px!important}body.gp-device-phone.gp-mobile-landscape.terminal-active .bottom-nav__btn,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .bottom-nav__btn{height:38px!important;border-radius:11px!important}body.gp-device-phone.gp-mobile-landscape.terminal-active .bottom-nav__label,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .bottom-nav__label{display:none!important}body.gp-device-phone.gp-mobile-landscape.terminal-active .analytics,body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .analytics{flex-basis:36px!important;min-height:36px!important;max-height:36px!important;grid-template-columns:repeat(5,minmax(0,1fr))!important}body.gp-device-phone.gp-mobile-landscape.terminal-active .analytics .metric:nth-child(n),body.gp-device-phone.gp-mobile-landscape.gp-terminal-active .analytics .metric:nth-child(n){display:grid!important}@media(max-width:380px){body.gp-device-phone.terminal-active #app,body.gp-device-phone.gp-terminal-active #app{--gp-mobile-header: calc(52px + var(--gp-safe-top, 0px));--gp-mobile-tf: 38px;--gp-mobile-bottom: calc(58px + var(--gp-safe-bottom, 0px))}body.gp-device-phone.terminal-active .header,body.gp-device-phone.gp-terminal-active .header{grid-template-columns:30px minmax(78px,1fr) minmax(92px,1fr) auto!important;gap:5px!important;padding-inline:5px!important}body.gp-device-phone.terminal-active .header__logo-img,body.gp-device-phone.gp-terminal-active .header__logo-img{width:28px!important;height:28px!important}body.gp-device-phone.terminal-active #tools-panel-btn,body.gp-device-phone.gp-terminal-active #tools-panel-btn,body.gp-device-phone.terminal-active #settings-btn,body.gp-device-phone.gp-terminal-active #settings-btn{width:34px!important;min-width:34px!important;height:34px!important;min-height:34px!important}body.gp-device-phone.terminal-active #tools-panel-btn:before,body.gp-device-phone.gp-terminal-active #tools-panel-btn:before{content:"≡";font-size:20px}}@media(max-width:920px){body.terminal-active,body.gp-terminal-active{overflow:hidden!important;width:100vw!important;max-width:100vw!important;height:var(--gp-vh, 100dvh)!important;background:#020713!important}body.terminal-active #app,body.gp-terminal-active #app{--gp-phone-gap: 5px;display:flex!important;flex-direction:column!important;width:100vw!important;max-width:100vw!important;height:var(--gp-vh, 100dvh)!important;min-height:var(--gp-vh, 100dvh)!important;padding:0 5px calc(var(--gp-safe-bottom, 0px) + 5px)!important;gap:var(--gp-phone-gap)!important;overflow:hidden!important;background:#020713!important}body.terminal-active .header,body.gp-terminal-active .header{order:1!important;position:relative!important;top:auto!important;flex:0 0 auto!important;width:100%!important;max-width:100%!important;min-height:0!important;max-height:none!important;display:flex!important;flex-wrap:wrap!important;align-items:center!important;justify-content:flex-start!important;gap:5px!important;padding:calc(var(--gp-safe-top, 0px) + 5px) 5px 5px!important;margin:0!important;overflow:visible!important;border-radius:0 0 12px 12px!important;background:#020812fb!important;box-shadow:0 8px 22px #00000059!important}body.terminal-active .header__logo,body.gp-terminal-active .header__logo{flex:0 0 38px!important;width:38px!important;min-width:38px!important;max-width:38px!important;height:32px!important;justify-content:center!important;padding:0!important}body.terminal-active .header__logo-img,body.gp-terminal-active .header__logo-img{width:30px!important;height:30px!important}body.terminal-active .header__logo span,body.gp-terminal-active .header__logo span{display:none!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector,body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex:1 1 calc((100% - 48px)/2)!important;min-width:0!important;max-width:none!important;height:32px!important}body.terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger,body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{height:32px!important;min-height:32px!important;padding:0 8px!important;border-radius:10px!important;font-size:11px!important}body.terminal-active #exchange-selector .selector__label,body.gp-terminal-active #exchange-selector .selector__label,body.terminal-active #symbol-selector .selector__label,body.gp-terminal-active #symbol-selector .selector__label{font-size:11px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body.terminal-active .btn--chart-settings,body.gp-terminal-active .btn--chart-settings,body.terminal-active .header__timeframe,body.gp-terminal-active .header__timeframe,body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar,body.terminal-active #fullscreen-btn,body.gp-terminal-active #fullscreen-btn{display:none!important}body.terminal-active #prime-orderflow-btn.btn--prime-orderflow,body.gp-terminal-active #prime-orderflow-btn.btn--prime-orderflow,body.terminal-active #prime-indicator-btn.btn--prime-indicator,body.gp-terminal-active #prime-indicator-btn.btn--prime-indicator{flex:1 1 calc((100% - 42px)/2)!important;min-width:0!important;height:32px!important;min-height:32px!important;max-width:none!important;padding:0 7px!important;border-radius:10px!important;font-size:10px!important;line-height:1!important;letter-spacing:-.01em!important;justify-content:center!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}body.terminal-active .header__controls,body.gp-terminal-active .header__controls{flex:0 0 auto!important;display:inline-flex!important;align-items:center!important;gap:5px!important;margin-left:0!important}body.terminal-active .header__controls .btn,body.gp-terminal-active .header__controls .btn{display:inline-flex!important;width:32px!important;min-width:32px!important;height:32px!important;min-height:32px!important;padding:0!important;border-radius:10px!important;font-size:0!important}body.terminal-active .header__controls .btn--toolbox:before,body.gp-terminal-active .header__controls .btn--toolbox:before{content:"☰";font-size:16px;font-weight:1000}body.terminal-active #settings-btn:before,body.gp-terminal-active #settings-btn:before{content:"⚙";font-size:15px}body.terminal-active .selector__dropdown,body.gp-terminal-active .selector__dropdown{position:fixed!important;z-index:99999!important;top:calc(var(--gp-safe-top, 0px) + 43px)!important;left:8px!important;right:8px!important;width:auto!important;min-width:0!important;max-height:min(66dvh,460px)!important;overflow:auto!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{order:2!important;flex:0 0 36px!important;display:block!important;width:100%!important;height:36px!important;min-height:36px!important;max-height:36px!important;padding:3px!important;margin:0!important;border-radius:11px!important;overflow:hidden!important;border:1px solid rgba(62,135,232,.18)!important;background:#040d1cd1!important}body.terminal-active .gp-terminal-side nav,body.gp-terminal-active .gp-terminal-side nav{display:flex!important;align-items:center!important;gap:4px!important;width:100%!important;height:100%!important;overflow-x:auto!important;overflow-y:hidden!important;padding:0!important;scrollbar-width:none!important}body.terminal-active .gp-terminal-side nav::-webkit-scrollbar,body.gp-terminal-active .gp-terminal-side nav::-webkit-scrollbar{display:none!important}body.terminal-active .gp-terminal-side button,body.gp-terminal-active .gp-terminal-side button,body.terminal-active .gp-terminal-side a,body.gp-terminal-active .gp-terminal-side a{display:inline-flex!important;align-items:center!important;justify-content:center!important;flex:0 0 auto!important;width:auto!important;min-width:max-content!important;height:28px!important;min-height:28px!important;padding:0 9px!important;border-radius:9px!important;font-size:10px!important;font-weight:900!important;white-space:nowrap!important;gap:5px!important}body.terminal-active .gp-plan-card,body.gp-terminal-active .gp-plan-card,body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview,body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom,body.terminal-active .gp-dashboard-tab-panels,body.gp-terminal-active .gp-dashboard-tab-panels,body.terminal-active .bottom-nav,body.gp-terminal-active .bottom-nav{display:none!important}body.terminal-active .main,body.gp-terminal-active .main{order:3!important;display:block!important;flex:1 1 0!important;width:100%!important;min-height:0!important;height:auto!important;overflow:hidden!important;background:transparent!important}body.terminal-active .chart-container,body.gp-terminal-active .chart-container{display:flex!important;flex-direction:column!important;width:100%!important;height:100%!important;min-height:0!important;max-height:100%!important;margin:0!important;overflow:hidden!important;border-radius:12px!important;border:1px solid rgba(52,123,224,.2)!important;background:#030710f5!important}body.terminal-active .gp-chart-card-head,body.gp-terminal-active .gp-chart-card-head{display:none!important}body.terminal-active .timeframes,body.gp-terminal-active .timeframes{display:flex!important;flex:0 0 34px!important;height:34px!important;min-height:34px!important;max-height:34px!important;padding:3px 5px!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important;border-bottom:1px solid rgba(74,105,149,.18)!important}body.terminal-active .timeframes::-webkit-scrollbar,body.gp-terminal-active .timeframes::-webkit-scrollbar{display:none!important}body.terminal-active .timeframes__scroll,body.gp-terminal-active .timeframes__scroll{display:flex!important;align-items:center!important;flex-wrap:nowrap!important;gap:4px!important;width:max-content!important;min-width:100%!important;overflow:visible!important}body.terminal-active .timeframes__tools,body.gp-terminal-active .timeframes__tools{display:flex!important;align-items:center!important;gap:4px!important;margin-left:7px!important;overflow:visible!important}body.terminal-active .timeframe-btn,body.gp-terminal-active .timeframe-btn,body.terminal-active .tv-top-tool,body.gp-terminal-active .tv-top-tool{flex:0 0 auto!important;min-width:max-content!important;height:26px!important;min-height:26px!important;padding:0 8px!important;border-radius:8px!important;font-size:10px!important;font-weight:900!important}body.terminal-active .timeframe-select,body.gp-terminal-active .timeframe-select{display:none!important}body.terminal-active .chart-area,body.gp-terminal-active .chart-area{flex:1 1 0!important;min-height:0!important;height:auto!important;max-height:none!important;overflow:hidden!important}body.terminal-active .analytics,body.gp-terminal-active .analytics{display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;flex:0 0 42px!important;min-height:42px!important;height:42px!important;max-height:42px!important;overflow:hidden!important;border-top:1px solid rgba(74,105,149,.18)!important}body.terminal-active .analytics .metric,body.gp-terminal-active .analytics .metric{display:flex!important;justify-content:center!important;min-width:0!important;padding:4px 2px!important;gap:1px!important}body.terminal-active .metric__label,body.gp-terminal-active .metric__label{font-size:6.8px!important;letter-spacing:0!important;line-height:1.05!important}body.terminal-active .metric__value,body.gp-terminal-active .metric__value{font-size:9.8px!important;line-height:1.1!important;max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}body.terminal-active .cvd-container,body.gp-terminal-active .cvd-container{display:none!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{order:4!important;position:relative!important;inset:auto!important;display:flex!important;flex-direction:column!important;flex:0 0 clamp(155px,29dvh,235px)!important;width:100%!important;height:clamp(155px,29dvh,235px)!important;min-height:0!important;max-height:clamp(155px,29dvh,235px)!important;padding:0!important;transform:none!important;border-radius:12px!important;border:1px solid rgba(52,123,224,.2)!important;background:#030813f5!important;overflow:hidden!important}body.terminal-active .sidebar__close,body.gp-terminal-active .sidebar__close{display:none!important}body.terminal-active .orderbook__header,body.gp-terminal-active .orderbook__header{display:flex!important;align-items:center!important;flex:0 0 30px!important;height:30px!important;min-height:30px!important;padding:0 8px!important;overflow:hidden!important}body.terminal-active .orderbook__title,body.gp-terminal-active .orderbook__title{font-size:11px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}body.terminal-active .orderbook__depth,body.gp-terminal-active .orderbook__depth{display:flex!important;align-items:center!important;flex:0 0 28px!important;min-height:28px!important;height:28px!important;padding:0 8px!important;gap:6px!important}body.terminal-active .orderbook__depth label,body.gp-terminal-active .orderbook__depth label,body.terminal-active .orderbook__depth select,body.gp-terminal-active .orderbook__depth select{font-size:10px!important}body.terminal-active .orderbook__content,body.gp-terminal-active .orderbook__content{flex:1 1 0!important;min-height:0!important;max-height:none!important;overflow:auto!important;-webkit-overflow-scrolling:touch!important}body.terminal-active .dom-ladder__row,body.gp-terminal-active .dom-ladder__row,body.terminal-active .orderbook__row,body.gp-terminal-active .orderbook__row{min-height:17px!important;height:17px!important;font-size:10px!important;line-height:17px!important}body.terminal-active #levels-summary,body.gp-terminal-active #levels-summary,body.terminal-active .tools-panel,body.gp-terminal-active .tools-panel,body.terminal-active .chart-settings-panel,body.gp-terminal-active .chart-settings-panel,body.terminal-active .watchlist-panel,body.gp-terminal-active .watchlist-panel{display:none!important}body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open,body.terminal-active .chart-settings-panel.open,body.gp-terminal-active .chart-settings-panel.open,body.terminal-active .watchlist-panel.open,body.gp-terminal-active .watchlist-panel.open{position:fixed!important;top:calc(var(--gp-safe-top, 0px) + 8px)!important;left:8px!important;right:8px!important;bottom:calc(var(--gp-safe-bottom, 0px) + 8px)!important;z-index:99998!important;display:flex!important;flex-direction:column!important;width:auto!important;max-width:none!important;height:auto!important;max-height:none!important;opacity:1!important;visibility:visible!important;transform:none!important;pointer-events:auto!important;border-radius:16px!important;overflow:hidden!important}body.terminal-active .tools-panel.open .tools-panel__close,body.gp-terminal-active .tools-panel.open .tools-panel__close,body.terminal-active .chart-settings-panel.open .chart-settings-panel__close,body.gp-terminal-active .chart-settings-panel.open .chart-settings-panel__close{display:inline-flex!important}body.terminal-active .tools-panel.open .tools-panel__body,body.gp-terminal-active .tools-panel.open .tools-panel__body,body.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body{display:grid!important;grid-template-columns:1fr!important;gap:8px!important;overflow:auto!important;max-height:none!important;padding:12px!important}}@media(max-width:420px)and (orientation:portrait){body.terminal-active #app,body.gp-terminal-active #app{padding-inline:4px!important;gap:4px!important}body.terminal-active #prime-orderflow-btn.btn--prime-orderflow,body.gp-terminal-active #prime-orderflow-btn.btn--prime-orderflow,body.terminal-active #prime-indicator-btn.btn--prime-indicator,body.gp-terminal-active #prime-indicator-btn.btn--prime-indicator{font-size:9px!important;padding-inline:5px!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{flex-basis:34px!important;height:34px!important;min-height:34px!important;max-height:34px!important}body.terminal-active .timeframes,body.gp-terminal-active .timeframes{flex-basis:32px!important;height:32px!important;min-height:32px!important;max-height:32px!important}body.terminal-active .timeframe-btn,body.gp-terminal-active .timeframe-btn,body.terminal-active .tv-top-tool,body.gp-terminal-active .tv-top-tool{height:24px!important;min-height:24px!important;padding-inline:7px!important;font-size:9.5px!important}body.terminal-active .analytics,body.gp-terminal-active .analytics{flex-basis:38px!important;min-height:38px!important;height:38px!important;max-height:38px!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{flex-basis:clamp(145px,27dvh,210px)!important;height:clamp(145px,27dvh,210px)!important;max-height:clamp(145px,27dvh,210px)!important}}@media(max-width:920px)and (orientation:landscape){body.terminal-active #app,body.gp-terminal-active #app{display:grid!important;grid-template-columns:minmax(0,1fr) clamp(230px,32vw,330px)!important;grid-template-rows:auto 34px minmax(0,1fr)!important;grid-template-areas:"header header" "nav nav" "chart dom"!important;gap:5px!important;padding:0 5px calc(var(--gp-safe-bottom, 0px) + 5px)!important;overflow:hidden!important}body.terminal-active .header,body.gp-terminal-active .header{grid-area:header!important;flex:initial!important;min-height:0!important;height:auto!important;max-height:calc(var(--gp-safe-top, 0px) + 44px)!important;flex-wrap:nowrap!important;gap:5px!important;padding:calc(var(--gp-safe-top, 0px) + 4px) 5px 4px!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important;border-radius:0 0 11px 11px!important}body.terminal-active .header::-webkit-scrollbar,body.gp-terminal-active .header::-webkit-scrollbar{display:none!important}body.terminal-active .header__logo,body.gp-terminal-active .header__logo{flex:0 0 36px!important;width:36px!important;min-width:36px!important;max-width:36px!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector,body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{flex:0 0 126px!important;width:126px!important}body.terminal-active #prime-orderflow-btn.btn--prime-orderflow,body.gp-terminal-active #prime-orderflow-btn.btn--prime-orderflow,body.terminal-active #prime-indicator-btn.btn--prime-indicator,body.gp-terminal-active #prime-indicator-btn.btn--prime-indicator{flex:0 0 156px!important;width:156px!important}body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar{display:inline-flex!important;flex:0 0 118px!important;width:118px!important;height:32px!important;min-width:118px!important;font-size:10px!important;justify-content:center!important;padding:0 8px!important}body.terminal-active .gp-terminal-livebar span:not(.gp-live-dot),body.gp-terminal-active .gp-terminal-livebar span:not(.gp-live-dot){display:none!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{grid-area:nav!important;flex:initial!important;height:34px!important;min-height:34px!important;max-height:34px!important}body.terminal-active .main,body.gp-terminal-active .main{grid-area:chart!important;flex:initial!important;width:100%!important;height:100%!important;min-height:0!important}body.terminal-active .chart-container,body.gp-terminal-active .chart-container{height:100%!important;min-height:0!important;border-radius:12px!important}body.terminal-active .timeframes,body.gp-terminal-active .timeframes{flex-basis:30px!important;height:30px!important;min-height:30px!important;max-height:30px!important;padding-block:2px!important}body.terminal-active .timeframe-btn,body.gp-terminal-active .timeframe-btn,body.terminal-active .tv-top-tool,body.gp-terminal-active .tv-top-tool{height:24px!important;min-height:24px!important;padding:0 8px!important;font-size:9.5px!important}body.terminal-active .analytics,body.gp-terminal-active .analytics{flex-basis:34px!important;height:34px!important;min-height:34px!important;max-height:34px!important}body.terminal-active .metric__label,body.gp-terminal-active .metric__label{display:none!important}body.terminal-active .metric__value,body.gp-terminal-active .metric__value{font-size:10px!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{grid-area:dom!important;flex:initial!important;width:100%!important;height:100%!important;min-height:0!important;max-height:none!important;border-radius:12px!important}body.terminal-active .orderbook__content,body.gp-terminal-active .orderbook__content{min-height:0!important}}#gp-access-dialog{z-index:2147483000!important}@media(max-width:920px),(hover:none)and (pointer:coarse){body.terminal-active,body.gp-terminal-active{--gp-phone-safe-top: env(safe-area-inset-top, 0px);--gp-phone-safe-bottom: env(safe-area-inset-bottom, 0px);--gp-phone-bottom-nav: 62px;--gp-phone-header-min: 58px;background:#020611!important;color:#f5fbff!important;overflow:hidden!important}body.terminal-active #app,body.gp-terminal-active #app{display:flex!important;flex-direction:column!important;width:100vw!important;max-width:100vw!important;min-width:0!important;height:var(--gp-vh, 100dvh)!important;min-height:var(--gp-vh, 100dvh)!important;max-height:var(--gp-vh, 100dvh)!important;padding:0 6px calc(var(--gp-phone-bottom-nav) + var(--gp-phone-safe-bottom) + 10px)!important;gap:6px!important;overflow:hidden!important;background:radial-gradient(circle at 50% 0%,rgba(10,100,190,.1),transparent 42%),#020611!important}body.terminal-active .header,body.gp-terminal-active .header{order:1!important;position:relative!important;flex:0 0 auto!important;display:grid!important;grid-template-columns:42px minmax(0,1fr) minmax(0,1fr) 42px!important;grid-auto-rows:minmax(36px,auto)!important;align-items:center!important;gap:7px!important;width:100%!important;min-height:calc(var(--gp-phone-header-min) + var(--gp-phone-safe-top))!important;max-height:none!important;padding:calc(var(--gp-phone-safe-top) + 7px) 7px 7px!important;margin:0!important;border-radius:0 0 18px 18px!important;border:1px solid rgba(51,129,255,.18)!important;background:linear-gradient(180deg,#030c1cfc,#040a16f5)!important;box-shadow:0 12px 30px #0000005c,inset 0 1px #ffffff0d!important;overflow:visible!important;z-index:80!important}body.terminal-active .header__logo,body.gp-terminal-active .header__logo{grid-column:1!important;width:38px!important;min-width:38px!important;height:38px!important;padding:0!important;display:inline-flex!important;align-items:center!important;justify-content:center!important}body.terminal-active .header__logo-img,body.gp-terminal-active .header__logo-img{width:34px!important;height:34px!important;border-radius:10px!important}body.terminal-active .header__logo span,body.gp-terminal-active .header__logo span,body.terminal-active .gp-terminal-livebar,body.gp-terminal-active .gp-terminal-livebar,body.terminal-active .btn--chart-settings,body.gp-terminal-active .btn--chart-settings,body.terminal-active .header__timeframe,body.gp-terminal-active .header__timeframe,body.terminal-active #fullscreen-btn,body.gp-terminal-active #fullscreen-btn{display:none!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector{grid-column:2!important}body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{grid-column:3!important}body.terminal-active #exchange-selector,body.gp-terminal-active #exchange-selector,body.terminal-active #symbol-selector,body.gp-terminal-active #symbol-selector{width:100%!important;min-width:0!important;max-width:none!important;height:38px!important;flex:none!important}body.terminal-active #exchange-selector .selector__trigger,body.gp-terminal-active #exchange-selector .selector__trigger,body.terminal-active #symbol-selector .selector__trigger,body.gp-terminal-active #symbol-selector .selector__trigger{width:100%!important;height:38px!important;min-height:38px!important;padding:0 11px!important;border-radius:13px!important;border:1px solid rgba(82,139,229,.32)!important;background:#060e1ff0!important;box-shadow:inset 0 1px #ffffff0a!important}body.terminal-active #exchange-selector .selector__label,body.gp-terminal-active #exchange-selector .selector__label,body.terminal-active #symbol-selector .selector__label,body.gp-terminal-active #symbol-selector .selector__label{max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;font-size:13px!important;font-weight:900!important}body.terminal-active .header__controls,body.gp-terminal-active .header__controls{grid-column:4!important;display:inline-flex!important;justify-content:flex-end!important;gap:5px!important;min-width:0!important;margin:0!important}body.terminal-active .header__controls .btn,body.gp-terminal-active .header__controls .btn{display:inline-flex!important;width:38px!important;min-width:38px!important;height:38px!important;min-height:38px!important;padding:0!important;border-radius:13px!important;font-size:0!important;align-items:center!important;justify-content:center!important;border:1px solid rgba(94,157,255,.24)!important;background:#091225f5!important}body.terminal-active #tools-panel-btn,body.gp-terminal-active #tools-panel-btn{display:none!important}body.terminal-active #settings-btn:before,body.gp-terminal-active #settings-btn:before{content:"⚙";font-size:20px;line-height:1}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{order:2!important;position:relative!important;inset:auto!important;flex:0 0 42px!important;display:block!important;width:100%!important;height:42px!important;min-height:42px!important;max-height:42px!important;padding:4px!important;margin:0!important;overflow:hidden!important;border-radius:15px!important;border:1px solid rgba(30,216,255,.16)!important;background:linear-gradient(180deg,#040d1ff0,#040914f5)!important;box-shadow:0 10px 26px #00000047!important;z-index:70!important}body.terminal-active .gp-terminal-side nav,body.gp-terminal-active .gp-terminal-side nav{display:flex!important;align-items:center!important;gap:6px!important;width:100%!important;height:100%!important;padding:0!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important}body.terminal-active .gp-terminal-side nav::-webkit-scrollbar,body.gp-terminal-active .gp-terminal-side nav::-webkit-scrollbar{display:none!important}body.terminal-active .gp-terminal-side button,body.gp-terminal-active .gp-terminal-side button,body.terminal-active .gp-terminal-side a,body.gp-terminal-active .gp-terminal-side a{flex:0 0 auto!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;height:32px!important;min-height:32px!important;min-width:max-content!important;padding:0 11px!important;gap:6px!important;border-radius:11px!important;border:1px solid rgba(78,138,230,.25)!important;background:#081227eb!important;color:#dfeeff!important;font-size:11px!important;font-weight:950!important;white-space:nowrap!important;letter-spacing:.01em!important;text-transform:none!important}body.terminal-active .gp-terminal-side button.active,body.gp-terminal-active .gp-terminal-side button.active,body.terminal-active .gp-terminal-side button[data-mobile-prime-indicator],body.gp-terminal-active .gp-terminal-side button[data-mobile-prime-indicator]{border-color:#00e5ff6b!important;color:#efffff!important;background:linear-gradient(135deg,#0071ff57,#00e0ff30)!important;box-shadow:inset 0 1px #ffffff14,0 0 14px #00e0ff1a!important}body.terminal-active .gp-terminal-side span,body.gp-terminal-active .gp-terminal-side span{font-size:13px!important;line-height:1!important}body.terminal-active .gp-plan-card,body.gp-terminal-active .gp-plan-card{display:none!important}body.terminal-active .main,body.gp-terminal-active .main{order:3!important;flex:1 1 0!important;width:100%!important;min-width:0!important;min-height:0!important;height:auto!important;overflow:hidden!important}body.terminal-active .chart-container,body.gp-terminal-active .chart-container{display:flex!important;flex-direction:column!important;height:100%!important;width:100%!important;min-height:0!important;overflow:hidden!important;border-radius:16px!important;border:1px solid rgba(70,132,230,.18)!important;background:#040812f0!important}body.terminal-active .timeframes,body.gp-terminal-active .timeframes{flex:0 0 39px!important;height:39px!important;min-height:39px!important;max-height:39px!important;padding:4px 6px!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important;border-bottom:1px solid rgba(255,255,255,.07)!important;background:#0a0b17e6!important}body.terminal-active .timeframes::-webkit-scrollbar,body.gp-terminal-active .timeframes::-webkit-scrollbar{display:none!important}body.terminal-active .timeframes__scroll,body.gp-terminal-active .timeframes__scroll{display:flex!important;align-items:center!important;flex-wrap:nowrap!important;gap:6px!important;width:max-content!important;min-width:100%!important}body.terminal-active .timeframe-btn,body.gp-terminal-active .timeframe-btn,body.terminal-active .tv-top-tool,body.gp-terminal-active .tv-top-tool{height:29px!important;min-height:29px!important;min-width:43px!important;padding:0 9px!important;border-radius:10px!important;font-size:11px!important;font-weight:900!important}body.terminal-active .chart-area,body.gp-terminal-active .chart-area{flex:1 1 0!important;min-height:0!important;height:auto!important;overflow:hidden!important}body.terminal-active .analytics,body.gp-terminal-active .analytics{flex:0 0 38px!important;min-height:38px!important;height:38px!important;max-height:38px!important}body.terminal-active .cvd-container,body.gp-terminal-active .cvd-container,body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom,body.terminal-active .gp-dashboard-tab-panels,body.gp-terminal-active .gp-dashboard-tab-panels{display:none!important}body.terminal-active .bottom-nav,body.gp-terminal-active .bottom-nav{display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;position:fixed!important;left:8px!important;right:8px!important;bottom:calc(var(--gp-phone-safe-bottom) + 8px)!important;width:auto!important;height:54px!important;min-height:54px!important;padding:5px!important;border-radius:19px!important;border:1px solid rgba(82,139,229,.22)!important;background:#030711f0!important;box-shadow:0 18px 42px #00000075,inset 0 1px #ffffff0d!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;z-index:9000!important}body.terminal-active .bottom-nav__btn,body.gp-terminal-active .bottom-nav__btn{height:44px!important;min-height:44px!important;border-radius:14px!important;gap:1px!important;padding:3px 2px!important}body.terminal-active .bottom-nav__icon,body.gp-terminal-active .bottom-nav__icon{font-size:16px!important;line-height:1!important}body.terminal-active .bottom-nav__label,body.gp-terminal-active .bottom-nav__label{font-size:8.5px!important;font-weight:800!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{display:none!important}body.terminal-active.gp-mobile-book-open .sidebar,body.gp-terminal-active.gp-mobile-book-open .sidebar,body.gp-device-phone.gp-mobile-book-open .sidebar{position:fixed!important;top:calc(var(--gp-phone-safe-top) + 8px)!important;left:8px!important;right:8px!important;bottom:calc(var(--gp-phone-safe-bottom) + 8px)!important;z-index:100000!important;display:flex!important;flex-direction:column!important;width:auto!important;height:auto!important;min-height:0!important;max-height:none!important;padding:0!important;border-radius:22px!important;border:1px solid rgba(38,184,255,.38)!important;background:linear-gradient(180deg,#050e20fc,#020711fc)!important;box-shadow:0 30px 80px #000000a6,0 0 0 9999px #00000094!important;overflow:hidden!important;transform:none!important;opacity:1!important;visibility:visible!important}body.gp-mobile-book-open .sidebar__close,body.gp-mobile-book-open .btn.sidebar__close{display:inline-flex!important;order:5!important;width:38px!important;min-width:38px!important;height:38px!important;min-height:38px!important;margin-left:auto!important;border-radius:14px!important;border:1px solid rgba(255,255,255,.18)!important;background:#ffffff14!important;color:#fff!important;font-size:0!important}body.gp-mobile-book-open .sidebar__close:before{content:"×";font-size:25px;font-weight:900;line-height:1}body.gp-mobile-book-open .orderbook__header{flex:0 0 58px!important;display:flex!important;align-items:center!important;gap:8px!important;height:58px!important;min-height:58px!important;padding:10px 12px!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:#081023f5!important}body.gp-mobile-book-open .orderbook__title{flex:1 1 auto!important;font-size:16px!important;font-weight:950!important;color:#f6fbff!important}body.gp-mobile-book-open .orderbook__modes{display:inline-flex!important;gap:5px!important;margin-left:auto!important}body.gp-mobile-book-open .orderbook__modes .btn{width:34px!important;min-width:34px!important;height:34px!important;min-height:34px!important;border-radius:12px!important;padding:0!important;font-size:15px!important}body.gp-mobile-book-open .orderbook__depth{flex:0 0 44px!important;display:flex!important;align-items:center!important;gap:10px!important;min-height:44px!important;height:44px!important;padding:7px 12px!important;border-bottom:1px solid rgba(255,255,255,.07)!important}body.gp-mobile-book-open .orderbook__depth label,body.gp-mobile-book-open .orderbook__depth select{font-size:13px!important;font-weight:850!important}body.gp-mobile-book-open .orderbook__content{flex:1 1 0!important;min-height:0!important;height:auto!important;max-height:none!important;overflow:auto!important;-webkit-overflow-scrolling:touch!important;padding-bottom:14px!important}body.gp-mobile-book-open .dom-ladder__row,body.gp-mobile-book-open .orderbook__row{min-height:23px!important;height:23px!important;line-height:23px!important;font-size:12px!important}.info-panel{z-index:100010!important}.info-panel__overlay{background:#000000a8!important;-webkit-backdrop-filter:blur(8px)!important;backdrop-filter:blur(8px)!important}.info-panel__content{position:fixed!important;top:calc(var(--gp-phone-safe-top) + 8px)!important;left:8px!important;right:8px!important;bottom:calc(var(--gp-phone-safe-bottom) + 8px)!important;max-height:none!important;transform:translateY(28px) scale(.985)!important;border-radius:22px!important;border:1px solid rgba(38,184,255,.26)!important;background:linear-gradient(180deg,#0f1120fc,#080a16fc)!important;box-shadow:0 30px 80px #000000ad!important;overflow:hidden!important}.info-panel.open .info-panel__content{transform:translateY(0) scale(1)!important}.info-panel__header{position:sticky!important;top:0!important;z-index:2!important;height:58px!important;min-height:58px!important;padding:0 14px!important;background:#0d1123fa!important;border-bottom:1px solid rgba(255,255,255,.08)!important}.info-panel__header h2{font-size:18px!important;font-weight:950!important;color:#fff!important}.info-panel__close{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:38px!important;height:38px!important;border-radius:14px!important;border:1px solid rgba(255,255,255,.18)!important;background:#ffffff14!important;color:#fff!important;font-size:22px!important;font-weight:900!important}.info-panel__body{max-height:calc(var(--gp-vh, 100dvh) - var(--gp-phone-safe-top) - var(--gp-phone-safe-bottom) - 86px)!important;padding:14px!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important}.info-item{margin-bottom:12px!important;padding:14px!important;border-radius:16px!important;background:#ffffff0b!important;border:1px solid rgba(255,255,255,.06)!important}.info-item h3{font-size:15px!important;color:#3b87ff!important}.info-item p{font-size:13.5px!important;color:#e2e8f4bd!important}body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open,body.terminal-active .chart-settings-panel.open,body.gp-terminal-active .chart-settings-panel.open,body.terminal-active .watchlist-panel.open,body.gp-terminal-active .watchlist-panel.open{position:fixed!important;top:calc(var(--gp-phone-safe-top) + 8px)!important;left:8px!important;right:8px!important;bottom:calc(var(--gp-phone-safe-bottom) + 8px)!important;z-index:100020!important;display:flex!important;flex-direction:column!important;width:auto!important;height:auto!important;max-width:none!important;max-height:none!important;border-radius:22px!important;border:1px solid rgba(38,184,255,.34)!important;background:linear-gradient(180deg,#050e20fe,#020711fe)!important;box-shadow:0 32px 80px #000000b3,0 0 0 9999px #00000094!important;overflow:hidden!important;transform:none!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important}body.terminal-active .tools-panel__header,body.gp-terminal-active .tools-panel__header,body.terminal-active .chart-settings-panel__header,body.gp-terminal-active .chart-settings-panel__header,body.terminal-active .watchlist-panel__header,body.gp-terminal-active .watchlist-panel__header{flex:0 0 auto!important;min-height:58px!important;padding:10px 12px!important;background:#091125fa!important;border-bottom:1px solid rgba(255,255,255,.08)!important}body.terminal-active .tools-panel__header strong,body.gp-terminal-active .tools-panel__header strong{color:#fff!important;font-size:16px!important;letter-spacing:.03em!important}body.terminal-active .tools-panel__header span,body.gp-terminal-active .tools-panel__header span{color:#e1ebff9e!important;font-size:12px!important}body.terminal-active .tools-panel__close,body.gp-terminal-active .tools-panel__close,body.terminal-active .chart-settings-panel__close,body.gp-terminal-active .chart-settings-panel__close,body.terminal-active .watchlist-panel__close,body.gp-terminal-active .watchlist-panel__close{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:40px!important;min-width:40px!important;height:40px!important;min-height:40px!important;border-radius:15px!important;border:1px solid rgba(255,255,255,.18)!important;background:#ffffff14!important;color:#fff!important;font-size:23px!important;font-weight:900!important}body.terminal-active .tools-panel.open .tools-panel__body,body.gp-terminal-active .tools-panel.open .tools-panel__body,body.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.terminal-active .chart-settings-panel.open .chart-settings-panel__body,body.gp-terminal-active .chart-settings-panel.open .chart-settings-panel__body,body.terminal-active .watchlist-panel.open .watchlist-panel__body,body.gp-terminal-active .watchlist-panel.open .watchlist-panel__body{flex:1 1 0!important;display:grid!important;grid-template-columns:1fr!important;gap:12px!important;min-height:0!important;max-height:none!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;padding:14px!important}body.terminal-active .gp-of-slider,body.gp-terminal-active .gp-of-slider,body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select,body.terminal-active .gp-of-switch-row,body.gp-terminal-active .gp-of-switch-row,body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row,body.terminal-active .chart-settings-row,body.gp-terminal-active .chart-settings-row{display:grid!important;grid-template-columns:1fr!important;gap:9px!important;padding:13px 14px!important;border-radius:16px!important;border:1px solid rgba(255,255,255,.07)!important;background:#ffffff0b!important;color:#f3f8ff!important;font-size:14px!important;font-weight:850!important}body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row,body.terminal-active .gp-of-switch-row,body.gp-terminal-active .gp-of-switch-row{grid-template-columns:1fr auto!important;align-items:center!important}body.terminal-active .gp-of-slider input[type=range],body.gp-terminal-active .gp-of-slider input[type=range],body.terminal-active .prime-row input[type=range],body.gp-terminal-active .prime-row input[type=range]{-webkit-appearance:none!important;appearance:none!important;width:100%!important;height:8px!important;border-radius:999px!important;background:linear-gradient(90deg,#1d8bff,#16e6d2 55%,#ffffff2e 55%)!important;outline:none!important;border:1px solid rgba(255,255,255,.12)!important}body.terminal-active .gp-of-slider input[type=range]::-webkit-slider-thumb,body.gp-terminal-active .gp-of-slider input[type=range]::-webkit-slider-thumb,body.terminal-active .prime-row input[type=range]::-webkit-slider-thumb,body.gp-terminal-active .prime-row input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;width:24px!important;height:24px!important;border-radius:50%!important;border:3px solid #ffffff!important;background:#16e6d2!important;box-shadow:0 8px 18px #00000061,0 0 0 5px #16e6d21f!important}body.terminal-active .gp-of-slider input[type=range]::-moz-range-thumb,body.gp-terminal-active .gp-of-slider input[type=range]::-moz-range-thumb,body.terminal-active .prime-row input[type=range]::-moz-range-thumb,body.gp-terminal-active .prime-row input[type=range]::-moz-range-thumb{width:24px!important;height:24px!important;border-radius:50%!important;border:3px solid #ffffff!important;background:#16e6d2!important}body.terminal-active .gp-of-select select,body.gp-terminal-active .gp-of-select select,body.terminal-active .prime-select,body.gp-terminal-active .prime-select,body.terminal-active .orderbook__depth select,body.gp-terminal-active .orderbook__depth select{-webkit-appearance:none!important;appearance:none!important;width:100%!important;min-height:40px!important;padding:0 42px 0 13px!important;border-radius:14px!important;border:1px solid rgba(35,208,255,.28)!important;background-color:#040b18fa!important;background-image:linear-gradient(45deg,transparent 50%,#2ee8ff 50%),linear-gradient(135deg,#2ee8ff 50%,transparent 50%)!important;background-position:calc(100% - 20px) 17px,calc(100% - 14px) 17px!important;background-size:7px 7px,7px 7px!important;background-repeat:no-repeat!important;color:#efffff!important;font-size:14px!important;font-weight:850!important;outline:none!important}body.terminal-active .gp-of-select option,body.gp-terminal-active .gp-of-select option,body.terminal-active .prime-select option,body.gp-terminal-active .prime-select option{background:#061020!important;color:#fff!important}body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}body.terminal-active .gp-of-mode-grid button,body.gp-terminal-active .gp-of-mode-grid button,body.terminal-active .gp-of-actions button,body.gp-terminal-active .gp-of-actions button,body.terminal-active .tool-toggle,body.gp-terminal-active .tool-toggle,body.terminal-active .gp-mini-switch,body.gp-terminal-active .gp-mini-switch{min-height:42px!important;border-radius:14px!important;border:1px solid rgba(255,255,255,.1)!important;background:#ffffff12!important;color:#eaf6ff!important;font-size:13px!important;font-weight:950!important;letter-spacing:.02em!important}body.terminal-active .tool-toggle.active,body.gp-terminal-active .tool-toggle.active,body.terminal-active .gp-mini-switch.active,body.gp-terminal-active .gp-mini-switch.active,body.terminal-active .gp-of-mode-grid button.active,body.gp-terminal-active .gp-of-mode-grid button.active,body.terminal-active .gp-prime-action,body.gp-terminal-active .gp-prime-action{border-color:#00e0ff5c!important;background:linear-gradient(135deg,#0575ff,#10e2ca)!important;color:#001018!important;box-shadow:0 10px 22px #00a2ff33!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{display:grid!important;grid-template-columns:1fr!important;gap:10px!important}}@media(max-width:920px)and (orientation:landscape){body.terminal-active,body.gp-terminal-active{--gp-phone-bottom-nav: 0px}body.terminal-active #app,body.gp-terminal-active #app{display:grid!important;grid-template-columns:minmax(0,1fr) clamp(220px,31vw,330px)!important;grid-template-rows:auto 40px minmax(0,1fr)!important;grid-template-areas:"header header" "rail rail" "chart book"!important;gap:6px!important;padding:0 6px calc(var(--gp-phone-safe-bottom) + 6px)!important}body.terminal-active .header,body.gp-terminal-active .header{grid-area:header!important;grid-template-columns:38px 142px 136px auto!important;min-height:calc(46px + var(--gp-phone-safe-top))!important;padding:calc(var(--gp-phone-safe-top) + 5px) 6px 5px!important;overflow:hidden!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{grid-area:rail!important;height:40px!important;min-height:40px!important;max-height:40px!important}body.terminal-active .main,body.gp-terminal-active .main{grid-area:chart!important;height:100%!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{grid-area:book!important;position:relative!important;inset:auto!important;display:flex!important;flex-direction:column!important;width:100%!important;height:100%!important;min-height:0!important;max-height:none!important;border-radius:16px!important;border:1px solid rgba(70,132,230,.2)!important;background:#030813f5!important;overflow:hidden!important}body.terminal-active .bottom-nav,body.gp-terminal-active .bottom-nav{display:none!important}body.terminal-active .orderbook__header,body.gp-terminal-active .orderbook__header{height:38px!important;min-height:38px!important;padding:6px 9px!important}body.terminal-active .orderbook__title,body.gp-terminal-active .orderbook__title{font-size:12px!important}body.terminal-active .orderbook__depth,body.gp-terminal-active .orderbook__depth{min-height:34px!important;height:34px!important;padding:5px 9px!important}body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open,body.terminal-active .chart-settings-panel.open,body.gp-terminal-active .chart-settings-panel.open{top:calc(var(--gp-phone-safe-top) + 6px)!important;left:8px!important;right:8px!important;bottom:calc(var(--gp-phone-safe-bottom) + 6px)!important}body.terminal-active .tools-panel.open .tools-panel__body,body.gp-terminal-active .tools-panel.open .tools-panel__body,body.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{grid-column:1 / -1!important;grid-template-columns:repeat(2,minmax(0,1fr))!important}}@media(max-width:380px){body.terminal-active #app,body.gp-terminal-active #app{--gp-phone-bottom-nav: 58px;padding-inline:4px!important;gap:5px!important}body.terminal-active .header,body.gp-terminal-active .header{grid-template-columns:36px minmax(0,1fr) minmax(0,1fr) 36px!important;gap:5px!important;padding-inline:5px!important}body.terminal-active .header__controls .btn,body.gp-terminal-active .header__controls .btn,body.terminal-active #settings-btn,body.gp-terminal-active #settings-btn{width:34px!important;min-width:34px!important;height:34px!important;min-height:34px!important}body.terminal-active #exchange-selector .selector__label,body.gp-terminal-active #exchange-selector .selector__label,body.terminal-active #symbol-selector .selector__label,body.gp-terminal-active #symbol-selector .selector__label{font-size:12px!important}body.terminal-active .gp-terminal-side button,body.gp-terminal-active .gp-terminal-side button{height:30px!important;min-height:30px!important;font-size:10px!important;padding-inline:9px!important}}.gp-mobile-quick-rail,.gp-mobile-tools-shortcuts{display:none}@media(max-width:920px),(hover:none)and (pointer:coarse){body.terminal-active .gp-mobile-quick-rail,body.gp-terminal-active .gp-mobile-quick-rail{order:2!important;display:flex!important;align-items:center!important;gap:6px!important;flex:0 0 36px!important;width:100%!important;min-height:36px!important;max-height:36px!important;padding:3px 4px!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important;border:1px solid rgba(60,135,232,.18)!important;border-radius:12px!important;background:linear-gradient(180deg,#050f20f0,#020814f5)!important;box-shadow:inset 0 1px #ffffff0a!important}body.terminal-active .gp-mobile-quick-rail::-webkit-scrollbar,body.gp-terminal-active .gp-mobile-quick-rail::-webkit-scrollbar{display:none!important}body.terminal-active .gp-mobile-quick-rail button,body.gp-terminal-active .gp-mobile-quick-rail button{flex:0 0 auto!important;height:28px!important;min-width:max-content!important;padding:0 10px!important;border-radius:9px!important;border:1px solid rgba(45,144,255,.24)!important;background:#0f53b433!important;color:#d8ebff!important;font:900 10px/1 Inter,system-ui,sans-serif!important;letter-spacing:.01em!important;white-space:nowrap!important;cursor:pointer!important}body.terminal-active .gp-mobile-quick-rail button:first-child,body.gp-terminal-active .gp-mobile-quick-rail button:first-child{background:linear-gradient(135deg,#0097ffad,#00e8ae8c)!important;color:#fff!important;box-shadow:0 0 18px #00d7ff24!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{order:3!important}body.terminal-active .main,body.gp-terminal-active .main{order:4!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar,body.gp-device-phone.terminal-active .sidebar,body.gp-device-phone.gp-terminal-active .sidebar{position:fixed!important;top:calc(var(--gp-safe-top, 0px) + 8px)!important;right:8px!important;bottom:calc(var(--gp-safe-bottom, 0px) + 76px)!important;left:8px!important;width:auto!important;max-width:none!important;height:auto!important;min-height:0!important;max-height:none!important;flex:initial!important;order:initial!important;display:flex!important;flex-direction:column!important;transform:translate3d(110%,0,0)!important;opacity:0!important;pointer-events:none!important;z-index:2147481800!important;border-radius:22px!important;border:1px solid rgba(58,145,255,.3)!important;background:radial-gradient(circle at 12% 0%,rgba(0,145,255,.18),transparent 28%),#040a17fd!important;box-shadow:0 30px 90px #000000a8,0 0 0 1px #ffffff0b inset!important;overflow:hidden!important;transition:transform .23s ease,opacity .23s ease!important}body.terminal-active .sidebar.open,body.terminal-active .sidebar.active,body.gp-terminal-active .sidebar.open,body.gp-terminal-active .sidebar.active,body.gp-device-phone.terminal-active .sidebar.open,body.gp-device-phone.terminal-active .sidebar.active,body.gp-device-phone.gp-terminal-active .sidebar.open,body.gp-device-phone.gp-terminal-active .sidebar.active{transform:translateZ(0)!important;opacity:1!important;pointer-events:auto!important}body.terminal-active .sidebar__close,body.gp-terminal-active .sidebar__close,body.gp-device-phone.terminal-active .sidebar__close,body.gp-device-phone.gp-terminal-active .sidebar__close{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:44px!important;min-width:44px!important;height:44px!important;min-height:44px!important;margin-right:8px!important;border-radius:15px!important;border:1px solid rgba(255,255,255,.13)!important;background:#ffffff13!important;color:#fff!important;font-size:0!important;box-shadow:none!important}body.terminal-active .sidebar__close:before,body.gp-terminal-active .sidebar__close:before,body.gp-device-phone.terminal-active .sidebar__close:before,body.gp-device-phone.gp-terminal-active .sidebar__close:before{content:"×";font-size:25px;line-height:1;font-weight:800}body.terminal-active .orderbook__header,body.gp-terminal-active .orderbook__header,body.gp-device-phone.terminal-active .orderbook__header,body.gp-device-phone.gp-terminal-active .orderbook__header{display:flex!important;align-items:center!important;gap:8px!important;flex:0 0 58px!important;height:58px!important;min-height:58px!important;padding:8px 10px!important;border-bottom:1px solid rgba(90,150,230,.17)!important;background:#071122c7!important}body.terminal-active .orderbook__title,body.gp-terminal-active .orderbook__title,body.gp-device-phone.terminal-active .orderbook__title,body.gp-device-phone.gp-terminal-active .orderbook__title{flex:1 1 auto!important;min-width:0!important;color:#f5fbff!important;font-size:17px!important;font-weight:950!important;letter-spacing:.03em!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}body.terminal-active .orderbook__modes,body.gp-terminal-active .orderbook__modes,body.gp-device-phone.terminal-active .orderbook__modes,body.gp-device-phone.gp-terminal-active .orderbook__modes{display:inline-flex!important;gap:4px!important;flex:0 0 auto!important}body.terminal-active .orderbook__modes .btn,body.gp-terminal-active .orderbook__modes .btn,body.gp-device-phone.terminal-active .orderbook__modes .btn,body.gp-device-phone.gp-terminal-active .orderbook__modes .btn{width:34px!important;height:34px!important;min-width:34px!important;padding:0!important;border-radius:11px!important;font-size:14px!important}body.terminal-active .orderbook__depth,body.gp-terminal-active .orderbook__depth,body.gp-device-phone.terminal-active .orderbook__depth,body.gp-device-phone.gp-terminal-active .orderbook__depth{flex:0 0 42px!important;height:42px!important;min-height:42px!important;padding:6px 14px!important;border-bottom:1px solid rgba(90,150,230,.13)!important}body.terminal-active .orderbook__content,body.gp-terminal-active .orderbook__content,body.gp-device-phone.terminal-active .orderbook__content,body.gp-device-phone.gp-terminal-active .orderbook__content{flex:1 1 auto!important;min-height:0!important;max-height:none!important;overflow:auto!important;-webkit-overflow-scrolling:touch!important;padding-bottom:8px!important}body.terminal-active #levels-summary,body.gp-terminal-active #levels-summary,body.gp-device-phone.terminal-active #levels-summary,body.gp-device-phone.gp-terminal-active #levels-summary{display:block!important;flex:0 0 auto!important;max-height:28%!important;overflow:auto!important;border-top:1px solid rgba(90,150,230,.14)!important}.info-panel{z-index:2147481900!important}.info-panel__content{top:calc(var(--gp-safe-top, 0px) + 8px)!important;right:8px!important;bottom:calc(var(--gp-safe-bottom, 0px) + 76px)!important;left:8px!important;max-height:none!important;border-radius:22px!important}.info-panel__header{min-height:58px!important;padding:8px 12px!important}.info-panel__close{width:44px!important;height:44px!important;min-width:44px!important}.info-panel__body{max-height:calc(100% - 58px)!important;padding:14px!important}.info-item{margin-bottom:10px!important;padding:14px!important;border:1px solid rgba(255,255,255,.06)!important;border-radius:14px!important;background:#ffffff0b!important}.info-item h3{font-size:15px!important}.info-item p{font-size:13px!important;line-height:1.55!important}body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open,body.gp-device-phone.terminal-active .tools-panel.open,body.gp-device-phone.gp-terminal-active .tools-panel.open{position:fixed!important;top:calc(var(--gp-safe-top, 0px) + 8px)!important;right:8px!important;bottom:calc(var(--gp-safe-bottom, 0px) + 76px)!important;left:8px!important;display:flex!important;flex-direction:column!important;width:auto!important;height:auto!important;max-width:none!important;max-height:none!important;z-index:2147481850!important;border-radius:22px!important;border:1px solid rgba(58,145,255,.3)!important;background:radial-gradient(circle at 12% 0%,rgba(0,145,255,.18),transparent 28%),#040a17fd!important;box-shadow:0 30px 90px #000000a8,0 0 0 1px #ffffff0b inset!important;opacity:1!important;visibility:visible!important;transform:none!important;overflow:hidden!important;pointer-events:auto!important}body.terminal-active .tools-panel.open .tools-panel__header,body.gp-terminal-active .tools-panel.open .tools-panel__header,body.gp-device-phone.terminal-active .tools-panel.open .tools-panel__header,body.gp-device-phone.gp-terminal-active .tools-panel.open .tools-panel__header{min-height:58px!important;padding:9px 12px!important;flex:0 0 58px!important;border-bottom:1px solid rgba(90,150,230,.17)!important;background:#071122c7!important}body.terminal-active .tools-panel.open .tools-panel__header strong,body.gp-terminal-active .tools-panel.open .tools-panel__header strong,body.gp-device-phone.terminal-active .tools-panel.open .tools-panel__header strong,body.gp-device-phone.gp-terminal-active .tools-panel.open .tools-panel__header strong{font-size:16px!important;letter-spacing:.05em!important}body.terminal-active .tools-panel.open .tools-panel__header span,body.gp-terminal-active .tools-panel.open .tools-panel__header span,body.gp-device-phone.terminal-active .tools-panel.open .tools-panel__header span,body.gp-device-phone.gp-terminal-active .tools-panel.open .tools-panel__header span{margin-top:3px!important;font-size:12px!important}body.terminal-active .tools-panel.open .tools-panel__close,body.gp-terminal-active .tools-panel.open .tools-panel__close,body.gp-device-phone.terminal-active .tools-panel.open .tools-panel__close,body.gp-device-phone.gp-terminal-active .tools-panel.open .tools-panel__close{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:44px!important;height:44px!important;min-width:44px!important;border-radius:15px!important;font-size:22px!important}body.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-device-phone.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-device-phone.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body{display:grid!important;grid-template-columns:1fr!important;gap:10px!important;flex:1 1 auto!important;min-height:0!important;max-height:none!important;padding:12px!important;overflow:auto!important;-webkit-overflow-scrolling:touch!important}body.terminal-active .gp-mobile-tools-shortcuts,body.gp-terminal-active .gp-mobile-tools-shortcuts,body.gp-device-phone.terminal-active .gp-mobile-tools-shortcuts,body.gp-device-phone.gp-terminal-active .gp-mobile-tools-shortcuts{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:8px!important;padding:0 0 2px!important}body.terminal-active .gp-mobile-tools-shortcuts button,body.gp-terminal-active .gp-mobile-tools-shortcuts button,body.gp-device-phone.terminal-active .gp-mobile-tools-shortcuts button,body.gp-device-phone.gp-terminal-active .gp-mobile-tools-shortcuts button{min-width:0!important;min-height:74px!important;padding:9px 7px!important;display:grid!important;place-items:center!important;gap:3px!important;border-radius:15px!important;border:1px solid rgba(64,150,255,.25)!important;background:linear-gradient(180deg,#1055b538,#040e1fc2)!important;color:#eaf5ff!important;text-align:center!important;cursor:pointer!important}body.terminal-active .gp-mobile-tools-shortcuts span,body.gp-terminal-active .gp-mobile-tools-shortcuts span,body.gp-device-phone.terminal-active .gp-mobile-tools-shortcuts span,body.gp-device-phone.gp-terminal-active .gp-mobile-tools-shortcuts span{color:#21e5c4!important;font-size:17px!important;line-height:1!important}body.terminal-active .gp-mobile-tools-shortcuts strong,body.gp-terminal-active .gp-mobile-tools-shortcuts strong,body.gp-device-phone.terminal-active .gp-mobile-tools-shortcuts strong,body.gp-device-phone.gp-terminal-active .gp-mobile-tools-shortcuts strong{max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;color:#fff!important;font-size:11px!important;font-weight:950!important;white-space:nowrap!important}body.terminal-active .gp-mobile-tools-shortcuts small,body.gp-terminal-active .gp-mobile-tools-shortcuts small,body.gp-device-phone.terminal-active .gp-mobile-tools-shortcuts small,body.gp-device-phone.gp-terminal-active .gp-mobile-tools-shortcuts small{max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;color:#deebfa94!important;font-size:9px!important;font-weight:750!important;white-space:nowrap!important}body.terminal-active .gp-of-slider,body.gp-terminal-active .gp-of-slider,body.gp-device-phone.terminal-active .gp-of-slider,body.gp-device-phone.gp-terminal-active .gp-of-slider{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:7px 10px!important;align-items:center!important;min-height:58px!important;padding:10px 12px!important;border-radius:14px!important;border:1px solid rgba(255,255,255,.07)!important;background:#ffffff0b!important;color:#e7f1ff!important;font-size:13px!important;font-weight:850!important}body.terminal-active .gp-of-slider span,body.gp-terminal-active .gp-of-slider span,body.gp-device-phone.terminal-active .gp-of-slider span,body.gp-device-phone.gp-terminal-active .gp-of-slider span{color:#67d8ff!important;font:900 11px/1 JetBrains Mono,monospace!important}body.terminal-active .gp-of-slider input,body.gp-terminal-active .gp-of-slider input,body.gp-device-phone.terminal-active .gp-of-slider input,body.gp-device-phone.gp-terminal-active .gp-of-slider input{grid-column:1 / -1!important;width:100%!important;max-width:100%!important;height:28px!important;accent-color:#2d8cff!important}body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select,body.gp-device-phone.terminal-active .gp-of-select,body.gp-device-phone.gp-terminal-active .gp-of-select,body.terminal-active .gp-of-switch-row,body.gp-terminal-active .gp-of-switch-row,body.gp-device-phone.terminal-active .gp-of-switch-row,body.gp-device-phone.gp-terminal-active .gp-of-switch-row,body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row,body.gp-device-phone.terminal-active .gp-layer-row,body.gp-device-phone.gp-terminal-active .gp-layer-row{min-height:50px!important;padding:10px 12px!important;border-radius:14px!important;border:1px solid rgba(255,255,255,.07)!important;background:#ffffff0b!important;color:#e7f1ff!important;font-size:13px!important;font-weight:850!important}body.terminal-active .gp-of-select select,body.gp-terminal-active .gp-of-select select,body.gp-device-phone.terminal-active .gp-of-select select,body.gp-device-phone.gp-terminal-active .gp-of-select select{margin-top:8px!important;width:100%!important;height:40px!important;border-radius:12px!important;border:1px solid rgba(90,150,230,.23)!important;background:#071225!important;color:#fff!important;font-size:13px!important}body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.gp-device-phone.terminal-active .gp-of-mode-grid,body.gp-device-phone.gp-terminal-active .gp-of-mode-grid,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions,body.gp-device-phone.terminal-active .gp-of-actions,body.gp-device-phone.gp-terminal-active .gp-of-actions{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}body.terminal-active .gp-of-mode-grid button,body.gp-terminal-active .gp-of-mode-grid button,body.gp-device-phone.terminal-active .gp-of-mode-grid button,body.gp-device-phone.gp-terminal-active .gp-of-mode-grid button,body.terminal-active .gp-of-actions button,body.gp-terminal-active .gp-of-actions button,body.gp-device-phone.terminal-active .gp-of-actions button,body.gp-device-phone.gp-terminal-active .gp-of-actions button,body.terminal-active .tool-toggle,body.gp-terminal-active .tool-toggle,body.gp-device-phone.terminal-active .tool-toggle,body.gp-device-phone.gp-terminal-active .tool-toggle,body.terminal-active .gp-mini-switch,body.gp-terminal-active .gp-mini-switch,body.gp-device-phone.terminal-active .gp-mini-switch,body.gp-device-phone.gp-terminal-active .gp-mini-switch{min-height:42px!important;border-radius:13px!important;font-size:12px!important;font-weight:950!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles,body.gp-device-phone.terminal-active .gp-layer-toggles,body.gp-device-phone.gp-terminal-active .gp-layer-toggles{display:grid!important;gap:8px!important}body.gp-device-phone.gp-mobile-portrait.terminal-active .bottom-nav,body.gp-device-phone.gp-mobile-portrait.gp-terminal-active .bottom-nav{display:flex!important;position:fixed!important;left:0!important;right:0!important;bottom:0!important;z-index:2147481700!important}}@media(max-width:920px)and (orientation:landscape){body.terminal-active .gp-mobile-quick-rail,body.gp-terminal-active .gp-mobile-quick-rail{grid-area:nav!important;order:initial!important;min-height:32px!important;max-height:32px!important;flex:initial!important}body.terminal-active .gp-mobile-quick-rail button,body.gp-terminal-active .gp-mobile-quick-rail button{height:25px!important;font-size:9px!important;padding:0 8px!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{display:none!important}body.terminal-active .main,body.gp-terminal-active .main{grid-area:chart!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar,body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open,.info-panel__content{bottom:calc(var(--gp-safe-bottom, 0px) + 8px)!important}body.terminal-active .bottom-nav,body.gp-terminal-active .bottom-nav{display:none!important}}.gp-mobile-action-dock,.gp-mobile-tool-shortcuts{display:none}@media(max-width:920px),(hover:none)and (pointer:coarse){body.terminal-active #app,body.gp-terminal-active #app{--gp-phone-safe-bottom: env(safe-area-inset-bottom, 0px)}body.terminal-active .gp-mobile-action-dock,body.gp-terminal-active .gp-mobile-action-dock{order:2!important;flex:0 0 36px!important;width:100%!important;min-height:36px!important;max-height:36px!important;display:flex!important;align-items:center!important;gap:6px!important;padding:3px 4px!important;margin:0!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important;background:linear-gradient(90deg,#020b19f5,#061328f0)!important;border:1px solid rgba(0,224,255,.14)!important;border-radius:12px!important;box-shadow:0 10px 28px #00000047!important}body.terminal-active .gp-mobile-action-dock::-webkit-scrollbar,body.gp-terminal-active .gp-mobile-action-dock::-webkit-scrollbar{display:none!important}body.terminal-active .gp-mobile-action-dock button,body.gp-terminal-active .gp-mobile-action-dock button,body.terminal-active .gp-mobile-tool-shortcuts button,body.gp-terminal-active .gp-mobile-tool-shortcuts button{appearance:none!important;-webkit-appearance:none!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:5px!important;flex:1 0 auto!important;height:28px!important;min-width:max-content!important;padding:0 10px!important;border:1px solid rgba(0,224,255,.24)!important;border-radius:10px!important;background:linear-gradient(135deg,#0076ff2e,#00e0ff1f)!important;color:#eaf7ff!important;font:900 10px/1 Inter,-apple-system,BlinkMacSystemFont,sans-serif!important;letter-spacing:.02em!important;white-space:nowrap!important;box-shadow:inset 0 1px #ffffff0f,0 0 18px #00e0ff0d!important}body.terminal-active .gp-mobile-action-dock button span,body.gp-terminal-active .gp-mobile-action-dock button span,body.terminal-active .gp-mobile-tool-shortcuts button span,body.gp-terminal-active .gp-mobile-tool-shortcuts button span{font-size:12px!important;line-height:1!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{display:none!important}body.terminal-active .main,body.gp-terminal-active .main{order:3!important}body.terminal-active .bottom-nav,body.gp-terminal-active .bottom-nav{display:flex!important;position:fixed!important;left:8px!important;right:8px!important;bottom:calc(env(safe-area-inset-bottom,0px) + 8px)!important;height:58px!important;min-height:58px!important;padding:5px!important;border-radius:22px!important;z-index:9800!important;background:#040914f0!important;border:1px solid rgba(75,135,255,.24)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;box-shadow:0 18px 48px #0000006b,0 0 0 1px #ffffff0a inset!important}body.terminal-active .bottom-nav__btn,body.gp-terminal-active .bottom-nav__btn{height:48px!important;min-height:48px!important;border-radius:16px!important}body.terminal-active .bottom-nav__icon,body.gp-terminal-active .bottom-nav__icon{font-size:17px!important;line-height:1!important}body.terminal-active .bottom-nav__label,body.gp-terminal-active .bottom-nav__label{font-size:9px!important;font-weight:800!important;line-height:1.05!important}body.gp-device-phone.terminal-active.gp-mobile-book-open .sidebar,body.gp-device-phone.gp-terminal-active.gp-mobile-book-open .sidebar,body.terminal-active.gp-mobile-book-open .sidebar,body.gp-terminal-active.gp-mobile-book-open .sidebar{position:fixed!important;inset:calc(env(safe-area-inset-top,0px) + 10px) 10px calc(env(safe-area-inset-bottom,0px) + 76px) 10px!important;z-index:2147481800!important;display:flex!important;flex-direction:column!important;width:auto!important;height:auto!important;min-height:0!important;max-height:none!important;flex:none!important;padding:0!important;transform:none!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important;border-radius:22px!important;border:1px solid rgba(0,224,255,.28)!important;background:linear-gradient(180deg,#050e1ffc,#020610fe)!important;box-shadow:0 26px 90px #000000b8,0 0 0 1px #ffffff0a inset!important;overflow:hidden!important}body.gp-device-phone.terminal-active.gp-mobile-book-open .sidebar:before,body.gp-device-phone.gp-terminal-active.gp-mobile-book-open .sidebar:before,body.terminal-active.gp-mobile-book-open .sidebar:before,body.gp-terminal-active.gp-mobile-book-open .sidebar:before{content:"";position:fixed;inset:0;z-index:-1;background:#0000008c;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}body.terminal-active.gp-mobile-book-open .sidebar__close,body.gp-terminal-active.gp-mobile-book-open .sidebar__close{display:inline-flex!important;align-items:center!important;justify-content:center!important;flex:0 0 42px!important;width:42px!important;min-width:42px!important;height:42px!important;min-height:42px!important;margin:0!important;border-radius:14px!important;border:1px solid rgba(255,255,255,.14)!important;background:#ffffff14!important;color:#fff!important;font-size:0!important}body.terminal-active.gp-mobile-book-open .sidebar__close:before,body.gp-terminal-active.gp-mobile-book-open .sidebar__close:before{content:"×";font-size:28px;line-height:1;font-weight:700}body.terminal-active.gp-mobile-book-open .orderbook__header,body.gp-terminal-active.gp-mobile-book-open .orderbook__header{display:flex!important;align-items:center!important;gap:8px!important;height:58px!important;min-height:58px!important;flex:0 0 58px!important;padding:8px 10px!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:#060f20f5!important}body.terminal-active.gp-mobile-book-open .orderbook__title,body.gp-terminal-active.gp-mobile-book-open .orderbook__title{font-size:16px!important;font-weight:950!important;letter-spacing:.02em!important;color:#f3fbff!important;flex:1 1 auto!important;min-width:0!important}body.terminal-active.gp-mobile-book-open .orderbook__modes,body.gp-terminal-active.gp-mobile-book-open .orderbook__modes{display:inline-flex!important;flex:0 0 auto!important;gap:5px!important}body.terminal-active.gp-mobile-book-open .orderbook__modes .btn,body.gp-terminal-active.gp-mobile-book-open .orderbook__modes .btn{width:34px!important;min-width:34px!important;height:34px!important;min-height:34px!important;border-radius:11px!important;padding:0!important;font-size:14px!important}body.terminal-active.gp-mobile-book-open .orderbook__depth,body.gp-terminal-active.gp-mobile-book-open .orderbook__depth{display:flex!important;align-items:center!important;gap:8px!important;height:42px!important;min-height:42px!important;flex:0 0 42px!important;padding:6px 12px!important;border-bottom:1px solid rgba(255,255,255,.06)!important;background:#020712b8!important}body.terminal-active.gp-mobile-book-open .orderbook__depth label,body.gp-terminal-active.gp-mobile-book-open .orderbook__depth label{color:#e8f2ffb8!important;font-size:12px!important;font-weight:850!important}body.terminal-active.gp-mobile-book-open .orderbook__depth select,body.gp-terminal-active.gp-mobile-book-open .orderbook__depth select{height:30px!important;min-height:30px!important;padding:0 28px 0 10px!important;border-radius:10px!important;border:1px solid rgba(0,224,255,.22)!important;background:#071225!important;color:#fff!important;font-size:12px!important;font-weight:850!important}body.terminal-active.gp-mobile-book-open .orderbook__content,body.gp-terminal-active.gp-mobile-book-open .orderbook__content{flex:1 1 auto!important;min-height:0!important;height:auto!important;max-height:none!important;overflow:auto!important;padding-bottom:10px!important;-webkit-overflow-scrolling:touch!important}body.terminal-active.gp-mobile-book-open .dom-ladder__row,body.gp-terminal-active.gp-mobile-book-open .dom-ladder__row,body.terminal-active.gp-mobile-book-open .orderbook__row,body.gp-terminal-active.gp-mobile-book-open .orderbook__row{min-height:24px!important;height:24px!important;line-height:24px!important;font-size:12px!important}body.terminal-active.gp-mobile-book-open #levels-summary,body.gp-terminal-active.gp-mobile-book-open #levels-summary{display:block!important;flex:0 0 auto!important;max-height:32vh!important;overflow:auto!important;-webkit-overflow-scrolling:touch!important}body.terminal-active .info-panel,body.gp-terminal-active .info-panel{z-index:2147481900!important}body.terminal-active .info-panel.open .info-panel__content,body.gp-terminal-active .info-panel.open .info-panel__content{top:calc(env(safe-area-inset-top,0px) + 10px)!important;bottom:calc(env(safe-area-inset-bottom,0px) + 76px)!important;left:10px!important;right:10px!important;border-radius:22px!important;max-height:none!important}body.terminal-active .info-panel__header,body.gp-terminal-active .info-panel__header{min-height:58px!important;padding:8px 10px 8px 14px!important;background:#070f1ffa!important}body.terminal-active .info-panel__header h2,body.gp-terminal-active .info-panel__header h2{font-size:18px!important;line-height:1.05!important;color:#f3fbff!important}body.terminal-active .info-panel__close,body.gp-terminal-active .info-panel__close{width:44px!important;min-width:44px!important;height:44px!important;min-height:44px!important;border-radius:14px!important;color:#fff!important;background:#ffffff14!important;border:1px solid rgba(255,255,255,.14)!important;opacity:1!important}body.terminal-active .info-panel__body,body.gp-terminal-active .info-panel__body{max-height:calc(100% - 58px)!important;padding:14px!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important}body.terminal-active .info-item,body.gp-terminal-active .info-item{border-radius:16px!important;padding:15px!important;margin-bottom:12px!important;background:#ffffff0e!important;border:1px solid rgba(255,255,255,.06)!important}body.terminal-active .info-item h3,body.gp-terminal-active .info-item h3{font-size:15px!important;color:#3c8cff!important}body.terminal-active .info-item p,body.gp-terminal-active .info-item p{font-size:13px!important;line-height:1.5!important;color:#ebf1ffb8!important}body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open{position:fixed!important;top:calc(env(safe-area-inset-top,0px) + 10px)!important;left:10px!important;right:10px!important;bottom:calc(env(safe-area-inset-bottom,0px) + 76px)!important;z-index:2147481700!important;width:auto!important;height:auto!important;max-width:none!important;max-height:none!important;display:flex!important;flex-direction:column!important;overflow:hidden!important;border-radius:22px!important;border:1px solid rgba(0,224,255,.28)!important;background:linear-gradient(180deg,#060f20fc,#030711fe)!important;box-shadow:0 26px 90px #000000b8,0 0 0 1px #ffffff0a inset!important;color:#edf7ff!important}body.terminal-active .tools-panel.open .tools-panel__header,body.gp-terminal-active .tools-panel.open .tools-panel__header{flex:0 0 auto!important;min-height:58px!important;padding:10px 10px 10px 14px!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:#071022fa!important}body.terminal-active .tools-panel.open .tools-panel__header strong,body.gp-terminal-active .tools-panel.open .tools-panel__header strong{font-size:16px!important;line-height:1.1!important;letter-spacing:.04em!important;color:#f2fbff!important}body.terminal-active .tools-panel.open .tools-panel__header span,body.gp-terminal-active .tools-panel.open .tools-panel__header span{font-size:11px!important;line-height:1.15!important;color:#e8f1ff99!important}body.terminal-active .tools-panel.open .tools-panel__close,body.gp-terminal-active .tools-panel.open .tools-panel__close{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:44px!important;min-width:44px!important;height:44px!important;min-height:44px!important;border-radius:14px!important;border:1px solid rgba(255,255,255,.14)!important;background:#ffffff14!important;color:#fff!important;font-size:22px!important}body.terminal-active .tools-panel.open .tools-panel__body,body.gp-terminal-active .tools-panel.open .tools-panel__body,body.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body{flex:1 1 auto!important;min-height:0!important;max-height:none!important;display:block!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;padding:12px!important}body.terminal-active .gp-mobile-tool-shortcuts,body.gp-terminal-active .gp-mobile-tool-shortcuts{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;margin:0 0 12px!important;padding:10px!important;border-radius:18px!important;border:1px solid rgba(0,224,255,.18)!important;background:#00e0ff0e!important}body.terminal-active .gp-mobile-tool-shortcuts button,body.gp-terminal-active .gp-mobile-tool-shortcuts button{width:100%!important;height:36px!important;padding:0 8px!important;font-size:11px!important}body.terminal-active .gp-of-slider,body.gp-terminal-active .gp-of-slider{display:grid!important;grid-template-columns:minmax(108px,34%) minmax(0,1fr)!important;align-items:center!important;gap:10px!important;min-height:42px!important;margin:0 0 8px!important;padding:10px!important;border-radius:15px!important;background:#ffffff0b!important;border:1px solid rgba(255,255,255,.06)!important;color:#ebf2ffe0!important;font:850 12px/1.2 Inter,-apple-system,BlinkMacSystemFont,sans-serif!important}body.terminal-active .gp-of-slider span,body.gp-terminal-active .gp-of-slider span{color:#7edcff!important;font-size:11px!important;font-weight:950!important}body.terminal-active .gp-of-slider input[type=range],body.gp-terminal-active .gp-of-slider input[type=range]{width:100%!important;min-width:0!important;height:28px!important;accent-color:#1f8fff!important}body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select,body.terminal-active .gp-of-switch-row,body.gp-terminal-active .gp-of-switch-row,body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions{margin:0 0 8px!important;padding:10px!important;border-radius:15px!important;background:#ffffff0b!important;border:1px solid rgba(255,255,255,.06)!important;color:#ebf2ffe6!important;font:850 12px/1.2 Inter,-apple-system,BlinkMacSystemFont,sans-serif!important}body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select{display:grid!important;grid-template-columns:minmax(96px,32%) minmax(0,1fr)!important;align-items:center!important;gap:10px!important}body.terminal-active .gp-of-select select,body.gp-terminal-active .gp-of-select select{appearance:none!important;-webkit-appearance:none!important;width:100%!important;min-width:0!important;height:36px!important;padding:0 34px 0 10px!important;border-radius:12px!important;border:1px solid rgba(0,224,255,.22)!important;background:linear-gradient(180deg,#0a1830,#071020)!important;color:#f6fbff!important;font:900 12px/1 Inter,-apple-system,BlinkMacSystemFont,sans-serif!important;box-shadow:inset 0 1px #ffffff0d!important}body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}body.terminal-active .gp-of-mode-grid button,body.gp-terminal-active .gp-of-mode-grid button,body.terminal-active .gp-of-actions button,body.gp-terminal-active .gp-of-actions button,body.terminal-active .gp-mini-switch,body.gp-terminal-active .gp-mini-switch{appearance:none!important;-webkit-appearance:none!important;min-height:36px!important;border-radius:12px!important;border:1px solid rgba(0,224,255,.18)!important;background:#ffffff12!important;color:#f5fbff!important;font:950 12px/1 Inter,-apple-system,BlinkMacSystemFont,sans-serif!important}body.terminal-active .gp-of-mode-grid button.active,body.gp-terminal-active .gp-of-mode-grid button.active,body.terminal-active .gp-prime-action,body.gp-terminal-active .gp-prime-action,body.terminal-active .gp-mini-switch.active,body.gp-terminal-active .gp-mini-switch.active{background:linear-gradient(135deg,#1f86ff,#00dfc5)!important;color:#001018!important;border-color:#00e0ff73!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{display:grid!important;grid-template-columns:1fr!important;gap:8px!important;margin-top:10px!important}body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row{display:grid!important;grid-template-columns:minmax(0,1fr) 92px!important;align-items:center!important;gap:10px!important;min-height:46px!important;padding:8px 10px!important;border-radius:16px!important;background:#ffffff0b!important;border:1px solid rgba(255,255,255,.06)!important}body.terminal-active .gp-layer-row span,body.gp-terminal-active .gp-layer-row span{font-size:13px!important;line-height:1.15!important;font-weight:850!important;color:#f0f7ffe0!important}body.terminal-active .gp-layer-row .tool-toggle,body.gp-terminal-active .gp-layer-row .tool-toggle{width:92px!important;min-width:92px!important;height:34px!important;min-height:34px!important;border-radius:999px!important;font-size:11px!important;font-weight:950!important}}@media(max-width:420px)and (orientation:portrait){body.terminal-active .gp-mobile-action-dock,body.gp-terminal-active .gp-mobile-action-dock{flex-basis:34px!important;min-height:34px!important;max-height:34px!important;gap:4px!important;padding:3px!important}body.terminal-active .gp-mobile-action-dock button,body.gp-terminal-active .gp-mobile-action-dock button{height:28px!important;padding-inline:8px!important;font-size:9.5px!important}}@media(max-width:920px)and (orientation:landscape){body.terminal-active #app,body.gp-terminal-active #app{grid-template-columns:minmax(0,1fr) clamp(230px,32vw,330px)!important;grid-template-rows:auto 32px minmax(0,1fr)!important;grid-template-areas:"header header" "quick quick" "chart dom"!important}body.terminal-active .gp-mobile-action-dock,body.gp-terminal-active .gp-mobile-action-dock{grid-area:quick!important;order:initial!important;flex:initial!important;min-height:32px!important;max-height:32px!important;height:32px!important;padding:2px 4px!important}body.terminal-active .gp-mobile-action-dock button,body.gp-terminal-active .gp-mobile-action-dock button{height:27px!important;font-size:9.5px!important}body.terminal-active .main,body.gp-terminal-active .main{grid-area:chart!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{grid-area:dom!important;display:flex!important}body.terminal-active.gp-mobile-book-open .sidebar,body.gp-terminal-active.gp-mobile-book-open .sidebar{grid-area:auto!important}body.terminal-active .bottom-nav,body.gp-terminal-active .bottom-nav{height:46px!important;min-height:46px!important;left:10px!important;right:10px!important;bottom:calc(env(safe-area-inset-bottom,0px) + 6px)!important;border-radius:18px!important}body.terminal-active .bottom-nav__btn,body.gp-terminal-active .bottom-nav__btn{height:36px!important;min-height:36px!important;border-radius:13px!important}body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open,body.terminal-active .info-panel.open .info-panel__content,body.gp-terminal-active .info-panel.open .info-panel__content,body.terminal-active.gp-mobile-book-open .sidebar,body.gp-terminal-active.gp-mobile-book-open .sidebar{bottom:calc(env(safe-area-inset-bottom,0px) + 58px)!important}body.terminal-active .tools-panel.open .tools-panel__body,body.gp-terminal-active .tools-panel.open .tools-panel__body{padding:10px!important}body.terminal-active .gp-mobile-tool-shortcuts,body.gp-terminal-active .gp-mobile-tool-shortcuts{grid-template-columns:repeat(4,minmax(0,1fr))!important;padding:8px!important}body.terminal-active .gp-of-slider,body.gp-terminal-active .gp-of-slider,body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select,body.terminal-active .gp-of-switch-row,body.gp-terminal-active .gp-of-switch-row,body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions,body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row{min-height:36px!important;padding:7px 9px!important;margin-bottom:6px!important}}@media(max-width:920px)and (orientation:landscape){body.terminal-active .sidebar,body.gp-terminal-active .sidebar,body.gp-device-phone.terminal-active .sidebar,body.gp-device-phone.gp-terminal-active .sidebar{grid-area:dom!important;position:relative!important;inset:auto!important;display:flex!important;flex-direction:column!important;width:100%!important;height:100%!important;min-height:0!important;max-height:none!important;opacity:1!important;transform:none!important;pointer-events:auto!important;z-index:auto!important;border-radius:12px!important}body.terminal-active .sidebar__close,body.gp-terminal-active .sidebar__close,body.gp-device-phone.terminal-active .sidebar__close,body.gp-device-phone.gp-terminal-active .sidebar__close{display:none!important}}@media(hover:none)and (pointer:coarse),(max-width:920px){body.terminal-active .bottom-nav,body.gp-terminal-active .bottom-nav,body.gp-device-phone.terminal-active .bottom-nav,body.gp-device-phone.gp-terminal-active .bottom-nav{display:flex!important;justify-content:flex-start!important;align-items:center!important;gap:7px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important;padding-left:8px!important;padding-right:8px!important;background:linear-gradient(180deg,#0b0d19f0,#060812fc)!important;border-top:1px solid rgba(72,126,210,.26)!important;box-shadow:0 -14px 44px #00000073,inset 0 1px #ffffff0a!important}body.terminal-active .bottom-nav::-webkit-scrollbar,body.gp-terminal-active .bottom-nav::-webkit-scrollbar,body.gp-device-phone.terminal-active .bottom-nav::-webkit-scrollbar,body.gp-device-phone.gp-terminal-active .bottom-nav::-webkit-scrollbar{display:none!important}body.terminal-active .bottom-nav__btn,body.gp-terminal-active .bottom-nav__btn,body.gp-device-phone.terminal-active .bottom-nav__btn,body.gp-device-phone.gp-terminal-active .bottom-nav__btn{flex:0 0 74px!important;min-width:74px!important;max-width:74px!important;height:52px!important;padding:5px 4px!important;border:1px solid transparent!important;border-radius:16px!important;color:#dbe5f5a8!important;background:transparent!important}body.terminal-active .bottom-nav__btn.active,body.gp-terminal-active .bottom-nav__btn.active,body.gp-device-phone.terminal-active .bottom-nav__btn.active,body.gp-device-phone.gp-terminal-active .bottom-nav__btn.active{color:#2f8cff!important;border-color:#2f8cff40!important;background:linear-gradient(180deg,#2677ff38,#13387d38)!important;box-shadow:inset 0 0 0 1px #ffffff09,0 10px 22px #00000029!important}body.terminal-active .bottom-nav__icon,body.gp-terminal-active .bottom-nav__icon,body.gp-device-phone.terminal-active .bottom-nav__icon,body.gp-device-phone.gp-terminal-active .bottom-nav__icon{font-size:18px!important;line-height:1!important}body.terminal-active .bottom-nav__label,body.gp-terminal-active .bottom-nav__label,body.gp-device-phone.terminal-active .bottom-nav__label,body.gp-device-phone.gp-terminal-active .bottom-nav__label{display:block!important;font-size:9px!important;line-height:1!important;font-weight:850!important;white-space:nowrap!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar,body.gp-device-phone.terminal-active .sidebar,body.gp-device-phone.gp-terminal-active .sidebar{position:fixed!important;top:calc(var(--gp-safe-top, 0px) + 8px)!important;left:9px!important;right:9px!important;bottom:calc(var(--gp-mobile-bottom, 72px) + 8px)!important;width:auto!important;height:auto!important;max-height:none!important;min-height:0!important;display:flex!important;flex-direction:column!important;transform:translateY(calc(100% + 32px)) scale(.98)!important;opacity:0!important;pointer-events:none!important;z-index:2147480900!important;border-radius:22px!important;border:1px solid rgba(80,145,255,.26)!important;background:linear-gradient(180deg,#09101ffc,#030813fe)!important;box-shadow:0 30px 90px #000000b8,0 0 0 1px #ffffff09 inset!important;overflow:hidden!important;transition:transform .24s ease,opacity .2s ease!important}body.terminal-active .sidebar.open,body.terminal-active .sidebar.active,body.gp-terminal-active .sidebar.open,body.gp-terminal-active .sidebar.active,body.gp-device-phone.terminal-active .sidebar.open,body.gp-device-phone.terminal-active .sidebar.active,body.gp-device-phone.gp-terminal-active .sidebar.open,body.gp-device-phone.gp-terminal-active .sidebar.active{transform:translateY(0) scale(1)!important;opacity:1!important;pointer-events:auto!important}body.terminal-active .sidebar__close,body.gp-terminal-active .sidebar__close,body.gp-device-phone.terminal-active .sidebar__close,body.gp-device-phone.gp-terminal-active .sidebar__close{display:inline-flex!important;align-items:center!important;justify-content:center!important;order:3!important;margin-left:auto!important;width:42px!important;min-width:42px!important;height:42px!important;min-height:42px!important;border-radius:15px!important;border:1px solid rgba(255,255,255,.14)!important;background:#ffffff14!important;color:transparent!important;font-size:0!important;box-shadow:none!important}body.terminal-active .sidebar__close:before,body.gp-terminal-active .sidebar__close:before,body.gp-device-phone.terminal-active .sidebar__close:before,body.gp-device-phone.gp-terminal-active .sidebar__close:before{content:"×";color:#f6fbff;font-size:25px;line-height:1;font-weight:800}body.terminal-active .orderbook__header,body.gp-terminal-active .orderbook__header,body.gp-device-phone.terminal-active .orderbook__header,body.gp-device-phone.gp-terminal-active .orderbook__header{position:sticky!important;top:0!important;z-index:2!important;display:flex!important;align-items:center!important;gap:8px!important;flex:0 0 58px!important;height:58px!important;min-height:58px!important;padding:8px 10px 8px 12px!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:#090e1cfa!important}body.terminal-active .orderbook__title,body.gp-terminal-active .orderbook__title,body.gp-device-phone.terminal-active .orderbook__title,body.gp-device-phone.gp-terminal-active .orderbook__title{order:1!important;flex:1 1 auto!important;color:#f6fbff!important;font-size:16px!important;font-weight:950!important;letter-spacing:.02em!important}body.terminal-active .orderbook__modes,body.gp-terminal-active .orderbook__modes,body.gp-device-phone.terminal-active .orderbook__modes,body.gp-device-phone.gp-terminal-active .orderbook__modes{order:2!important;display:flex!important;gap:5px!important;flex:0 0 auto!important}body.terminal-active .orderbook__modes .btn,body.gp-terminal-active .orderbook__modes .btn,body.gp-device-phone.terminal-active .orderbook__modes .btn,body.gp-device-phone.gp-terminal-active .orderbook__modes .btn{width:34px!important;min-width:34px!important;height:34px!important;min-height:34px!important;border-radius:12px!important;padding:0!important}body.terminal-active .orderbook__depth,body.gp-terminal-active .orderbook__depth,body.gp-device-phone.terminal-active .orderbook__depth,body.gp-device-phone.gp-terminal-active .orderbook__depth{flex:0 0 46px!important;min-height:46px!important;height:46px!important;padding:8px 12px!important;border-bottom:1px solid rgba(255,255,255,.06)!important;background:#ffffff06!important}body.terminal-active .orderbook__depth select,body.gp-terminal-active .orderbook__depth select,body.gp-device-phone.terminal-active .orderbook__depth select,body.gp-device-phone.gp-terminal-active .orderbook__depth select{height:34px!important;border-radius:11px!important;border:1px solid rgba(86,145,230,.26)!important;background:#0b1325!important;color:#edf6ff!important}body.terminal-active .orderbook__content,body.gp-terminal-active .orderbook__content,body.gp-device-phone.terminal-active .orderbook__content,body.gp-device-phone.gp-terminal-active .orderbook__content{flex:1 1 0!important;min-height:0!important;max-height:none!important;overflow:auto!important;-webkit-overflow-scrolling:touch!important}body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open,body.gp-device-phone.terminal-active .tools-panel.open,body.gp-device-phone.gp-terminal-active .tools-panel.open{position:fixed!important;top:calc(var(--gp-safe-top, 0px) + 8px)!important;left:9px!important;right:9px!important;bottom:calc(var(--gp-mobile-bottom, 72px) + 8px)!important;width:auto!important;max-width:none!important;max-height:none!important;height:auto!important;z-index:2147481000!important;display:flex!important;flex-direction:column!important;border-radius:22px!important;border:1px solid rgba(80,145,255,.26)!important;background:linear-gradient(180deg,#0a1120fc,#040913fe)!important;box-shadow:0 30px 90px #000000b8,0 0 0 1px #ffffff09 inset!important;overflow:hidden!important}body.terminal-active .tools-panel__header,body.gp-terminal-active .tools-panel__header,body.gp-device-phone.terminal-active .tools-panel__header,body.gp-device-phone.gp-terminal-active .tools-panel__header{flex:0 0 auto!important;min-height:60px!important;padding:10px 12px!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:#080d1bfa!important}body.terminal-active .tools-panel__header strong,body.gp-terminal-active .tools-panel__header strong,body.gp-device-phone.terminal-active .tools-panel__header strong,body.gp-device-phone.gp-terminal-active .tools-panel__header strong{color:#f7fbff!important;font-size:17px!important;letter-spacing:.04em!important}body.terminal-active .tools-panel__header span,body.gp-terminal-active .tools-panel__header span,body.gp-device-phone.terminal-active .tools-panel__header span,body.gp-device-phone.gp-terminal-active .tools-panel__header span{color:#e2ebf894!important;font-size:12px!important}body.terminal-active .tools-panel__close,body.gp-terminal-active .tools-panel__close,body.gp-device-phone.terminal-active .tools-panel__close,body.gp-device-phone.gp-terminal-active .tools-panel__close{display:inline-flex!important;width:42px!important;min-width:42px!important;height:42px!important;border-radius:15px!important;border:1px solid rgba(255,255,255,.14)!important;background:#ffffff14!important;color:#fff!important;font-size:22px!important}body.terminal-active .tools-panel.open .tools-panel__body,body.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel.open .tools-panel__body,body.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-device-phone.terminal-active .tools-panel.open .tools-panel__body,body.gp-device-phone.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-device-phone.gp-terminal-active .tools-panel.open .tools-panel__body,body.gp-device-phone.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body{display:grid!important;grid-template-columns:1fr!important;gap:11px!important;flex:1 1 0!important;min-height:0!important;max-height:none!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;padding:12px!important}body.terminal-active .gp-of-slider,body.gp-terminal-active .gp-of-slider,body.gp-device-phone.terminal-active .gp-of-slider,body.gp-device-phone.gp-terminal-active .gp-of-slider,body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select,body.gp-device-phone.terminal-active .gp-of-select,body.gp-device-phone.gp-terminal-active .gp-of-select,body.terminal-active .gp-of-switch-row,body.gp-terminal-active .gp-of-switch-row,body.gp-device-phone.terminal-active .gp-of-switch-row,body.gp-device-phone.gp-terminal-active .gp-of-switch-row,body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row,body.gp-device-phone.terminal-active .gp-layer-row,body.gp-device-phone.gp-terminal-active .gp-layer-row{min-width:0!important;padding:13px 14px!important;border:1px solid rgba(80,145,255,.13)!important;border-radius:16px!important;background:#ffffff0b!important;color:#eef6ffdb!important;font-size:14px!important;line-height:1.25!important}body.terminal-active .gp-of-slider input[type=range],body.gp-terminal-active .gp-of-slider input[type=range],body.gp-device-phone.terminal-active .gp-of-slider input[type=range],body.gp-device-phone.gp-terminal-active .gp-of-slider input[type=range]{width:100%!important;accent-color:#2f8cff!important;margin-top:8px!important}body.terminal-active .gp-of-select select,body.gp-terminal-active .gp-of-select select,body.gp-device-phone.terminal-active .gp-of-select select,body.gp-device-phone.gp-terminal-active .gp-of-select select{width:100%!important;height:42px!important;margin-top:8px!important;padding:0 12px!important;border-radius:14px!important;border:1px solid rgba(86,145,230,.26)!important;background:#0b1325!important;color:#edf6ff!important;font-size:14px!important}body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.gp-device-phone.terminal-active .gp-of-mode-grid,body.gp-device-phone.gp-terminal-active .gp-of-mode-grid,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions,body.gp-device-phone.terminal-active .gp-of-actions,body.gp-device-phone.gp-terminal-active .gp-of-actions{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:9px!important}body.terminal-active .gp-of-mode-grid button,body.gp-terminal-active .gp-of-mode-grid button,body.gp-device-phone.terminal-active .gp-of-mode-grid button,body.gp-device-phone.gp-terminal-active .gp-of-mode-grid button,body.terminal-active .gp-of-actions button,body.gp-terminal-active .gp-of-actions button,body.gp-device-phone.terminal-active .gp-of-actions button,body.gp-device-phone.gp-terminal-active .gp-of-actions button,body.terminal-active .gp-mini-switch,body.gp-terminal-active .gp-mini-switch,body.gp-device-phone.terminal-active .gp-mini-switch,body.gp-device-phone.gp-terminal-active .gp-mini-switch,body.terminal-active .tool-toggle,body.gp-terminal-active .tool-toggle,body.gp-device-phone.terminal-active .tool-toggle,body.gp-device-phone.gp-terminal-active .tool-toggle{min-height:44px!important;border-radius:14px!important;border:1px solid rgba(88,151,245,.18)!important;background:linear-gradient(180deg,#12223af5,#0a1427f5)!important;color:#eaf4ff!important;font-weight:900!important}body.terminal-active .tool-toggle.active,body.gp-terminal-active .tool-toggle.active,body.gp-device-phone.terminal-active .tool-toggle.active,body.gp-device-phone.gp-terminal-active .tool-toggle.active,body.terminal-active .gp-mini-switch.active,body.gp-terminal-active .gp-mini-switch.active,body.gp-device-phone.terminal-active .gp-mini-switch.active,body.gp-device-phone.gp-terminal-active .gp-mini-switch.active{background:linear-gradient(135deg,#1677ff,#10e1d0)!important;color:#02111d!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles,body.gp-device-phone.terminal-active .gp-layer-toggles,body.gp-device-phone.gp-terminal-active .gp-layer-toggles{display:grid!important;grid-template-columns:1fr!important;gap:10px!important}body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row,body.gp-device-phone.terminal-active .gp-layer-row,body.gp-device-phone.gp-terminal-active .gp-layer-row{display:grid!important;grid-template-columns:minmax(0,1fr) 92px!important;align-items:center!important;gap:10px!important}body.terminal-active .prime-indicator-modal,body.gp-terminal-active .prime-indicator-modal,body.gp-device-phone.terminal-active .prime-indicator-modal,body.gp-device-phone.gp-terminal-active .prime-indicator-modal{z-index:2147481100!important}}@media(hover:none)and (pointer:coarse)and (orientation:landscape),(max-width:920px)and (orientation:landscape){body.terminal-active .bottom-nav__btn,body.gp-terminal-active .bottom-nav__btn,body.gp-device-phone.terminal-active .bottom-nav__btn,body.gp-device-phone.gp-terminal-active .bottom-nav__btn{flex-basis:68px!important;min-width:68px!important;max-width:68px!important;height:42px!important}body.terminal-active .bottom-nav__label,body.gp-terminal-active .bottom-nav__label,body.gp-device-phone.terminal-active .bottom-nav__label,body.gp-device-phone.gp-terminal-active .bottom-nav__label{display:none!important}body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open,body.gp-device-phone.terminal-active .tools-panel.open,body.gp-device-phone.gp-terminal-active .tools-panel.open,body.terminal-active .sidebar.open,body.terminal-active .sidebar.active,body.gp-terminal-active .sidebar.open,body.gp-terminal-active .sidebar.active,body.gp-device-phone.terminal-active .sidebar.open,body.gp-device-phone.terminal-active .sidebar.active,body.gp-device-phone.gp-terminal-active .sidebar.open,body.gp-device-phone.gp-terminal-active .sidebar.active{top:calc(var(--gp-safe-top, 0px) + 6px)!important;bottom:calc(var(--gp-mobile-bottom, 54px) + 6px)!important;left:8px!important;right:8px!important}body.terminal-active .tools-panel.open .tools-panel__body,body.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel.open .tools-panel__body,body.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-device-phone.terminal-active .tools-panel.open .tools-panel__body,body.gp-device-phone.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-device-phone.gp-terminal-active .tools-panel.open .tools-panel__body,body.gp-device-phone.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles,body.gp-device-phone.terminal-active .gp-layer-toggles,body.gp-device-phone.gp-terminal-active .gp-layer-toggles{grid-column:1 / -1!important;grid-template-columns:repeat(2,minmax(0,1fr))!important}}.gp-mobile-quick-rail,.gp-mobile-action-dock,.gp-mobile-tools-shortcuts,.gp-mobile-tool-shortcuts{display:none}@media(hover:none)and (pointer:coarse),(max-width:920px){body.terminal-active,body.gp-terminal-active{--gp-mobile-sheet-bottom: calc(74px + env(safe-area-inset-bottom, 0px)) }body.terminal-active .gp-mobile-quick-rail,body.gp-terminal-active .gp-mobile-quick-rail,body.terminal-active .gp-mobile-action-dock,body.gp-terminal-active .gp-mobile-action-dock{order:2!important;display:flex!important;width:100%!important;min-height:42px!important;gap:8px!important;padding:5px 6px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important;border:1px solid rgba(62,137,245,.18)!important;border-radius:16px!important;background:linear-gradient(180deg,#040d1ceb,#050a16f5)!important;box-shadow:inset 0 1px #ffffff0a,0 10px 28px #00000038!important;z-index:9050!important}body.terminal-active .gp-mobile-quick-rail::-webkit-scrollbar,body.gp-terminal-active .gp-mobile-quick-rail::-webkit-scrollbar,body.terminal-active .gp-mobile-action-dock::-webkit-scrollbar,body.gp-terminal-active .gp-mobile-action-dock::-webkit-scrollbar{display:none!important}body.terminal-active .gp-mobile-quick-rail button,body.gp-terminal-active .gp-mobile-quick-rail button,body.terminal-active .gp-mobile-action-dock button,body.gp-terminal-active .gp-mobile-action-dock button{flex:0 0 auto!important;min-width:max-content!important;height:32px!important;padding:0 11px!important;border-radius:999px!important;border:1px solid rgba(75,146,255,.22)!important;background:#ffffff0b!important;color:#ebf6ffeb!important;font-size:11px!important;font-weight:950!important;letter-spacing:.01em!important;white-space:nowrap!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:6px!important}body.terminal-active .gp-mobile-quick-rail button:first-child,body.gp-terminal-active .gp-mobile-quick-rail button:first-child,body.terminal-active .gp-mobile-action-dock button:first-child,body.gp-terminal-active .gp-mobile-action-dock button:first-child{border-color:#00e6ff57!important;background:linear-gradient(135deg,#0084ff52,#00e0d02e)!important}body.terminal-active .gp-terminal-side,body.gp-terminal-active .gp-terminal-side{order:3!important}body.terminal-active .gp-market-overview,body.gp-terminal-active .gp-market-overview{order:4!important}body.terminal-active .main,body.gp-terminal-active .main{order:5!important}body.terminal-active .sidebar,body.gp-terminal-active .sidebar{order:6!important}body.terminal-active .tools-panel,body.gp-terminal-active .tools-panel{order:7!important}body.terminal-active .gp-terminal-bottom,body.gp-terminal-active .gp-terminal-bottom{order:8!important}body.terminal-active .tools-panel:not(.open),body.gp-terminal-active .tools-panel:not(.open){display:none!important;pointer-events:none!important}body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open{position:fixed!important;inset:calc(env(safe-area-inset-top,0px) + 8px) 8px var(--gp-mobile-sheet-bottom) 8px!important;width:auto!important;height:auto!important;max-width:none!important;max-height:none!important;display:flex!important;flex-direction:column!important;z-index:2147482500!important;border-radius:22px!important;border:1px solid rgba(76,151,255,.3)!important;background:linear-gradient(180deg,#090f1efe,#030711fe)!important;box-shadow:0 28px 90px #000000c2,inset 0 1px #ffffff0d!important;overflow:hidden!important}body.terminal-active .tools-panel.open .tools-panel__header,body.gp-terminal-active .tools-panel.open .tools-panel__header{position:sticky!important;top:0!important;z-index:3!important;min-height:62px!important;padding:10px 12px!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:#070d1bfb!important;display:flex!important;align-items:center!important;justify-content:space-between!important}body.terminal-active .tools-panel.open .tools-panel__close,body.gp-terminal-active .tools-panel.open .tools-panel__close,body.terminal-active .sidebar.open .sidebar__close,body.gp-terminal-active .sidebar.open .sidebar__close,body.terminal-active .sidebar.active .sidebar__close,body.gp-terminal-active .sidebar.active .sidebar__close{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:44px!important;min-width:44px!important;height:44px!important;min-height:44px!important;border-radius:16px!important;border:1px solid rgba(255,255,255,.15)!important;background:#ffffff14!important;color:#f8fbff!important;font-size:24px!important;font-weight:850!important;line-height:1!important;box-shadow:none!important}body.terminal-active .tools-panel.open .tools-panel__body,body.gp-terminal-active .tools-panel.open .tools-panel__body,body.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body{flex:1 1 auto!important;min-height:0!important;max-height:none!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;display:grid!important;grid-template-columns:1fr!important;gap:10px!important;padding:12px!important;color-scheme:dark!important}body.terminal-active .gp-mobile-tools-shortcuts,body.gp-terminal-active .gp-mobile-tools-shortcuts,body.terminal-active .gp-mobile-tool-shortcuts,body.gp-terminal-active .gp-mobile-tool-shortcuts{display:grid!important;grid-column:1 / -1!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:9px!important;padding:10px!important;border-radius:18px!important;border:1px solid rgba(0,224,255,.17)!important;background:linear-gradient(135deg,#0084ff1f,#00f5aa12)!important}body.terminal-active .gp-mobile-tools-shortcuts button,body.gp-terminal-active .gp-mobile-tools-shortcuts button,body.terminal-active .gp-mobile-tool-shortcuts button,body.gp-terminal-active .gp-mobile-tool-shortcuts button{min-height:56px!important;padding:9px 8px!important;border-radius:15px!important;border:1px solid rgba(85,153,255,.2)!important;background:#ffffff0b!important;color:#edf7ff!important;text-align:left!important}body.terminal-active .gp-mobile-tools-shortcuts span,body.gp-terminal-active .gp-mobile-tools-shortcuts span,body.terminal-active .gp-mobile-tool-shortcuts span,body.gp-terminal-active .gp-mobile-tool-shortcuts span{display:inline-flex!important;margin-right:6px!important;color:#36a3ff!important}body.terminal-active .gp-mobile-tools-shortcuts strong,body.gp-terminal-active .gp-mobile-tools-shortcuts strong,body.terminal-active .gp-mobile-tool-shortcuts strong,body.gp-terminal-active .gp-mobile-tool-shortcuts strong{display:block!important;font-size:12px!important;line-height:1.15!important}body.terminal-active .gp-mobile-tools-shortcuts small,body.gp-terminal-active .gp-mobile-tools-shortcuts small,body.terminal-active .gp-mobile-tool-shortcuts small,body.gp-terminal-active .gp-mobile-tool-shortcuts small{display:block!important;margin-top:3px!important;color:#e2eefa8c!important;font-size:10px!important}body.terminal-active .gp-of-slider,body.gp-terminal-active .gp-of-slider,body.terminal-active .gp-of-select,body.gp-terminal-active .gp-of-select,body.terminal-active .gp-of-switch-row,body.gp-terminal-active .gp-of-switch-row,body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row{min-width:0!important;padding:12px!important;border-radius:16px!important;border:1px solid rgba(83,147,238,.15)!important;background:#ffffff0b!important;color:#eef6ffe0!important;font-size:13px!important;line-height:1.25!important}body.terminal-active .gp-of-slider input[type=range],body.gp-terminal-active .gp-of-slider input[type=range]{-webkit-appearance:none!important;appearance:none!important;width:100%!important;height:7px!important;margin-top:10px!important;border-radius:999px!important;background:#ffffff2e!important;accent-color:#2f8cff!important}body.terminal-active .gp-of-slider input[type=range]::-webkit-slider-thumb,body.gp-terminal-active .gp-of-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;appearance:none!important;width:22px!important;height:22px!important;border-radius:50%!important;border:2px solid rgba(255,255,255,.92)!important;background:#2f8cff!important;box-shadow:0 0 0 5px #2f8cff26!important}body.terminal-active .gp-of-select select,body.gp-terminal-active .gp-of-select select{width:100%!important;height:44px!important;min-height:44px!important;margin-top:8px!important;padding:0 12px!important;border-radius:14px!important;border:1px solid rgba(85,153,255,.25)!important;background:#0b1426!important;color:#edf7ff!important;color-scheme:dark!important;font-size:14px!important;font-weight:800!important}body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:9px!important}body.terminal-active .gp-of-mode-grid button,body.gp-terminal-active .gp-of-mode-grid button,body.terminal-active .gp-of-actions button,body.gp-terminal-active .gp-of-actions button,body.terminal-active .gp-mini-switch,body.gp-terminal-active .gp-mini-switch,body.terminal-active .tool-toggle,body.gp-terminal-active .tool-toggle{min-height:44px!important;border-radius:14px!important;border:1px solid rgba(85,153,255,.2)!important;background:linear-gradient(180deg,#12223af5,#0a1427f5)!important;color:#eaf4ff!important;font-weight:950!important;color-scheme:dark!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{grid-column:1 / -1!important;display:grid!important;grid-template-columns:1fr!important;gap:9px!important}body.terminal-active .gp-layer-row,body.gp-terminal-active .gp-layer-row{display:grid!important;grid-template-columns:minmax(0,1fr) 92px!important;align-items:center!important;gap:10px!important}body.terminal-active .info-panel,body.gp-terminal-active .info-panel{z-index:2147482600!important}body.terminal-active .info-panel__content,body.gp-terminal-active .info-panel__content{position:fixed!important;top:calc(env(safe-area-inset-top,0px) + 8px)!important;left:8px!important;right:8px!important;bottom:var(--gp-mobile-sheet-bottom)!important;max-height:none!important;height:auto!important;border-radius:22px!important;border:1px solid rgba(76,151,255,.25)!important;background:linear-gradient(180deg,#0a0f1efc,#050812fc)!important;box-shadow:0 28px 90px #000000b8!important;overflow:hidden!important;transform:translateY(0)!important}body.terminal-active .info-panel__header,body.gp-terminal-active .info-panel__header{position:sticky!important;top:0!important;z-index:2!important;min-height:60px!important;padding:10px 14px!important;background:#080d1bfa!important;border-bottom:1px solid rgba(255,255,255,.08)!important}body.terminal-active .info-panel__close,body.gp-terminal-active .info-panel__close{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:44px!important;height:44px!important;border-radius:16px!important;border:1px solid rgba(255,255,255,.14)!important;background:#ffffff14!important;color:#fff!important;font-size:24px!important}body.terminal-active .info-panel__body,body.gp-terminal-active .info-panel__body{max-height:none!important;height:calc(100% - 60px)!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;padding:14px!important}body.terminal-active .info-item,body.gp-terminal-active .info-item{border-radius:16px!important;padding:16px!important;border:1px solid rgba(83,147,238,.13)!important;background:#ffffff0b!important}body.terminal-active .info-item h3,body.gp-terminal-active .info-item h3{font-size:16px!important;color:#2f8cff!important}body.terminal-active .info-item p,body.gp-terminal-active .info-item p{font-size:14px!important;line-height:1.55!important;color:#e7edf8b3!important}}@media(hover:none)and (pointer:coarse)and (orientation:portrait),(max-width:640px)and (orientation:portrait){body.terminal-active .sidebar:not(.open):not(.active),body.gp-terminal-active .sidebar:not(.open):not(.active){display:none!important}body.terminal-active .sidebar.open,body.terminal-active .sidebar.active,body.gp-terminal-active .sidebar.open,body.gp-terminal-active .sidebar.active{position:fixed!important;inset:calc(env(safe-area-inset-top,0px) + 8px) 8px var(--gp-mobile-sheet-bottom) 8px!important;width:auto!important;height:auto!important;max-height:none!important;min-height:0!important;display:flex!important;flex-direction:column!important;transform:translateY(0) scale(1)!important;opacity:1!important;pointer-events:auto!important;z-index:2147482400!important;border-radius:22px!important;border:1px solid rgba(76,151,255,.3)!important;background:linear-gradient(180deg,#09101ffe,#030813fe)!important;box-shadow:0 28px 90px #000000c2,inset 0 1px #ffffff0d!important;overflow:hidden!important}body.terminal-active .sidebar.open .orderbook__header,body.terminal-active .sidebar.active .orderbook__header,body.gp-terminal-active .sidebar.open .orderbook__header,body.gp-terminal-active .sidebar.active .orderbook__header{position:sticky!important;top:0!important;z-index:3!important;display:flex!important;align-items:center!important;gap:8px!important;min-height:60px!important;padding:8px 10px 8px 14px!important;background:#070d1bfb!important;border-bottom:1px solid rgba(255,255,255,.08)!important}body.terminal-active .sidebar.open .orderbook__title,body.terminal-active .sidebar.active .orderbook__title,body.gp-terminal-active .sidebar.open .orderbook__title,body.gp-terminal-active .sidebar.active .orderbook__title{flex:1 1 auto!important;font-size:17px!important;font-weight:950!important;color:#f8fbff!important}body.terminal-active .sidebar.open .orderbook__content,body.terminal-active .sidebar.active .orderbook__content,body.gp-terminal-active .sidebar.open .orderbook__content,body.gp-terminal-active .sidebar.active .orderbook__content{flex:1 1 auto!important;min-height:0!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;padding-bottom:14px!important}}@media(hover:none)and (pointer:coarse)and (orientation:landscape),(max-width:920px)and (orientation:landscape){body.terminal-active .tools-panel.open,body.gp-terminal-active .tools-panel.open{inset:calc(env(safe-area-inset-top,0px) + 6px) 8px calc(env(safe-area-inset-bottom,0px) + 8px) 8px!important}body.terminal-active .tools-panel.open .tools-panel__body,body.gp-terminal-active .tools-panel.open .tools-panel__body,body.terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel.open .tools-panel__body.gp-orderflow-body{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}body.terminal-active .gp-layer-toggles,body.gp-terminal-active .gp-layer-toggles{grid-column:1 / -1!important;grid-template-columns:repeat(2,minmax(0,1fr))!important}}body.terminal-active .gp-mobile-quick-rail [data-mobile-action=clean-chart],body.gp-terminal-active .gp-mobile-quick-rail [data-mobile-action=clean-chart],body.terminal-active .gp-mobile-action-dock [data-mobile-action=clean-chart],body.gp-terminal-active .gp-mobile-action-dock [data-mobile-action=clean-chart]{border-color:#ffd54a6b!important;background:linear-gradient(135deg,#ffc92c2e,#0084ff2e)!important;color:#fff8dc!important}@media(hover:none)and (pointer:coarse),(max-width:920px){body.terminal-active .tools-panel__header span,body.gp-terminal-active .tools-panel__header span{color:#e0eeff94!important}body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions{grid-column:1 / -1!important}}body.terminal-active .gp-of-mode-grid,body.gp-terminal-active .gp-of-mode-grid,body.terminal-active #gp-bookmap-mode,body.terminal-active #gp-atas-mode,body.gp-terminal-active #gp-bookmap-mode,body.gp-terminal-active #gp-atas-mode{display:none!important}body.terminal-active .tools-panel__header span,body.gp-terminal-active .tools-panel__header span{text-transform:none!important}body.terminal-active #gp-clean-chart-head-btn.gp-clean-chart-head-btn,body.gp-terminal-active #gp-clean-chart-head-btn.gp-clean-chart-head-btn{order:1!important;position:relative!important;z-index:112!important;height:36px!important;min-height:36px!important;padding:0 13px!important;border-radius:12px!important;border:1px solid rgba(0,224,255,.34)!important;background:linear-gradient(135deg,#006effc7,#00dbcd75)!important;color:#efffff!important;font:900 12px Inter,system-ui,sans-serif!important;white-space:nowrap!important;box-shadow:0 6px 18px #0000002e,0 0 14px #00e0ff1a!important}@media(hover:none)and (pointer:coarse),(max-width:920px){body.terminal-active #gp-clean-chart-head-btn.gp-clean-chart-head-btn,body.gp-terminal-active #gp-clean-chart-head-btn.gp-clean-chart-head-btn{height:34px!important;min-height:34px!important;padding:0 10px!important;font-size:11px!important;border-radius:999px!important}body.terminal-active .gp-mobile-quick-rail button[data-mobile-action=clean],body.gp-terminal-active .gp-mobile-quick-rail button[data-mobile-action=clean],body.terminal-active .gp-mobile-action-dock button[data-mobile-action=clean],body.gp-terminal-active .gp-mobile-action-dock button[data-mobile-action=clean]{border-color:#00f0d05c!important;background:linear-gradient(135deg,#0078ff47,#00f0d02e)!important;color:#f1ffff!important}body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions{grid-template-columns:repeat(2,minmax(0,1fr))!important}}body.terminal-active .gp-mobile-quick-rail [data-mobile-action=clean],body.gp-terminal-active .gp-mobile-quick-rail [data-mobile-action=clean],body.terminal-active .gp-mobile-action-dock [data-mobile-action=clean],body.gp-terminal-active .gp-mobile-action-dock [data-mobile-action=clean]{border-color:#ffd54a6b!important;background:linear-gradient(135deg,#ffc92c2e,#0084ff2e)!important;color:#fff8dc!important}body.prime-fxbook-open #prime-fxbook-root.pfx-root,#prime-fxbook-root.pfx-root{z-index:2147483600!important}@media(max-width:820px),(hover:none)and (pointer:coarse){body.prime-fxbook-open #prime-fxbook-root.pfx-root{position:fixed!important;inset:0!important;width:100vw!important;height:100dvh!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;overscroll-behavior:contain!important;background:radial-gradient(circle at 80% 0%,rgba(0,132,255,.16),transparent 32%),#02040a!important;padding-bottom:env(safe-area-inset-bottom,0px)!important}body.prime-fxbook-open .pfx-shell{display:block!important;min-height:100dvh!important;width:100%!important;background:transparent!important}body.prime-fxbook-open .pfx-sidebar{position:static!important;top:auto!important;height:auto!important;min-height:0!important;padding:calc(env(safe-area-inset-top,0px) + 10px) 10px 10px!important;border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:linear-gradient(180deg,#060b17fa,#04070ff5)!important;box-shadow:0 12px 32px #00000052!important}body.prime-fxbook-open .pfx-side-brand{align-items:center!important;gap:9px!important;padding:2px 2px 8px!important}body.prime-fxbook-open .pfx-logo-mark{width:36px!important;height:36px!important;border-radius:12px!important;font-size:14px!important}body.prime-fxbook-open .pfx-side-brand strong{font-size:14px!important;line-height:1.12!important}body.prime-fxbook-open .pfx-side-brand small{font-size:10px!important;margin-top:2px!important}body.prime-fxbook-open .pfx-nav,body.prime-fxbook-open .pfx-nav-pro{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:7px!important;margin-top:8px!important;max-height:none!important;overflow:visible!important;padding:0!important}body.prime-fxbook-open .pfx-nav-item,body.prime-fxbook-open .pfx-nav-pro button{height:38px!important;min-height:38px!important;padding:0 8px!important;border-radius:12px!important;font-size:11px!important;line-height:1.1!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;justify-content:flex-start!important}body.prime-fxbook-open .pfx-nav-item span,body.prime-fxbook-open .pfx-nav-pro button span{width:16px!important;min-width:16px!important;font-size:12px!important}body.prime-fxbook-open .pfx-home-link{position:static!important;margin-top:9px!important;width:100%!important;min-height:38px!important;padding:9px 10px!important;border-radius:12px!important;font-size:12px!important}body.prime-fxbook-open .pfx-main{min-width:0!important;width:100%!important}body.prime-fxbook-open .pfx-appbar,body.prime-fxbook-open .pfx-topbar{position:static!important;top:auto!important;z-index:1!important;min-height:0!important;height:auto!important;padding:12px 12px 10px!important;display:grid!important;grid-template-columns:1fr!important;gap:9px!important;background:#03060edb!important;border-bottom:1px solid rgba(255,255,255,.07)!important;-webkit-backdrop-filter:none!important;backdrop-filter:none!important}body.prime-fxbook-open .pfx-appbar h1,body.prime-fxbook-open .pfx-topbar h1{font-size:clamp(20px,6vw,27px)!important;line-height:1.1!important;margin:0!important}body.prime-fxbook-open .pfx-appbar small,body.prime-fxbook-open .pfx-topbar small,body.prime-fxbook-open .pfx-card p,body.prime-fxbook-open .pfx-card-head span{font-size:12px!important;line-height:1.45!important}body.prime-fxbook-open .pfx-actions,body.prime-fxbook-open .pfx-top-actions,body.prime-fxbook-open .pfx-toolbar{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important;width:100%!important}body.prime-fxbook-open .pfx-btn,body.prime-fxbook-open .pfx-back,body.prime-fxbook-open .pfx-actions .pfx-btn,body.prime-fxbook-open .pfx-top-actions .pfx-btn,body.prime-fxbook-open .pfx-toolbar .pfx-btn{min-height:40px!important;padding:9px 10px!important;border-radius:12px!important;font-size:12px!important;width:100%!important}body.prime-fxbook-open .pfx-search{min-width:0!important;width:100%!important;height:40px!important;border-radius:12px!important;font-size:12px!important}body.prime-fxbook-open .pfx-content{padding:12px 10px calc(18px + env(safe-area-inset-bottom,0px))!important;display:grid!important;gap:12px!important}body.prime-fxbook-open .pfx-metrics{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}body.prime-fxbook-open .pfx-metric{padding:11px!important;border-radius:16px!important;min-width:0!important}body.prime-fxbook-open .pfx-metric span{font-size:9px!important;letter-spacing:.05em!important}body.prime-fxbook-open .pfx-metric strong{margin-top:6px!important;font-size:clamp(17px,5vw,23px)!important;line-height:1.05!important;overflow-wrap:anywhere!important}body.prime-fxbook-open .pfx-grid-two,body.prime-fxbook-open .pfx-grid-three,body.prime-fxbook-open .pfx-journal-grid,body.prime-fxbook-open .pfx-workspace-grid,body.prime-fxbook-open .pfx-sync-layout,body.prime-fxbook-open .pfx-phase3-layout{display:grid!important;grid-template-columns:1fr!important;gap:12px!important;margin-top:0!important}body.prime-fxbook-open .pfx-card{min-width:0!important;padding:13px!important;border-radius:17px!important;overflow:hidden!important}body.prime-fxbook-open .pfx-card-head{display:grid!important;grid-template-columns:1fr!important;gap:9px!important;margin-bottom:12px!important}body.prime-fxbook-open .pfx-card h2,body.prime-fxbook-open .pfx-card h3{font-size:clamp(17px,5.2vw,22px)!important;line-height:1.18!important;overflow-wrap:anywhere!important}body.prime-fxbook-open .pfx-table,body.prime-fxbook-open .pfx-card-large,body.prime-fxbook-open .pfx-import-table,body.prime-fxbook-open #pfx-import-preview{overflow-x:auto!important;overflow-y:visible!important;-webkit-overflow-scrolling:touch!important}body.prime-fxbook-open .pfx-row{min-width:720px!important;padding:11px!important;font-size:12px!important}body.prime-fxbook-open .pfx-equity{min-width:560px!important;height:190px!important}body.prime-fxbook-open .pfx-empty,body.prime-fxbook-open .pfx-coming{min-height:220px!important}body.prime-fxbook-open .pfx-mini-list div,body.prime-fxbook-open .pfx-analysis-list div{display:grid!important;grid-template-columns:1fr!important;gap:5px!important}}@media(max-width:420px){body.prime-fxbook-open .pfx-nav,body.prime-fxbook-open .pfx-nav-pro{grid-template-columns:repeat(2,minmax(0,1fr))!important}body.prime-fxbook-open .pfx-actions,body.prime-fxbook-open .pfx-top-actions,body.prime-fxbook-open .pfx-toolbar,body.prime-fxbook-open .pfx-metrics{grid-template-columns:1fr!important}}@media(hover:none)and (pointer:coarse),(max-width:920px){body.terminal-active .gp-mobile-quick-rail,body.gp-terminal-active .gp-mobile-quick-rail,body.terminal-active .gp-mobile-action-dock,body.gp-terminal-active .gp-mobile-action-dock{grid-auto-columns:minmax(94px,max-content)!important}body.terminal-active .gp-mobile-quick-rail button[data-mobile-action=clean],body.gp-terminal-active .gp-mobile-quick-rail button[data-mobile-action=clean],body.terminal-active .gp-mobile-action-dock button[data-mobile-action=clean],body.gp-terminal-active .gp-mobile-action-dock button[data-mobile-action=clean]{order:-10!important;border-color:#00f0d073!important;background:linear-gradient(135deg,#007dff4d,#00f0d038)!important;color:#f4ffff!important}}#gp-clean-chart-head-btn,.gp-clean-chart-head-btn{border:1px solid rgba(0,224,255,.3)!important;background:linear-gradient(135deg,#0084ff38,#00e0c621)!important;color:#eaffff!important;border-radius:12px!important;min-height:34px!important;padding:0 12px!important;font-weight:950!important;letter-spacing:.035em!important;box-shadow:0 0 18px #00e0ff14!important;white-space:nowrap!important}#gp-clean-chart-head-btn:hover,.gp-clean-chart-head-btn:hover{border-color:#00e0ff8c!important;background:linear-gradient(135deg,#0084ff57,#00e0c638)!important}@media(max-width:920px){.gp-mobile-quick-rail,.gp-mobile-action-dock{grid-auto-columns:minmax(108px,max-content)!important;gap:8px!important;padding-inline:max(10px,env(safe-area-inset-left)) max(10px,env(safe-area-inset-right))!important}.gp-mobile-quick-rail button,.gp-mobile-action-dock button{min-width:108px!important;height:38px!important;border-radius:14px!important;font-size:11px!important}#gp-clean-chart-head-btn,.gp-clean-chart-head-btn{order:0!important;height:34px!important;min-height:34px!important;padding:0 10px!important;font-size:11px!important}#prime-orderflow-btn{order:1!important}body.terminal-active .tools-panel,body.gp-terminal-active .tools-panel{border-radius:22px!important;border:1px solid rgba(43,142,255,.32)!important;background:linear-gradient(180deg,#060d1bfa,#030812fa)!important;box-shadow:0 22px 70px #0000009e,0 0 34px #0084ff1f!important}body.terminal-active .tools-panel__header,body.gp-terminal-active .tools-panel__header{min-height:58px!important;padding:12px 14px!important;border-bottom:1px solid rgba(82,156,255,.18)!important}body.terminal-active .tools-panel__header strong,body.gp-terminal-active .tools-panel__header strong{font-size:15px!important;letter-spacing:.06em!important}body.terminal-active .tools-panel__close,body.gp-terminal-active .tools-panel__close{width:42px!important;height:42px!important;border-radius:14px!important;background:#ffffff14!important;color:#fff!important;font-size:22px!important}body.terminal-active .tools-panel__body.gp-orderflow-body,body.gp-terminal-active .tools-panel__body.gp-orderflow-body{display:grid!important;grid-template-columns:1fr!important;gap:10px!important;padding:12px!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important}.gp-of-slider,.gp-of-select,.gp-of-switch-row,.gp-of-actions,.gp-layer-row{width:100%!important;min-width:0!important;box-sizing:border-box!important}.gp-of-slider{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;align-items:center!important;gap:7px 10px!important;padding:11px 12px!important;border:1px solid rgba(255,255,255,.075)!important;border-radius:14px!important;background:#ffffff09!important;color:#e9f1ffeb!important;font-size:12px!important;font-weight:900!important}.gp-of-slider input[type=range]{grid-column:1 / -1!important;width:100%!important;min-width:0!important;height:28px!important;accent-color:#258cff!important}.gp-of-select{display:grid!important;gap:7px!important;padding:11px 12px!important;border:1px solid rgba(255,255,255,.075)!important;border-radius:14px!important;background:#ffffff09!important;color:#e9f1ffeb!important;font-size:12px!important;font-weight:900!important}.gp-of-select select{appearance:none!important;-webkit-appearance:none!important;min-height:42px!important;width:100%!important;border-radius:13px!important;border:1px solid rgba(56,151,255,.28)!important;background:linear-gradient(180deg,#091427f5,#040b18f5)!important;color:#eaf5ff!important;padding:0 38px 0 12px!important;font-size:13px!important;font-weight:900!important}.gp-of-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important}.gp-of-actions button,.gp-mini-switch,.tool-toggle{min-height:42px!important;border-radius:13px!important;font-size:12px!important;font-weight:950!important}.gp-layer-toggles{display:grid!important;grid-template-columns:1fr!important;gap:9px!important}.gp-layer-row{display:grid!important;grid-template-columns:minmax(0,1fr) 86px!important;align-items:center!important;gap:10px!important;padding:12px!important;border-radius:15px!important;background:#ffffff09!important;border:1px solid rgba(255,255,255,.07)!important}.gp-layer-row span{min-width:0!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}}.gp-of-mode-grid{display:none!important}.tools-panel__header span{text-transform:none!important}@media(hover:none)and (pointer:coarse),(max-width:920px){body.terminal-active .gp-mobile-quick-rail button[data-mobile-action=clean-chart],body.gp-terminal-active .gp-mobile-quick-rail button[data-mobile-action=clean-chart],body.terminal-active .gp-mobile-action-dock button[data-mobile-action=clean-chart],body.gp-terminal-active .gp-mobile-action-dock button[data-mobile-action=clean-chart]{order:-20!important;border-color:#00f0d080!important;background:linear-gradient(135deg,#007dff57,#00f0d03d)!important;color:#f4ffff!important;box-shadow:0 0 18px #00e0ff1a!important}body.terminal-active .gp-mobile-quick-rail,body.gp-terminal-active .gp-mobile-quick-rail,body.terminal-active .gp-mobile-action-dock,body.gp-terminal-active .gp-mobile-action-dock{padding-left:max(8px,env(safe-area-inset-left))!important;padding-right:max(8px,env(safe-area-inset-right))!important}body.terminal-active .gp-mobile-quick-rail button,body.gp-terminal-active .gp-mobile-quick-rail button,body.terminal-active .gp-mobile-action-dock button,body.gp-terminal-active .gp-mobile-action-dock button{min-width:max-content!important;padding-inline:12px!important}}.gp-of-mode-grid,#gp-bookmap-mode,#gp-atas-mode{display:none!important}body.terminal-active .gp-clean-chart-head-btn,body.gp-terminal-active .gp-clean-chart-head-btn,body.terminal-active .gp-clean-chart-top-btn,body.gp-terminal-active .gp-clean-chart-top-btn{order:1!important}body.terminal-active #prime-orderflow-btn,body.gp-terminal-active #prime-orderflow-btn{order:2!important}body.terminal-active .gp-mobile-quick-rail [data-mobile-action=clean],body.gp-terminal-active .gp-mobile-quick-rail [data-mobile-action=clean],body.terminal-active .gp-mobile-action-dock [data-mobile-action=clean],body.gp-terminal-active .gp-mobile-action-dock [data-mobile-action=clean]{border-color:#ffd54a6b!important;background:linear-gradient(135deg,#ffc92c33,#0084ff2e)!important;color:#fff9df!important}@media(hover:none)and (pointer:coarse),(max-width:920px){body.terminal-active .gp-of-actions,body.gp-terminal-active .gp-of-actions{grid-column:1 / -1!important;grid-template-columns:repeat(2,minmax(0,1fr))!important}body.terminal-active .tools-panel__header span,body.gp-terminal-active .tools-panel__header span{content:none!important;color:#e2eeff9e!important}body.terminal-active .gp-clean-chart-head-btn,body.gp-terminal-active .gp-clean-chart-head-btn,body.terminal-active .gp-clean-chart-top-btn,body.gp-terminal-active .gp-clean-chart-top-btn{flex:0 0 auto!important;height:34px!important;min-height:34px!important;padding:0 10px!important;border-radius:999px!important;font-size:11px!important;white-space:nowrap!important}}body.prime-fxbook-open #app,body.prime-fxbook-open .bottom-nav,body.prime-fxbook-open #bottom-nav,body.prime-fxbook-open .gp-mobile-quick-rail,body.prime-fxbook-open .gp-mobile-action-dock{display:none!important;visibility:hidden!important;pointer-events:none!important}.gp-side-link--admin{color:#f0b90b!important;border-color:#f0b90b2e!important;background:#f0b90b0f!important;letter-spacing:.08em}.gp-profile-dashboard:has([data-panel=monitoring].active){width:min(1580px,calc(100vw - 18px))!important;height:min(900px,calc(100vh - 18px))!important;grid-template-columns:clamp(220px,16vw,270px) minmax(0,1fr)!important}.gp-tab-panel[data-panel=monitoring].active{gap:14px!important}.gp-admin-monitoring-shell{display:flex;flex-direction:column;gap:14px;min-width:0}.gp-admin-monitoring-head{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:18px;border:1px solid rgba(255,255,255,.08);border-radius:18px;background:linear-gradient(135deg,#0f172af0,#020c1beb);box-shadow:inset 0 1px #ffffff0a}.gp-admin-monitoring-head span{display:block;margin-bottom:5px;color:#ffffff85;font-size:11px;font-weight:900;letter-spacing:.12em}.gp-admin-monitoring-head h2{margin:0 0 5px!important;font-size:clamp(23px,2.1vw,34px)!important}.gp-admin-monitoring-head p{margin:0;color:#ffffffa3;font-size:13px;max-width:760px}.gp-admin-head-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}.gp-soft-action.danger,.gp-admin-head-actions .danger{border-color:#ff536652!important;background:#ff53661a!important;color:#ff8c9a!important}.gp-admin-alert{border:1px solid rgba(0,224,255,.22);border-radius:14px;padding:12px 14px;background:#00e0ff14;color:#ffffffdb;font-weight:800}.gp-admin-alert.is-error{border-color:#ff536652;background:#ff53661a;color:#ffbdc5}.gp-admin-alert.is-success{border-color:#10b98157;background:#10b9811a;color:#9af6d0}.gp-admin-stat-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px}.gp-admin-stat-card{display:flex;justify-content:space-between;align-items:center;gap:12px;min-width:0;padding:16px;border:1px solid rgba(255,255,255,.08);border-radius:18px;background:#0f172adb;box-shadow:inset 0 1px #ffffff0a}.gp-admin-stat-card span,.gp-admin-stat-card small{display:block;color:#ffffff8c;font-size:11px;font-weight:850;letter-spacing:.06em;text-transform:uppercase}.gp-admin-stat-card strong{display:block;margin:5px 0 2px;font-size:clamp(22px,2vw,32px);line-height:1}.gp-admin-stat-card b{display:grid;place-items:center;width:40px;height:40px;flex:0 0 40px;border-radius:12px;color:#fff;background:#2563eb38}.gp-admin-stat-card.is-green b{background:#10b98138;color:#35ffc3}.gp-admin-stat-card.is-red b{background:#ef444438;color:#ff8d8d}.gp-admin-stat-card.is-purple b{background:#7c3aed38;color:#bda5ff}.gp-admin-stat-card.is-gold b{background:#f0b90b33;color:#f0b90b}.gp-admin-layout-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,330px);gap:14px;min-height:0}.gp-admin-table-card,.gp-admin-side-card{border:1px solid rgba(255,255,255,.08);border-radius:18px;background:#0f172adb;box-shadow:inset 0 1px #ffffff0a}.gp-admin-table-card{min-width:0;overflow:hidden}.gp-admin-table-toolbar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px;border-bottom:1px solid rgba(255,255,255,.07)}.gp-admin-table-toolbar strong,.gp-admin-side-card h3{display:block;margin:0;font-size:16px}.gp-admin-table-toolbar small{display:block;margin-top:3px;color:#ffffff85;font-size:11px}.gp-admin-search{width:min(340px,42vw);border:1px solid rgba(255,255,255,.12);border-radius:12px;background:#020817b8;color:#fff;outline:0;padding:11px 13px}.gp-admin-table-wrap{overflow:auto;max-height:min(54vh,520px);scrollbar-width:thin}.gp-admin-user-table{width:100%;border-collapse:collapse;min-width:1060px}.gp-admin-user-table th,.gp-admin-user-table td{padding:12px 13px;border-bottom:1px solid rgba(255,255,255,.06);text-align:left;vertical-align:middle;font-size:12px}.gp-admin-user-table th{position:sticky;top:0;z-index:1;background:#101827;color:#ffffff94;text-transform:uppercase;letter-spacing:.08em;font-size:10px}.gp-admin-user-cell{display:flex;align-items:center;gap:10px;min-width:210px}.gp-admin-user-cell strong,.gp-admin-user-cell small{display:block;max-width:210px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.gp-admin-user-cell small{color:#ffffff75;font-size:10px}.gp-admin-user-avatar{display:grid;place-items:center;width:34px;height:34px;flex:0 0 34px;border-radius:50%;color:#03121a;background:linear-gradient(135deg,#00d5ff,#00f0a8);font-size:12px;font-weight:900}.gp-admin-pill,.gp-admin-status{display:inline-flex;align-items:center;gap:6px;border-radius:999px;padding:7px 10px;font-size:11px;font-weight:900;background:#3b82f624;color:#7db7ff}.gp-admin-status i{width:7px;height:7px;border-radius:50%;background:currentColor}.gp-admin-status.is-active{background:#22c55e24;color:#39ff9a}.gp-admin-status.is-pending{background:#f0b90b24;color:#f0b90b}.gp-admin-status.is-banned{background:#ef444424;color:#ff7474}.gp-admin-status.is-viewer{background:#3b82f61f;color:#8ebfff}.gp-admin-row-actions{display:flex;gap:6px;align-items:center}.gp-admin-row-actions button,.gp-admin-side-card button{border:1px solid rgba(255,255,255,.12);border-radius:10px;background:#ffffff12;color:#fff;font-weight:900;cursor:pointer}.gp-admin-row-actions button{width:30px;height:30px;padding:0}.gp-admin-row-actions button:hover,.gp-admin-side-card button:hover{border-color:#f0b90b5c;background:#f0b90b1f}.gp-admin-row-actions button:disabled{opacity:.35;cursor:not-allowed}.gp-admin-side-stack{display:grid;gap:14px;align-content:start}.gp-admin-side-card{padding:16px}.gp-admin-donut{display:grid;place-items:center;width:128px;height:128px;margin:18px auto;border-radius:50%;background:conic-gradient(#22c55e 0 18%,#2563eb 18% 74%,#f97316 74% 88%,#ef4444 88% 100%);position:relative}.gp-admin-donut:after{content:"";position:absolute;inset:18px;border-radius:50%;background:#0f172a}.gp-admin-donut span,.gp-admin-donut small{position:relative;z-index:1;display:block;text-align:center;font-weight:900}.gp-admin-donut span{font-size:22px}.gp-admin-donut small{color:#ffffff8f;font-size:10px;text-transform:uppercase}.gp-admin-legend{display:flex;justify-content:space-between;gap:12px;padding:9px 0;border-top:1px solid rgba(255,255,255,.06);color:#ffffffbd;font-size:12px}.gp-admin-legend span{display:inline-flex;align-items:center;gap:8px}.gp-admin-legend i{width:8px;height:8px;border-radius:50%;background:#64748b}.gp-admin-legend i.online{background:#22c55e}.gp-admin-legend i.active{background:#2563eb}.gp-admin-legend i.pending{background:#f0b90b}.gp-admin-legend i.banned{background:#ef4444}.gp-admin-side-card button{width:100%;margin-top:10px;padding:11px 12px;text-align:left}.gp-admin-side-card p{color:#ffffff8c;font-size:12px;line-height:1.45}.gp-admin-empty-row{text-align:center!important;padding:28px!important;color:#ffffff8c}@media(max-width:1200px){.gp-admin-stat-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.gp-admin-layout-grid{grid-template-columns:1fr}.gp-admin-side-stack{grid-template-columns:1fr 1fr}}@media(max-width:760px){.gp-profile-dashboard:has([data-panel=monitoring].active){grid-template-columns:1fr!important}.gp-admin-monitoring-head,.gp-admin-table-toolbar{align-items:stretch;flex-direction:column}.gp-admin-head-actions{justify-content:stretch}.gp-admin-head-actions button,.gp-admin-search{width:100%}.gp-admin-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.gp-admin-side-stack{grid-template-columns:1fr}}.gp-admin-dashboard-overlay{position:fixed;inset:0;z-index:999999;display:grid;place-items:center;background:#010812b8;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}.gp-admin-dashboard-window{position:relative;width:min(1920px,calc(100vw - 18px));height:min(980px,calc(100vh - 18px));overflow:hidden;border:1px solid rgba(88,132,198,.22);border-radius:18px;background:#06111f;box-shadow:0 34px 90px #000000b8,inset 0 1px #ffffff0f}.gp-admin-dashboard-close{position:absolute;top:14px;right:14px;z-index:30;display:grid;place-items:center;width:34px;height:34px;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:#0f172aeb;color:#ffffffd6;font-size:22px;line-height:1;cursor:pointer;transition:.18s ease}.gp-admin-dashboard-close:hover{border-color:#ffffff47;background:#ef44442e;color:#fff}.gp-admin-dashboard-panel,.gp-admin-dashboard-frame{width:100%;height:100%;min-height:0}.gp-admin-dashboard-frame{display:grid;grid-template-columns:218px minmax(0,1fr);grid-template-rows:54px minmax(0,1fr);background:radial-gradient(circle at 18% -12%,rgba(0,224,255,.16),transparent 28%),radial-gradient(circle at 75% -20%,rgba(27,91,255,.12),transparent 30%),#071120;color:#eaf2ff;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif}.gp-admin-terminal-topbar{grid-column:1 / -1;grid-row:1;display:flex;align-items:center;gap:10px;min-width:0;padding:8px 62px 8px 12px;border-bottom:1px solid rgba(117,161,218,.12);background:#040c18e0}.gp-admin-brand{display:inline-flex;align-items:center;gap:9px;min-width:190px;color:#5ab7ff;font-size:12px;font-weight:950;letter-spacing:.02em}.gp-brand-orb{display:grid;place-items:center;width:28px;height:28px;border-radius:10px;background:radial-gradient(circle at 30% 20%,#22ffe6,#0a70ff 55%,#08172c);color:#02111d;font-weight:1000;box-shadow:0 0 22px #00e0ff3d}.gp-admin-market-select,.gp-admin-top-btn,.gp-admin-gear,.gp-admin-user-mini{height:36px;border:1px solid rgba(120,160,215,.13);border-radius:12px;background:#0a1424e0;color:#eff6ffe0;box-shadow:inset 0 1px #ffffff09}.gp-admin-market-select{display:inline-flex;align-items:center;justify-content:space-between;gap:24px;min-width:160px;padding:0 12px;font-size:12px;font-weight:800}.gp-admin-market-select em,.gp-admin-user-mini em{color:#ffffff73;font-style:normal}.gp-admin-top-btn{padding:0 14px;color:#e8f5ff;font-size:11px;font-weight:950;letter-spacing:.02em;white-space:nowrap;cursor:default}.gp-admin-visit-btn{height:36px;border:0;border-radius:13px;padding:0 18px;background:linear-gradient(135deg,#00e5ff,#00ffc2);color:#00151d;font-size:12px;font-weight:1000;box-shadow:0 10px 28px #00ddff38}.gp-admin-top-spacer{flex:1 1 auto;min-width:8px}.gp-admin-live{display:inline-flex;align-items:center;gap:7px;color:#fffc;font-size:12px;white-space:nowrap}.gp-admin-live i{width:9px;height:9px;border-radius:50%;background:#0f8;box-shadow:0 0 14px #0f8c}.gp-admin-live span{color:#fff;font-weight:900;letter-spacing:.04em}.gp-admin-gear{display:grid;place-items:center;width:36px;color:#ffffffc7}.gp-admin-user-mini{display:inline-flex;align-items:center;gap:9px;min-width:150px;padding:4px 10px 4px 5px}.gp-admin-user-mini>span{display:grid;place-items:center;width:29px;height:29px;border-radius:50%;overflow:hidden;background:linear-gradient(135deg,#f0b90b,#00d9ff);color:#06111f;font-weight:950}.gp-admin-user-mini>span img,.gp-admin-user-mini>span .gp-avatar-img{width:100%;height:100%;object-fit:cover}.gp-admin-user-mini strong,.gp-admin-user-mini small{display:block;line-height:1.1}.gp-admin-user-mini strong{font-size:12px}.gp-admin-user-mini small{margin-top:2px;color:#ffffff7a;font-size:10px}.gp-admin-dashboard-nav{grid-column:1;grid-row:2;display:flex;flex-direction:column;gap:12px;min-width:0;min-height:0;padding:12px 10px;border-right:1px solid rgba(117,161,218,.12);background:#050e1bd1}.gp-admin-nav-scroll{display:flex;flex-direction:column;gap:4px;min-height:0;overflow:auto;scrollbar-width:thin}.gp-admin-menu-item{display:flex;align-items:center;gap:10px;width:100%;min-height:36px;border:1px solid transparent;border-radius:10px;padding:0 10px;background:transparent;color:#dfecffc2;font-size:12px;font-weight:800;text-align:left}.gp-admin-menu-item span{display:grid;place-items:center;width:18px;color:#79a9e8;font-size:12px}.gp-admin-menu-item b{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font:inherit}.gp-admin-menu-item em{color:#ffffff6b;font-style:normal}.gp-admin-menu-item.active{border-color:#1c69ff38;background:linear-gradient(90deg,#0d4bab6b,#0d4bab29);color:#fff;box-shadow:inset 2px 0 #1e83ff}.gp-admin-menu-item.is-child{min-height:31px;padding-left:39px;color:#dfecffad;font-size:11px}.gp-admin-menu-item.is-child span{display:none}.gp-admin-menu-item.is-child.active{background:#1c69ff38;box-shadow:none}.gp-admin-help-card{display:flex;align-items:center;gap:10px;flex:0 0 auto;padding:12px;border:1px solid rgba(117,161,218,.12);border-radius:14px;background:#0c192dbd}.gp-admin-help-card span{display:grid;place-items:center;width:32px;height:32px;border-radius:12px;background:#2563eb2e;color:#61b7ff}.gp-admin-help-card strong,.gp-admin-help-card small{display:block;line-height:1.2}.gp-admin-help-card strong{font-size:12px}.gp-admin-help-card small{color:#ffffff80;font-size:10px}.gp-admin-dashboard-content{grid-column:2;grid-row:2;min-width:0;min-height:0;overflow:auto;padding:14px 16px 16px;scrollbar-width:thin}.gp-admin-breadcrumb{display:flex;align-items:center;gap:8px;color:#c6d6ef80;font-size:11px;font-weight:850;letter-spacing:.03em}.gp-admin-breadcrumb b{color:#6bb6ff}.gp-admin-page-head{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin:8px 0 14px}.gp-admin-page-head h2{margin:0!important;color:#f7fbff;font-size:clamp(22px,2vw,30px)!important;line-height:1.05;letter-spacing:-.03em}.gp-admin-page-head p{margin:5px 0 0;color:#dae8ff94;font-size:13px}.gp-admin-page-actions{display:flex;align-items:center;gap:9px;flex-wrap:wrap;justify-content:flex-end}.gp-admin-primary-action,.gp-admin-secondary-action{height:38px;border-radius:10px;padding:0 15px;color:#fff;font-size:12px;font-weight:950;cursor:pointer}.gp-admin-primary-action{border:1px solid rgba(37,125,255,.65);background:linear-gradient(135deg,#1477ff,#1362dc);box-shadow:0 12px 28px #1367ee40}.gp-admin-secondary-action{border:1px solid rgba(255,255,255,.12);background:#0a1424c7}.gp-admin-stat-grid--six{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px;margin-bottom:14px}.gp-admin-dashboard-frame .gp-admin-stat-card{min-height:104px;border:1px solid rgba(117,161,218,.12);border-radius:14px;background:#081427d6;box-shadow:inset 0 1px #ffffff0a}.gp-admin-dashboard-frame .gp-admin-stat-card div{min-width:0}.gp-admin-dashboard-frame .gp-admin-stat-card span{color:#dbe8ff80;font-size:10px;font-weight:950;letter-spacing:.08em}.gp-admin-dashboard-frame .gp-admin-stat-card strong{margin-top:7px;font-size:clamp(24px,2.1vw,31px)}.gp-admin-dashboard-frame .gp-admin-stat-card small{color:#e8f0ffad;font-size:11px;text-transform:none;letter-spacing:0}.gp-admin-dashboard-frame .gp-admin-stat-card b{width:42px;height:42px;border-radius:12px;background:#2563eb38}.gp-admin-dashboard-frame .gp-admin-stat-card.is-green b{background:#10b98133;color:#22ffa5}.gp-admin-dashboard-frame .gp-admin-stat-card.is-orange b{background:#f973162e;color:#ffae62}.gp-admin-dashboard-frame .gp-admin-stat-card.is-red b{background:#ef444433;color:#ff7c8d}.gp-admin-dashboard-frame .gp-admin-stat-card.is-purple b{background:#7c3aed38;color:#bea5ff}.gp-admin-main-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,360px);gap:14px;align-items:stretch;min-height:0}.gp-admin-filterbar{display:grid;grid-template-columns:minmax(220px,1fr) 150px 150px 130px 100px;gap:9px;padding:12px;border:1px solid rgba(117,161,218,.11);border-radius:13px;background:#071223bd}.gp-admin-filterbar label,.gp-admin-filterbar button{display:flex;align-items:center;gap:8px;height:36px;border:1px solid rgba(255,255,255,.09);border-radius:10px;background:#040c18c7;color:#eef6ffd1;font-size:12px;font-weight:800}.gp-admin-filterbar label{padding:0 12px}.gp-admin-filterbar button{justify-content:space-between;padding:0 12px;cursor:pointer}.gp-admin-filterbar input{width:100%;border:0;outline:0;background:transparent;color:#fff;font:inherit}.gp-admin-filterbar input::placeholder{color:#d9e6ff6b}.gp-admin-table-card--pro{overflow:hidden;border:1px solid rgba(117,161,218,.11);border-radius:13px;background:#071223c7}.gp-admin-table-card--pro .gp-admin-table-wrap{max-height:clamp(260px,44vh,430px);overflow:auto}.gp-admin-user-table--pro{min-width:1080px;width:100%;border-collapse:collapse}.gp-admin-user-table--pro th,.gp-admin-user-table--pro td{padding:10px 12px;border-bottom:1px solid rgba(255,255,255,.055);text-align:left;vertical-align:middle;font-size:12px}.gp-admin-user-table--pro th{position:sticky;top:0;z-index:2;background:#101c31;color:#dae8ff8c;font-size:10px;font-weight:950;text-transform:uppercase;letter-spacing:.07em}.gp-admin-user-table--pro tbody tr:hover{background:#2563eb12}.gp-admin-check-cell{width:38px;text-align:center!important}.gp-admin-check-cell input{width:14px;height:14px;accent-color:#1477ff}.gp-admin-dashboard-frame .gp-admin-user-cell{min-width:180px}.gp-admin-dashboard-frame .gp-admin-user-avatar{width:31px;height:31px;flex-basis:31px;background:linear-gradient(135deg,#17d2ff,#316bff 55%,#8a55ff);color:#fff;font-size:11px}.gp-admin-dashboard-frame .gp-admin-user-cell strong{color:#f3f8ff;font-size:12px}.gp-admin-dashboard-frame .gp-admin-user-cell small{display:none}.gp-admin-dashboard-frame .gp-admin-pill,.gp-admin-dashboard-frame .gp-admin-status{padding:5px 9px;border:1px solid rgba(255,255,255,.08);border-radius:8px;font-size:11px;font-weight:900}.gp-admin-dashboard-frame .gp-admin-status.is-active{background:#10b9811f;color:#0cff9a}.gp-admin-dashboard-frame .gp-admin-status.is-expired{background:#ef44441f;color:#f67}.gp-admin-dashboard-frame .gp-admin-status.is-pending{background:#f0b90b21;color:#ffd25d}.gp-admin-dashboard-frame .gp-admin-status.is-banned{background:#ef444429;color:#f67}.gp-admin-dashboard-frame .gp-admin-pill.is-role{background:#2563eb26;color:#6cb7ff}.gp-admin-dashboard-frame .gp-admin-row-actions{gap:5px;flex-wrap:nowrap}.gp-admin-dashboard-frame .gp-admin-row-actions button{width:27px;height:27px;border-radius:7px;border-color:#ffffff1a;background:#030c19cc;color:#dbeafe;font-size:12px}.gp-admin-dashboard-frame .gp-admin-row-actions button:nth-child(2),.gp-admin-dashboard-frame .gp-admin-row-actions button:nth-child(4){background:#f0b90b29;color:#f0b90b}.gp-admin-dashboard-frame .gp-admin-row-actions button:disabled{opacity:.35}.gp-admin-pagination{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 12px;color:#dbe8ff94;font-size:12px}.gp-admin-pagination div{display:flex;align-items:center;gap:6px}.gp-admin-pagination button,.gp-admin-pagination em{display:grid;place-items:center;min-width:28px;height:28px;border:1px solid rgba(255,255,255,.08);border-radius:8px;background:#040c18b8;color:#e8f0ffc2;font-size:11px;font-style:normal}.gp-admin-pagination button.active{background:#1477ff;color:#fff;border-color:#1477ff}.gp-admin-right-rail{display:flex;flex-direction:column;gap:12px;min-width:0}.gp-admin-dashboard-frame .gp-admin-side-card{border:1px solid rgba(117,161,218,.11);border-radius:14px;background:#071223c7;box-shadow:inset 0 1px #ffffff09}.gp-admin-dashboard-frame .gp-admin-side-card h3{margin:0 0 12px;color:#f4f8ff;font-size:13px;font-weight:950;text-transform:uppercase}.gp-admin-side-card--activity{min-height:220px}.gp-admin-activity-body{display:grid;grid-template-columns:142px minmax(0,1fr);gap:14px;align-items:center}.gp-admin-dashboard-frame .gp-admin-donut{width:132px;height:132px;margin:0;background:conic-gradient(#00e6a7 0 6.61%,#1d7dff 6.61% 86.52%,#ff5f73 86.52% 100%)}.gp-admin-dashboard-frame .gp-admin-donut:after{inset:26px;background:#0b1730}.gp-admin-dashboard-frame .gp-admin-donut span,.gp-admin-dashboard-frame .gp-admin-donut b{position:relative;z-index:1;display:block;text-align:center}.gp-admin-dashboard-frame .gp-admin-donut span{color:#ffffff9e;font-size:11px;font-weight:900;text-transform:none}.gp-admin-dashboard-frame .gp-admin-donut b{color:#fff;font-size:20px;line-height:1.1}.gp-admin-activity-legend div{display:flex;justify-content:space-between;gap:12px;color:#e8f0ffb3;font-size:12px}.gp-admin-activity-legend span{display:inline-flex;align-items:center;gap:9px}.gp-admin-activity-legend i{width:9px;height:9px;border-radius:50%}.gp-admin-activity-legend i.online{background:#00e6a7}.gp-admin-activity-legend i.active{background:#1d7dff}.gp-admin-activity-legend i.offline{background:#ff5f73}.gp-admin-activity-legend b{color:#ffffffbf;font-weight:800}.gp-admin-side-card--quick{flex:1}.gp-admin-side-card--quick button{display:flex;align-items:center;gap:12px;width:100%;margin-top:10px;border:0;border-radius:12px;padding:9px 10px;background:transparent;color:#e9f2ff;text-align:left}.gp-admin-side-card--quick button:hover{background:#2563eb14}.gp-admin-side-card--quick button>span{display:grid;place-items:center;width:34px;height:34px;flex:0 0 34px;border-radius:9px;background:#2563eb2e}.gp-admin-side-card--quick button:nth-of-type(2)>span{background:#10b9812b}.gp-admin-side-card--quick button:nth-of-type(3)>span{background:#f0b90b2e}.gp-admin-side-card--quick button:nth-of-type(4)>span{background:#7c3aed2e}.gp-admin-side-card--quick strong,.gp-admin-side-card--quick small{display:block;line-height:1.25}.gp-admin-side-card--quick strong{font-size:12px}.gp-admin-side-card--quick small{color:#e8f0ff85;font-size:11px}.gp-admin-bottom-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:14px}.gp-admin-bottom-card{position:relative;min-height:118px;overflow:hidden;border:1px solid rgba(117,161,218,.11);border-radius:14px;padding:14px 14px 12px;background:#071223c7;box-shadow:inset 0 1px #ffffff09}.gp-admin-bottom-card h3{margin:0 0 8px;color:#e1ecffd9;font-size:12px;font-weight:950;text-transform:uppercase}.gp-admin-bottom-card strong{display:block;color:#fff;font-size:25px;line-height:1}.gp-admin-bottom-card small,.gp-admin-bottom-card a{display:block;margin-top:6px;color:#ddebff94;font-size:12px}.gp-admin-bottom-card small b{color:#22c55e}.gp-admin-bottom-card a{color:#4da3ff;font-weight:800}.gp-admin-spark{position:absolute;left:42%;right:12px;bottom:10px;height:66px;display:flex;align-items:flex-end;gap:3px;opacity:.92}.gp-admin-spark i{display:block;flex:1 1 0;height:var(--h, 50%);min-width:2px;border-radius:4px 4px 0 0;background:linear-gradient(to top,#22c55e1f,#22c55ee0);box-shadow:0 0 14px #22c55e2e}.gp-admin-spark--line{align-items:center;gap:0;opacity:.76}.gp-admin-spark--line i{height:2px!important;border-radius:999px;transform:translateY(calc((50 - var(--h, 50)) * .42px))}.gp-admin-spark--bars i{background:linear-gradient(to top,#1d7dff21,#1d7dffeb)}.gp-admin-spark--bars.danger i,.gp-admin-spark--bars\ danger i,.gp-admin-spark--bars.gp-admin-spark--danger i{background:linear-gradient(to top,#ef444421,#ef4444eb)}.gp-admin-sync-note{margin-top:10px;color:#dae8ff61;font-size:11px;text-align:right}.gp-admin-alert{margin-bottom:12px}@media(max-width:1380px){.gp-admin-dashboard-frame{grid-template-columns:198px minmax(0,1fr)}.gp-admin-stat-grid--six{grid-template-columns:repeat(3,minmax(0,1fr))}.gp-admin-main-grid{grid-template-columns:1fr}.gp-admin-right-rail{display:grid;grid-template-columns:1fr 1fr}.gp-admin-terminal-topbar{overflow-x:auto}}@media(max-width:980px){.gp-admin-dashboard-window{width:100vw;height:100vh;border-radius:0}.gp-admin-dashboard-frame{grid-template-columns:1fr;grid-template-rows:auto auto minmax(0,1fr)}.gp-admin-terminal-topbar{grid-row:1;padding-right:54px}.gp-admin-dashboard-nav{grid-column:1;grid-row:2;max-height:170px;border-right:0;border-bottom:1px solid rgba(117,161,218,.12)}.gp-admin-dashboard-content{grid-column:1;grid-row:3}.gp-admin-stat-grid--six{grid-template-columns:repeat(2,minmax(0,1fr))}.gp-admin-filterbar,.gp-admin-bottom-grid,.gp-admin-right-rail{grid-template-columns:1fr}}.gp-admin-dashboard-overlay{position:fixed!important;inset:0!important;z-index:2147483650!important;display:flex!important;align-items:stretch!important;justify-content:stretch!important;background:radial-gradient(circle at 80% 0%,rgba(0,226,255,.1),transparent 31%),#00050df5!important;color:#eef6ff!important;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif!important}.gp-admin-dashboard-window{position:relative!important;width:100vw!important;height:100dvh!important;min-width:0!important;min-height:0!important;overflow:hidden!important;background:#020817!important;border:1px solid rgba(56,189,248,.14)!important;box-shadow:0 30px 120px #000000c7!important}.gp-admin-dashboard-panel{width:100%!important;height:100%!important;min-width:0!important;min-height:0!important;overflow:hidden!important}.gp-admin-dashboard-close{position:absolute!important;top:14px!important;right:14px!important;z-index:20!important;display:grid!important;place-items:center!important;width:34px!important;height:34px!important;border-radius:12px!important;border:1px solid rgba(255,255,255,.16)!important;background:#0e172ae0!important;color:#ffffffe0!important;font-size:22px!important;line-height:1!important;font-weight:800!important;cursor:pointer!important;box-shadow:0 12px 30px #00000057!important}.gp-admin-dashboard-close:hover{border-color:#00e0ff6b!important;background:#00e0ff1f!important;color:#fff!important}.gp-admin-full-shell{width:100%!important;height:100%!important;min-width:0!important;min-height:0!important;display:grid!important;grid-template-columns:224px minmax(0,1fr)!important;gap:0!important;overflow:hidden!important;background:radial-gradient(circle at 60% -10%,rgba(0,224,255,.11),transparent 30%),linear-gradient(180deg,#03101d,#020714)!important}.gp-admin-left-sidebar{min-width:0!important;height:100%!important;display:flex!important;flex-direction:column!important;padding:14px 10px!important;border-right:1px solid rgba(66,153,225,.13)!important;background:linear-gradient(180deg,#040e1bfa,#020812fa)!important;box-shadow:inset -1px 0 #ffffff05!important}.gp-admin-brand-block{display:flex!important;align-items:center!important;gap:9px!important;min-height:38px!important;padding:0 8px 14px!important;color:#eaf7ff!important;font-size:12px!important;font-weight:950!important;letter-spacing:.02em!important}.gp-admin-brand-icon{display:grid!important;place-items:center!important;width:26px!important;height:26px!important;border-radius:9px!important;color:#00ffe0!important;background:radial-gradient(circle at 35% 20%,#ffe176,#168cff 46%,#061522 78%)!important;box-shadow:0 0 18px #00e0ff33!important}.gp-admin-menu{display:flex!important;flex-direction:column!important;gap:4px!important;min-height:0!important;overflow-y:auto!important;overflow-x:hidden!important;padding:2px!important;scrollbar-width:thin!important}.gp-admin-menu-item{appearance:none!important;width:100%!important;display:flex!important;align-items:center!important;gap:10px!important;min-height:34px!important;padding:8px 9px!important;border:1px solid transparent!important;border-radius:8px!important;background:transparent!important;color:#dbeafec2!important;font-size:12px!important;font-weight:750!important;text-align:left!important;cursor:default!important}.gp-admin-menu-item span{width:17px!important;color:#97c6ffc2!important;text-align:center!important;font-style:normal!important}.gp-admin-menu-item b{flex:1 1 auto!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;font:inherit!important}.gp-admin-menu-item em{color:#ffffff61!important;font-style:normal!important}.gp-admin-menu-item.is-child{margin-left:23px!important;width:calc(100% - 23px)!important;min-height:29px!important;padding-top:6px!important;padding-bottom:6px!important;color:#e2eeffb3!important;font-size:11px!important}.gp-admin-menu-item.active,.gp-admin-menu-item:hover{border-color:#0084ff38!important;background:linear-gradient(135deg,#0075ff38,#00e0ff0f)!important;color:#f7fbff!important;box-shadow:inset 0 1px #ffffff0a!important}.gp-admin-help-card{display:flex!important;align-items:center!important;gap:10px!important;margin-top:auto!important;padding:12px!important;border:1px solid rgba(66,153,225,.15)!important;border-radius:12px!important;background:#0f172ab3!important}.gp-admin-help-card i{display:grid!important;place-items:center!important;width:28px!important;height:28px!important;border-radius:9px!important;background:#2563eb38!important;color:#80c7ff!important;font-style:normal!important}.gp-admin-help-card strong,.gp-admin-help-card span{display:block!important}.gp-admin-help-card strong{font-size:12px!important;color:#fff!important}.gp-admin-help-card span{font-size:11px!important;color:#e2eeff94!important}.gp-admin-desktop-main{min-width:0!important;min-height:0!important;display:flex!important;flex-direction:column!important;height:100%!important;overflow:hidden!important}.gp-admin-topbar{flex:0 0 52px!important;height:52px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;padding:8px 58px 8px 12px!important;border-bottom:1px solid rgba(66,153,225,.12)!important;background:#010914d1!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important}.gp-admin-topbar-left,.gp-admin-topbar-right{display:flex!important;align-items:center!important;gap:8px!important;min-width:0!important}.gp-admin-topbar-left button{min-height:32px!important;padding:0 14px!important;border-radius:10px!important;border:1px solid rgba(66,153,225,.18)!important;background:#0f172ab3!important;color:#eff7ffe0!important;font-size:12px!important;font-weight:850!important}.gp-admin-topbar-left .gp-admin-top-pill{border-color:#00e0ff38!important;background:#021322d6!important}.gp-admin-topbar-left .gp-admin-visit-site{border-color:#00ffd15c!important;background:linear-gradient(135deg,#00d8ff,#00ffc3)!important;color:#03111d!important;box-shadow:0 0 16px #00ffd133!important}.gp-admin-live{display:inline-flex!important;align-items:center!important;gap:6px!important;color:#e5f4ffc7!important;font-size:12px!important;font-weight:750!important}.gp-admin-live i{width:8px!important;height:8px!important;border-radius:50%!important;background:#00ff94!important;box-shadow:0 0 12px #00ff94bf!important}.gp-admin-topbar-right b,.gp-admin-topbar-right small{display:block!important;line-height:1.1!important}.gp-admin-topbar-right b{color:#fff!important;font-size:12px!important}.gp-admin-topbar-right small{color:#e2eeff8f!important;font-size:10px!important}.gp-admin-scroll-area{flex:1 1 auto!important;min-height:0!important;overflow:auto!important;padding:13px 16px 16px!important;scrollbar-width:thin!important}.gp-admin-page-head{display:flex!important;align-items:flex-end!important;justify-content:space-between!important;gap:20px!important;margin-bottom:12px!important}.gp-admin-page-head p{margin:0 0 4px!important;color:#7db5ffbd!important;font-size:11px!important;font-weight:850!important}.gp-admin-page-head h2{margin:0!important;color:#f7fbff!important;font-size:clamp(23px,2vw,32px)!important;line-height:1.05!important}.gp-admin-page-head small{display:block!important;margin-top:5px!important;color:#e2eeff9e!important;font-size:12px!important}.gp-admin-page-actions{display:flex!important;align-items:center!important;gap:8px!important;padding-right:46px!important}.gp-admin-page-actions button,.gp-admin-filter-row button,.gp-admin-table-footer button{border:1px solid rgba(66,153,225,.18)!important;border-radius:10px!important;background:#0f172ac7!important;color:#f2f8ffeb!important;font-size:12px!important;font-weight:850!important;cursor:pointer!important}.gp-admin-page-actions .gp-admin-primary-action{min-height:36px!important;padding:0 16px!important;border-color:#0084ff8c!important;background:linear-gradient(135deg,#087bff,#1e5bff)!important;color:#fff!important;box-shadow:0 10px 24px #087bff38!important}.gp-admin-page-actions .gp-admin-secondary-action{min-height:36px!important;padding:0 14px!important}.gp-admin-stat-grid--reference{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:12px!important;margin-bottom:13px!important}.gp-admin-stat-grid--reference .gp-admin-stat-card{min-height:104px!important;padding:15px 14px!important;border-radius:14px!important;border:1px solid rgba(66,153,225,.12)!important;background:#081324d6!important;box-shadow:inset 0 1px #ffffff09,0 14px 30px #0000002e!important}.gp-admin-stat-grid--reference .gp-admin-stat-card span,.gp-admin-stat-grid--reference .gp-admin-stat-card small{color:#e2eeff9c!important;font-size:10px!important;font-weight:900!important;letter-spacing:.05em!important;text-transform:uppercase!important}.gp-admin-stat-grid--reference .gp-admin-stat-card strong{color:#fff!important;margin:7px 0 4px!important;font-size:clamp(22px,1.6vw,30px)!important}.gp-admin-stat-grid--reference .gp-admin-stat-card b{width:42px!important;height:42px!important;border-radius:11px!important}.gp-admin-stat-card.is-orange b{background:#f9731633!important;color:#ffac62!important}.gp-admin-main-grid{display:grid!important;grid-template-columns:minmax(0,1fr) 340px!important;gap:13px!important;align-items:start!important;min-width:0!important;margin-bottom:13px!important}.gp-admin-users-zone{min-width:0!important}.gp-admin-filter-row{display:grid!important;grid-template-columns:minmax(240px,1fr) 140px 140px 112px 104px!important;gap:8px!important;margin-bottom:10px!important}.gp-admin-search-shell{display:flex!important;align-items:center!important;gap:9px!important;min-height:40px!important;padding:0 12px!important;border:1px solid rgba(66,153,225,.14)!important;border-radius:10px!important;background:#030c19e0!important}.gp-admin-search-shell i{color:#93c5fdcc!important;font-style:normal!important}.gp-admin-search-shell .gp-admin-search{width:100%!important;min-width:0!important;height:38px!important;padding:0!important;border:0!important;border-radius:0!important;background:transparent!important;color:#f8fbff!important;font-size:12px!important}.gp-admin-filter-row button{min-height:40px!important;padding:0 12px!important;text-align:left!important}.gp-admin-main-grid .gp-admin-table-card{border-radius:12px!important;border:1px solid rgba(66,153,225,.12)!important;background:#06101fe6!important;overflow:hidden!important}.gp-admin-main-grid .gp-admin-table-wrap{max-height:clamp(276px,39vh,475px)!important;overflow:auto!important}.gp-admin-main-grid .gp-admin-user-table{min-width:1110px!important;border-collapse:collapse!important}.gp-admin-main-grid .gp-admin-user-table th{height:42px!important;background:#0d1c31f5!important;color:#e2eeff99!important;font-size:10px!important;font-weight:950!important;letter-spacing:.07em!important}.gp-admin-main-grid .gp-admin-user-table td{height:50px!important;padding:9px 12px!important;border-bottom:1px solid rgba(66,153,225,.08)!important;color:#eff7ffd1!important;font-size:12px!important}.gp-admin-check-cell,.gp-admin-main-grid .gp-admin-user-table th:first-child{width:38px!important;text-align:center!important}.gp-admin-user-avatar{box-shadow:0 0 16px #00e0ff1f!important}.gp-admin-pill.is-role{border:1px solid rgba(37,99,235,.24)!important;background:#2563eb24!important;color:#70b4ff!important;text-transform:capitalize!important}.gp-admin-status.is-expired{background:#ef444424!important;color:#f77!important}.gp-admin-row-actions{min-width:150px!important}.gp-admin-row-actions button{width:27px!important;height:27px!important;border-radius:7px!important;color:#e2eeffd1!important;background:#081324e0!important}.gp-admin-row-actions button:nth-child(2),.gp-admin-row-actions button:nth-child(3){color:#f0b90b!important;border-color:#f0b90b3d!important;background:#f0b90b1a!important}.gp-admin-empty-row{height:118px!important}.gp-admin-empty-row strong,.gp-admin-empty-row span{display:block!important}.gp-admin-empty-row strong{color:#f8fbff!important;font-size:13px!important}.gp-admin-empty-row span{margin-top:5px!important;color:#e2eeff85!important;font-size:12px!important}.gp-admin-table-footer{min-height:48px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:12px!important;padding:8px 12px!important;color:#e2eeff94!important;font-size:12px!important}.gp-admin-table-footer>div{display:flex!important;align-items:center!important;gap:6px!important}.gp-admin-table-footer button{min-width:30px!important;min-height:30px!important;padding:0 8px!important;text-align:center!important}.gp-admin-table-footer button.active{background:#0b75ff!important;border-color:#0b75ff!important;color:#fff!important}.gp-admin-right-stack{display:grid!important;gap:12px!important;min-width:0!important}.gp-admin-right-stack .gp-admin-side-card{border-radius:12px!important;border:1px solid rgba(66,153,225,.12)!important;background:#06101fe6!important;box-shadow:inset 0 1px #ffffff08!important}.gp-admin-activity-card{min-height:178px!important;padding:15px!important}.gp-admin-activity-card h3,.gp-admin-quick-actions-card h3{margin:0 0 12px!important;color:#f8fbff!important;font-size:13px!important;font-weight:950!important;text-transform:uppercase!important}.gp-admin-activity-content{display:grid!important;grid-template-columns:132px minmax(0,1fr)!important;align-items:center!important;gap:12px!important}.gp-admin-activity-content .gp-admin-donut{width:120px!important;height:120px!important;margin:0!important;background:conic-gradient(#22c55e 0 7%,#2563eb 7% 80%,#ef4444 80% 100%)!important}.gp-admin-activity-content .gp-admin-donut:after{inset:22px!important;background:#071426!important}.gp-admin-donut strong,.gp-admin-donut span{position:relative!important;z-index:2!important;display:block!important;text-align:center!important}.gp-admin-donut span{color:#e2eeff9e!important;font-size:10px!important;text-transform:uppercase!important}.gp-admin-donut strong{margin-top:4px!important;color:#fff!important;font-size:19px!important;font-weight:950!important}.gp-admin-legend-stack{min-width:0!important}.gp-admin-legend{padding:7px 0!important;border:0!important;color:#e2eeffbd!important;font-size:12px!important}.gp-admin-legend b{color:#e2eeffb3!important;font-size:11px!important;white-space:nowrap!important}.gp-admin-legend i.offline,.gp-admin-legend i.banned{background:#ef4444!important}.gp-admin-quick-actions-card{padding:15px!important}.gp-admin-quick-actions-card button{width:100%!important;display:flex!important;align-items:center!important;gap:12px!important;min-height:52px!important;margin:0 0 10px!important;padding:10px!important;border-radius:11px!important;text-align:left!important;border:1px solid transparent!important;background:transparent!important;color:#e2eeffdb!important}.gp-admin-quick-actions-card button:hover{border-color:#00e0ff2e!important;background:#00e0ff0f!important}.gp-admin-quick-actions-card button i{display:grid!important;place-items:center!important;width:34px!important;height:34px!important;border-radius:9px!important;background:#2563eb33!important;color:#8fc7ff!important;font-style:normal!important}.gp-admin-quick-actions-card button strong,.gp-admin-quick-actions-card button small{display:block!important}.gp-admin-quick-actions-card button strong{color:#f8fbff!important;font-size:12px!important}.gp-admin-quick-actions-card button small{color:#e2eeff8a!important;font-size:11px!important}.gp-admin-bottom-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:12px!important}.gp-admin-bottom-card{position:relative!important;min-height:128px!important;overflow:hidden!important;padding:16px!important;border-radius:12px!important;border:1px solid rgba(66,153,225,.12)!important;background:#06101fe6!important;box-shadow:inset 0 1px #ffffff08!important}.gp-admin-bottom-card h3{margin:0 0 10px!important;color:#f8fbff!important;font-size:12px!important;font-weight:950!important;text-transform:uppercase!important}.gp-admin-bottom-card strong{display:block!important;color:#fff!important;font-size:24px!important;line-height:1!important;margin-bottom:5px!important}.gp-admin-bottom-card small{display:block!important;color:#e2eeff94!important;font-size:12px!important}.gp-admin-bottom-card a,.gp-admin-bottom-card em{display:inline-flex!important;margin-top:8px!important;color:#40a3ff!important;font-size:12px!important;font-style:normal!important;font-weight:850!important}.gp-admin-bottom-card em{color:#42ffae!important}.gp-admin-spark{position:absolute!important;right:14px!important;bottom:12px!important;left:42%!important;height:58px!important;display:flex!important;align-items:flex-end!important;justify-content:flex-end!important;gap:3px!important;opacity:.9!important}.gp-admin-spark i{display:block!important;width:4px!important;height:var(--h)!important;min-height:8px!important;border-radius:999px 999px 0 0!important;background:linear-gradient(180deg,#0084fff2,#0084ff38)!important;box-shadow:0 0 8px #0084ff33!important}.gp-admin-spark--line i,.gp-admin-spark--growth i{width:6px!important;background:linear-gradient(180deg,#22c55efa,#22c55e2e)!important;box-shadow:0 0 8px #22c55e2e!important}.gp-admin-spark--red-bars i{background:linear-gradient(180deg,#ef4444f2,#ef444433)!important;box-shadow:0 0 8px #ef44442e!important}.gp-admin-alert--preview{display:none!important}@media(max-width:1380px){.gp-admin-full-shell{grid-template-columns:206px minmax(0,1fr)!important}.gp-admin-stat-grid--reference{grid-template-columns:repeat(3,minmax(0,1fr))!important}.gp-admin-main-grid{grid-template-columns:1fr!important}.gp-admin-right-stack{grid-template-columns:repeat(2,minmax(0,1fr))!important}}@media(max-width:980px){.gp-admin-full-shell{grid-template-columns:1fr!important}.gp-admin-left-sidebar{display:none!important}.gp-admin-topbar{padding-left:10px!important}.gp-admin-topbar-left{overflow-x:auto!important}.gp-admin-stat-grid--reference,.gp-admin-bottom-grid,.gp-admin-right-stack{grid-template-columns:1fr!important}.gp-admin-filter-row{grid-template-columns:1fr 1fr!important}.gp-admin-page-head{align-items:stretch!important;flex-direction:column!important}.gp-admin-page-actions{padding-right:46px!important}}@media(max-width:620px){.gp-admin-dashboard-close{top:10px!important;right:10px!important}.gp-admin-scroll-area{padding:10px!important}.gp-admin-filter-row{grid-template-columns:1fr!important}.gp-admin-page-actions{flex-direction:column!important;align-items:stretch!important}.gp-admin-page-actions button{width:100%!important}}#gp-admin-dashboard-dialog,#gp-admin-dashboard-dialog *{box-sizing:border-box}#gp-admin-dashboard-dialog{position:fixed;inset:0;z-index:2147483000;display:grid;place-items:center;padding:8px;background:#00050cb8;backdrop-filter:blur(14px) saturate(135%);-webkit-backdrop-filter:blur(14px) saturate(135%);color:#eaf3ff}#gp-admin-dashboard-dialog .gp-admin-dashboard-window{position:relative;width:min(100%,1920px);height:min(100%,1080px);overflow:hidden;border:1px solid rgba(58,129,255,.18);border-radius:20px;background:radial-gradient(circle at 22% -10%,rgba(0,224,255,.16),transparent 34%),radial-gradient(circle at 80% 0%,rgba(37,99,235,.16),transparent 32%),linear-gradient(180deg,#030b19fc,#010711fc);box-shadow:0 32px 120px #000000bd,inset 0 1px #ffffff0f}#gp-admin-dashboard-dialog .gp-admin-dashboard-close{position:absolute;top:12px;right:12px;z-index:20;display:grid;place-items:center;width:36px;height:36px;border:1px solid rgba(255,255,255,.12);border-radius:11px;background:#ffffff13;color:#fff;font-size:24px;line-height:1;cursor:pointer;box-shadow:0 12px 32px #00000059}#gp-admin-dashboard-dialog .gp-admin-dashboard-close:hover{border-color:#ff586985;background:#ff58692e}#gp-admin-dashboard-dialog .gp-admin-dashboard-content{width:100%;height:100%;display:grid;grid-template-rows:56px minmax(0,1fr);min-width:0;min-height:0}#gp-admin-dashboard-dialog .gp-admin-dashboard-topbar{display:flex;align-items:center;justify-content:space-between;gap:14px;min-width:0;height:56px;padding:0 58px 0 13px;border-bottom:1px solid rgba(64,122,206,.14);background:linear-gradient(180deg,#051020fa,#030c1af5)}#gp-admin-dashboard-dialog .gp-admin-top-left,#gp-admin-dashboard-dialog .gp-admin-top-right{display:flex;align-items:center;gap:10px;min-width:0}#gp-admin-dashboard-dialog .gp-admin-top-brand{display:inline-flex;align-items:center;gap:9px;min-width:155px;font-size:12px;font-weight:950;letter-spacing:.04em;color:#eaf6ff}#gp-admin-dashboard-dialog .gp-admin-top-brand img{width:27px;height:27px;object-fit:contain;border-radius:8px}#gp-admin-dashboard-dialog .gp-admin-top-select,#gp-admin-dashboard-dialog .gp-admin-prime-pill,#gp-admin-dashboard-dialog .gp-admin-visit-site,#gp-admin-dashboard-dialog .gp-admin-top-right button{height:34px;border:1px solid rgba(85,139,220,.2);border-radius:11px;background:#061327e0;color:#e9f2ffe6;padding:0 12px;font-size:11px;font-weight:850;white-space:nowrap}#gp-admin-dashboard-dialog .gp-admin-top-select{min-width:125px;display:inline-flex;justify-content:space-between;align-items:center}#gp-admin-dashboard-dialog .gp-admin-prime-pill{border-color:#00e0ff3d;background:linear-gradient(135deg,#0082ff33,#00e0be1a)}#gp-admin-dashboard-dialog .gp-admin-visit-site{border-color:#00f0d061;background:linear-gradient(135deg,#03e7d2,#00c7a6);color:#00151a;font-weight:950}#gp-admin-dashboard-dialog .gp-admin-top-right{padding-right:4px;color:#ecf6ffd1;font-size:12px;white-space:nowrap}#gp-admin-dashboard-dialog .gp-admin-top-right>span{display:inline-flex;align-items:center;gap:6px;color:#ebf6ffe6}#gp-admin-dashboard-dialog .gp-admin-top-right>span i{width:7px;height:7px;border-radius:999px;background:#18e59c;box-shadow:0 0 14px #18e59ccc}#gp-admin-dashboard-dialog .gp-admin-top-right strong{display:grid;gap:1px;font-size:12px;line-height:1.05}#gp-admin-dashboard-dialog .gp-admin-top-right small{color:#ffffff7a;font-size:9px}#gp-admin-dashboard-dialog .gp-admin-dashboard-grid{display:grid;grid-template-columns:178px minmax(0,1fr);min-height:0;height:100%}#gp-admin-dashboard-dialog .gp-admin-dashboard-sidebar{display:grid;grid-template-rows:auto minmax(0,1fr) auto;min-height:0;border-right:1px solid rgba(64,122,206,.14);background:#030c1beb;padding:10px 9px}#gp-admin-dashboard-dialog .gp-admin-sidebar-spacer{height:2px}#gp-admin-dashboard-dialog .gp-admin-menu{display:flex;flex-direction:column;gap:5px;overflow:auto;padding-right:2px;scrollbar-width:thin}#gp-admin-dashboard-dialog .gp-admin-menu-item{width:100%;min-height:32px;display:grid;grid-template-columns:20px minmax(0,1fr) 14px;align-items:center;gap:6px;border:1px solid transparent;border-radius:9px;padding:0 8px;background:transparent;color:#e5efffb8;text-align:left;cursor:default}#gp-admin-dashboard-dialog .gp-admin-menu-item span{display:grid;place-items:center;color:#89b8fff2;font-size:12px}#gp-admin-dashboard-dialog .gp-admin-menu-item b{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:11px;font-weight:850}#gp-admin-dashboard-dialog .gp-admin-menu-item em{color:#ffffff6b;font-style:normal}#gp-admin-dashboard-dialog .gp-admin-menu-item.active{border-color:#2563eb42;background:linear-gradient(135deg,#2563eb33,#0ea5e914);color:#fff}#gp-admin-dashboard-dialog .gp-admin-menu-item.is-child{min-height:29px;grid-template-columns:20px minmax(0,1fr) 0;padding-left:22px;color:#e6f1ffa3}#gp-admin-dashboard-dialog .gp-admin-help-card{display:flex;align-items:center;gap:9px;margin-top:10px;border:1px solid rgba(66,137,230,.18);border-radius:13px;background:#09162ac7;padding:10px}#gp-admin-dashboard-dialog .gp-admin-help-card span{display:grid;place-items:center;width:28px;height:28px;border-radius:10px;background:#2563eb29}#gp-admin-dashboard-dialog .gp-admin-help-card strong,#gp-admin-dashboard-dialog .gp-admin-help-card small{display:block;line-height:1.2}#gp-admin-dashboard-dialog .gp-admin-help-card strong{font-size:11px}#gp-admin-dashboard-dialog .gp-admin-help-card small{color:#ffffff85;font-size:10px}#gp-admin-dashboard-dialog .gp-admin-dashboard-main{display:flex;flex-direction:column;gap:12px;min-width:0;min-height:0;overflow:auto;padding:14px;scrollbar-width:thin}#gp-admin-dashboard-dialog .gp-admin-breadcrumb{color:#b0c9eaad;font-size:10px;font-weight:850;letter-spacing:.03em;text-transform:uppercase}#gp-admin-dashboard-dialog .gp-admin-breadcrumb span{margin:0 8px;color:#ffffff47}#gp-admin-dashboard-dialog .gp-admin-breadcrumb b{color:#68a8ff}#gp-admin-dashboard-dialog .gp-admin-titlebar{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}#gp-admin-dashboard-dialog .gp-admin-titlebar h2{margin:0 0 4px;color:#f6fbff;font-size:clamp(22px,1.75vw,32px);line-height:1;letter-spacing:-.03em}#gp-admin-dashboard-dialog .gp-admin-titlebar p{margin:0;color:#dfecff9e;font-size:12px}#gp-admin-dashboard-dialog .gp-admin-title-actions{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}#gp-admin-dashboard-dialog .gp-admin-title-actions .gp-main-action,#gp-admin-dashboard-dialog .gp-admin-title-actions .gp-soft-action,#gp-admin-dashboard-dialog .gp-admin-filters .gp-soft-action{min-height:34px;border-radius:9px;padding-inline:12px;font-size:11px;white-space:nowrap}#gp-admin-dashboard-dialog .gp-admin-stat-grid--top{display:grid;grid-template-columns:repeat(6,minmax(118px,1fr));gap:12px}#gp-admin-dashboard-dialog .gp-admin-stat-card{min-height:94px;padding:14px 13px;border-color:#467ac429;border-radius:14px;background:linear-gradient(180deg,#0c192df0,#081222eb)}#gp-admin-dashboard-dialog .gp-admin-stat-card span,#gp-admin-dashboard-dialog .gp-admin-stat-card small{letter-spacing:.055em;color:#e1efff8a;font-size:10px}#gp-admin-dashboard-dialog .gp-admin-stat-card strong{margin:8px 0 4px;color:#fff;font-size:clamp(20px,1.6vw,29px)}#gp-admin-dashboard-dialog .gp-admin-stat-card b{width:38px;height:38px;border-radius:11px}#gp-admin-dashboard-dialog .gp-admin-stat-card.is-blue b{background:#2563eb33;color:#71b5ff}#gp-admin-dashboard-dialog .gp-admin-stat-card.is-green b{background:#10b9812e;color:#2af0b1}#gp-admin-dashboard-dialog .gp-admin-stat-card.is-orange b{background:#f973162e;color:#ff9a4d}#gp-admin-dashboard-dialog .gp-admin-stat-card.is-red b{background:#ef44442e;color:#ff7787}#gp-admin-dashboard-dialog .gp-admin-stat-card.is-purple b{background:#7c3aed33;color:#bda7ff}#gp-admin-dashboard-dialog .gp-admin-alert{padding:10px 12px;border-radius:12px;font-size:12px}#gp-admin-dashboard-dialog .gp-admin-main-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(286px,320px);gap:12px;min-width:0;align-items:start}#gp-admin-dashboard-dialog .gp-admin-table-column,#gp-admin-dashboard-dialog .gp-admin-right-stack{min-width:0}#gp-admin-dashboard-dialog .gp-admin-filters{display:grid;grid-template-columns:minmax(240px,1fr) 128px 128px auto auto;gap:9px;margin-bottom:10px}#gp-admin-dashboard-dialog .gp-admin-search-field{display:flex;align-items:center;gap:8px;min-width:0;height:38px;border:1px solid rgba(76,129,204,.16);border-radius:11px;background:#040d1cdb;color:#e1efff8c;padding:0 12px}#gp-admin-dashboard-dialog .gp-admin-search-field .gp-admin-search{width:100%;min-width:0;height:100%;border:0;border-radius:0;background:transparent;color:#f7fbff;padding:0;font-size:12px}#gp-admin-dashboard-dialog .gp-admin-filters select,#gp-admin-dashboard-dialog .gp-admin-table-footer select{height:38px;min-width:0;border:1px solid rgba(76,129,204,.16);border-radius:11px;background:#040d1cdb;color:#f2f8ff;padding:0 10px;font-size:12px;font-weight:850}#gp-admin-dashboard-dialog .gp-admin-table-card,#gp-admin-dashboard-dialog .gp-admin-side-card,#gp-admin-dashboard-dialog .gp-admin-bottom-card{border:1px solid rgba(70,122,196,.15);border-radius:15px;background:linear-gradient(180deg,#0a172af0,#06101ff0);box-shadow:inset 0 1px #ffffff09}#gp-admin-dashboard-dialog .gp-admin-table-card{overflow:hidden}#gp-admin-dashboard-dialog .gp-admin-table-wrap{max-height:clamp(285px,38vh,440px);overflow:auto;scrollbar-width:thin}#gp-admin-dashboard-dialog .gp-admin-user-table{min-width:1000px;border-collapse:collapse}#gp-admin-dashboard-dialog .gp-admin-user-table th{background:#101b2d;color:#ddecff8f;font-size:10px}#gp-admin-dashboard-dialog .gp-admin-user-table th,#gp-admin-dashboard-dialog .gp-admin-user-table td{padding:10px 11px;border-bottom-color:#ffffff0e;font-size:11px}#gp-admin-dashboard-dialog .gp-admin-user-cell{min-width:172px}#gp-admin-dashboard-dialog .gp-admin-user-avatar{width:30px;height:30px;flex-basis:30px;color:#03111c;font-size:10px}#gp-admin-dashboard-dialog .gp-admin-pill,#gp-admin-dashboard-dialog .gp-admin-status{padding:5px 8px;border-radius:7px;font-size:10px}#gp-admin-dashboard-dialog .gp-admin-row-actions{gap:5px}#gp-admin-dashboard-dialog .gp-admin-row-actions button{width:27px;height:27px;border-radius:8px;background:#07162ae0}#gp-admin-dashboard-dialog .gp-admin-row-actions button[title*=Approve],#gp-admin-dashboard-dialog .gp-admin-row-actions button[title*=Ban]{border-color:#f0b90b4d;background:#f0b90b1f;color:#f0b90b}#gp-admin-dashboard-dialog .gp-admin-table-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:42px;border-top:1px solid rgba(255,255,255,.055);padding:7px 10px;color:#e1efffa8;font-size:11px}#gp-admin-dashboard-dialog .gp-admin-table-footer>div{display:flex;align-items:center;gap:5px}#gp-admin-dashboard-dialog .gp-admin-table-footer button{min-width:30px;height:30px;border:1px solid rgba(255,255,255,.08);border-radius:8px;background:#ffffff0b;color:#ebf6ffc7}#gp-admin-dashboard-dialog .gp-admin-table-footer button.active{border-color:#2563eb85;background:#1267ff;color:#fff}#gp-admin-dashboard-dialog .gp-admin-right-stack{display:grid;gap:12px;align-content:start}#gp-admin-dashboard-dialog .gp-admin-side-card{padding:14px}#gp-admin-dashboard-dialog .gp-admin-side-card h3{margin:0 0 12px;color:#f4f9ff;font-size:13px;text-transform:uppercase}#gp-admin-dashboard-dialog .gp-admin-overview-body{display:grid;grid-template-columns:128px minmax(0,1fr);gap:12px;align-items:center}#gp-admin-dashboard-dialog .gp-admin-donut{width:120px;height:120px;margin:0}#gp-admin-dashboard-dialog .gp-admin-donut:after{inset:29px;background:#0c192d}#gp-admin-dashboard-dialog .gp-admin-donut span{font-size:19px}#gp-admin-dashboard-dialog .gp-admin-legend-list{display:grid;gap:7px}#gp-admin-dashboard-dialog .gp-admin-legend{border:0;padding:3px 0;font-size:11px}#gp-admin-dashboard-dialog .gp-admin-actions-card{display:grid;gap:10px}#gp-admin-dashboard-dialog .gp-admin-actions-card button{display:grid;grid-template-columns:34px minmax(0,1fr);align-items:center;gap:10px;width:100%;margin:0;border:1px solid transparent;border-radius:11px;background:#ffffff09;padding:9px 10px;color:#f6fbff;text-align:left}#gp-admin-dashboard-dialog .gp-admin-actions-card button>span{display:grid;place-items:center;width:32px;height:32px;border-radius:10px;background:#2563eb29}#gp-admin-dashboard-dialog .gp-admin-actions-card strong,#gp-admin-dashboard-dialog .gp-admin-actions-card small{display:block}#gp-admin-dashboard-dialog .gp-admin-actions-card strong{font-size:12px}#gp-admin-dashboard-dialog .gp-admin-actions-card small{color:#e0eeff8a;font-size:10px}#gp-admin-dashboard-dialog .gp-admin-bottom-grid{display:grid;grid-template-columns:repeat(4,minmax(160px,1fr));gap:12px}#gp-admin-dashboard-dialog .gp-admin-bottom-card{min-height:110px;display:grid;grid-template-columns:minmax(120px,.72fr) minmax(110px,1fr);align-items:center;gap:10px;padding:13px;overflow:hidden}#gp-admin-dashboard-dialog .gp-admin-bottom-card h3{margin:0 0 10px;color:#e8f3ffd6;font-size:11px;font-weight:900;text-transform:uppercase}#gp-admin-dashboard-dialog .gp-admin-bottom-card strong{display:block;color:#fff;font-size:22px;line-height:1}#gp-admin-dashboard-dialog .gp-admin-bottom-card small{display:block;margin-top:5px;color:#e2eeff99;font-size:10px}#gp-admin-dashboard-dialog .gp-admin-spark{position:relative;display:flex;align-items:end;justify-content:space-between;gap:3px;height:66px;min-width:0;overflow:hidden}#gp-admin-dashboard-dialog .gp-admin-spark:before{content:"";position:absolute;inset:auto 0 0;height:45%;border-radius:999px;background:linear-gradient(180deg,rgba(45,212,191,.13),transparent);filter:blur(2px)}#gp-admin-dashboard-dialog .gp-admin-spark i{position:relative;z-index:1;width:100%;max-width:6px;height:var(--h, 45%);min-height:8px;border-radius:999px 999px 2px 2px;background:linear-gradient(180deg,#30e6aaf2,#30e6aa2e);box-shadow:0 0 14px #30e6aa1f}#gp-admin-dashboard-dialog .gp-admin-spark--bars-blue i,#gp-admin-dashboard-dialog .gp-admin-spark--growth i{background:linear-gradient(180deg,#2a8bfff2,#2a8bff2e);box-shadow:0 0 14px #2a8bff24}#gp-admin-dashboard-dialog .gp-admin-spark--bars-red i{background:linear-gradient(180deg,#ff5066f2,#ff50662e);box-shadow:0 0 14px #ff506624}#gp-admin-dashboard-dialog .gp-admin-sync-note{color:#cbdeff5c;font-size:10px;text-align:right}@media(max-width:1360px){#gp-admin-dashboard-dialog .gp-admin-top-select:nth-of-type(2),#gp-admin-dashboard-dialog .gp-admin-prime-pill{display:none}#gp-admin-dashboard-dialog .gp-admin-stat-grid--top{grid-template-columns:repeat(3,minmax(0,1fr))}#gp-admin-dashboard-dialog .gp-admin-main-layout{grid-template-columns:1fr}#gp-admin-dashboard-dialog .gp-admin-right-stack{grid-template-columns:1fr 1fr}}@media(max-width:980px){#gp-admin-dashboard-dialog{padding:0}#gp-admin-dashboard-dialog .gp-admin-dashboard-window{border-radius:0}#gp-admin-dashboard-dialog .gp-admin-dashboard-grid{grid-template-columns:1fr}#gp-admin-dashboard-dialog .gp-admin-dashboard-sidebar{display:none}#gp-admin-dashboard-dialog .gp-admin-dashboard-topbar{padding-left:10px;overflow-x:auto}#gp-admin-dashboard-dialog .gp-admin-titlebar,#gp-admin-dashboard-dialog .gp-admin-table-footer{align-items:stretch;flex-direction:column}#gp-admin-dashboard-dialog .gp-admin-filters{grid-template-columns:1fr 1fr}#gp-admin-dashboard-dialog .gp-admin-search-field{grid-column:1 / -1}#gp-admin-dashboard-dialog .gp-admin-bottom-grid,#gp-admin-dashboard-dialog .gp-admin-right-stack{grid-template-columns:1fr}}body.gp-admin-dashboard-open{overflow:hidden!important}.gp-admin-dashboard-overlay{position:fixed;inset:0;z-index:2147483600;display:grid;place-items:center;padding:10px;background:radial-gradient(circle at 18% 12%,rgba(0,214,255,.12),transparent 34%),radial-gradient(circle at 80% 10%,rgba(240,185,11,.08),transparent 28%),#010712bd;-webkit-backdrop-filter:blur(14px) saturate(1.25);backdrop-filter:blur(14px) saturate(1.25)}.gp-admin-dashboard-window{position:relative;width:min(1860px,calc(100vw - 22px));height:min(980px,calc(100vh - 22px));min-height:680px;overflow:hidden;border:1px solid rgba(60,118,195,.28);border-radius:18px;background:linear-gradient(180deg,#050d1cfc,#020813fc);box-shadow:0 34px 130px #000000b8,0 0 0 1px #ffffff09 inset,0 0 70px #00d6ff14;color:#eef6ff}.gp-admin-dashboard-close{position:absolute;top:10px;right:10px;z-index:20;width:34px;height:34px;border:1px solid rgba(255,255,255,.16);border-radius:11px;background:#ffffff13;color:#fff;font-size:22px;line-height:1;cursor:pointer}.gp-admin-dashboard-close:hover{border-color:#00f0d085;background:#00f0d029}.gp-admin-dashboard-frame{width:100%;height:100%;display:grid;grid-template-columns:214px minmax(0,1fr);grid-template-rows:54px minmax(0,1fr);min-width:0;min-height:0;background:linear-gradient(180deg,#061021,#020714)}.gp-admin-terminal-topbar{grid-column:1 / -1;display:flex;align-items:center;gap:10px;min-width:0;padding:8px 52px 8px 14px;border-bottom:1px solid rgba(60,118,195,.16);background:linear-gradient(180deg,#030b18f5,#020711fa)}.gp-admin-brand{display:inline-flex;align-items:center;gap:9px;min-width:178px;color:#dff7ff;font-size:12px;font-weight:950;letter-spacing:.025em}.gp-brand-orb{display:grid;place-items:center;width:27px;height:27px;border-radius:9px;background:linear-gradient(135deg,#0088fff2,#00f0d0e0);color:#01111b;font-size:12px;font-weight:1000;box-shadow:0 0 20px #00e0ff3d}.gp-admin-market-select,.gp-admin-top-btn,.gp-admin-visit-btn,.gp-admin-gear,.gp-admin-user-mini{min-height:34px;border:1px solid rgba(71,139,222,.18);background:#091325b8;color:#eef6ffe0;border-radius:10px;font-size:11px;font-weight:900}.gp-admin-market-select{display:inline-flex;align-items:center;justify-content:space-between;gap:24px;min-width:145px;padding:0 11px}.gp-admin-market-select em,.gp-admin-user-mini em{color:#ffffff6b;font-style:normal}.gp-admin-top-btn,.gp-admin-visit-btn,.gp-admin-gear{display:inline-grid;place-items:center;padding:0 13px;cursor:default}.gp-admin-top-btn{border-color:#2b8eff4d;background:linear-gradient(135deg,#102444e6,#06142de6)}.gp-admin-visit-btn{border-color:#00f0d075;background:linear-gradient(135deg,#00f0d0,#12ffe5);color:#021417;font-weight:1000}.gp-admin-top-spacer{flex:1 1 auto;min-width:18px}.gp-admin-live{display:inline-flex;align-items:center;gap:6px;color:#f0faffd6;white-space:nowrap;font-size:12px;font-weight:900}.gp-admin-live i{width:8px;height:8px;border-radius:50%;background:#00ff8a;box-shadow:0 0 12px #00ff8ad9}.gp-admin-gear{width:34px;padding:0}.gp-admin-user-mini{display:inline-flex;align-items:center;gap:9px;min-width:146px;padding:4px 11px 4px 6px}.gp-admin-user-mini>span{display:grid;place-items:center;width:29px;height:29px;border-radius:50%;overflow:hidden;background:linear-gradient(135deg,#00d6ffeb,#f0b90bd1);color:#03121a;font-weight:1000}.gp-admin-user-mini strong,.gp-admin-user-mini small{display:block;line-height:1.05}.gp-admin-user-mini small{margin-top:3px;color:#ffffff8c;font-size:10px}.gp-admin-dashboard-nav{display:flex;flex-direction:column;min-width:0;min-height:0;padding:12px 9px;border-right:1px solid rgba(60,118,195,.14);background:linear-gradient(180deg,#040c1bfa,#020813fa)}.gp-admin-nav-scroll{display:grid;gap:4px;overflow:auto;scrollbar-width:thin;padding-right:3px}.gp-admin-menu-item{display:grid;grid-template-columns:22px minmax(0,1fr) 14px;align-items:center;gap:8px;width:100%;min-height:35px;border:1px solid transparent;border-radius:9px;background:transparent;color:#e7f1ffc7;text-align:left;padding:0 9px;font-size:12px;font-weight:850;cursor:pointer}.gp-admin-menu-item span{display:grid;place-items:center;width:20px;color:#8fbdffd1;font-size:13px}.gp-admin-menu-item b{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.gp-admin-menu-item em{font-style:normal;color:#ffffff6b}.gp-admin-menu-item.is-child{min-height:32px;margin-left:13px;width:calc(100% - 13px);grid-template-columns:14px minmax(0,1fr) 0;font-size:11px;color:#e7f1ffa3}.gp-admin-menu-item.active,.gp-admin-menu-item:hover{border-color:#2563eb4d;background:linear-gradient(135deg,#1b57b257,#081c3d7a);color:#fff}.gp-admin-menu-item.is-child.active{border-color:#2563eb42;background:#144b9c6b}.gp-admin-help-card{display:flex;align-items:center;gap:10px;margin-top:auto;padding:12px;border:1px solid rgba(65,140,255,.15);border-radius:12px;background:#0a1830ad}.gp-admin-help-card>span{display:grid;place-items:center;width:32px;height:32px;border-radius:11px;background:#2b8eff29;color:#79b7ff}.gp-admin-help-card strong,.gp-admin-help-card small{display:block;line-height:1.1}.gp-admin-help-card small{margin-top:4px;color:#ffffff8a;font-size:10px}.gp-admin-dashboard-content{display:flex;flex-direction:column;gap:12px;min-width:0;min-height:0;overflow:auto;padding:14px 16px 16px;scrollbar-width:thin}.gp-admin-breadcrumb{color:#c9dbf49e;font-size:11px;font-weight:850;letter-spacing:.025em}.gp-admin-breadcrumb span{margin:0 8px;color:#6897de7a}.gp-admin-breadcrumb b{color:#66a9ff}.gp-admin-page-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}.gp-admin-page-head h2{margin:0 0 3px!important;color:#fff;font-size:clamp(23px,2vw,32px)!important;line-height:1.05!important;letter-spacing:-.035em}.gp-admin-page-head p{margin:0;color:#d9e7ff9e;font-size:13px;font-weight:700}.gp-admin-page-actions{display:flex;gap:9px;align-items:center;flex-wrap:wrap}.gp-admin-primary-action,.gp-admin-secondary-action,.gp-admin-filterbar button,.gp-admin-pagination button{min-height:36px;border:1px solid rgba(71,139,222,.2);border-radius:9px;background:#091325c7;color:#eef6ffe0;padding:0 13px;font-size:12px;font-weight:900}.gp-admin-primary-action{border-color:#2563eba8;background:linear-gradient(135deg,#0d6cff,#2c84ff);color:#fff;box-shadow:0 10px 26px #2563eb42}.gp-admin-secondary-action.is-icon{width:38px;padding:0}.gp-admin-stat-grid.gp-admin-stat-grid--six{grid-template-columns:repeat(6,minmax(0,1fr));gap:12px}.gp-admin-dashboard-content .gp-admin-stat-card{min-height:94px;padding:15px 16px;border-radius:14px;border-color:#478bde21;background:linear-gradient(180deg,#0a162be6,#050e1ee6)}.gp-admin-dashboard-content .gp-admin-stat-card span,.gp-admin-dashboard-content .gp-admin-stat-card small{color:#d1e2ff9e;font-size:10px;letter-spacing:.065em}.gp-admin-dashboard-content .gp-admin-stat-card strong{font-size:clamp(21px,1.75vw,30px)}.gp-admin-dashboard-content .gp-admin-stat-card b{width:42px;height:42px;border-radius:10px}.gp-admin-stat-card.is-orange b{background:#f973162e;color:#ff9f45}.gp-admin-main-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:12px;align-items:stretch;min-height:0}.gp-admin-users-area{min-width:0;display:flex;flex-direction:column;gap:10px}.gp-admin-filterbar{display:grid;grid-template-columns:minmax(250px,1fr) 150px 150px 110px 98px;gap:10px;padding:12px 14px;border:1px solid rgba(71,139,222,.12);border-radius:12px;background:#040d1dc7}.gp-admin-search-box{display:flex;align-items:center;gap:9px;min-width:0;min-height:36px;padding:0 12px;border:1px solid rgba(71,139,222,.18);border-radius:9px;background:#020815c7}.gp-admin-search-box span{color:#92b1e2cc;font-size:15px}.gp-admin-dashboard-content .gp-admin-search{width:100%;min-width:0;border:0;background:transparent;color:#eaf4ff;outline:0;padding:0;font-size:12px;font-weight:750}.gp-admin-filterbar button{display:inline-flex;align-items:center;justify-content:space-between;gap:8px;color:#e7f1ffbd}.gp-admin-table-card.gp-admin-table-card--pro{display:flex;flex-direction:column;min-height:390px;border-radius:12px;background:#050e1ecc;border-color:#478bde21}.gp-admin-table-card--pro .gp-admin-table-wrap{max-height:426px;min-height:0;flex:1 1 auto;overflow:auto}.gp-admin-user-table.gp-admin-user-table--pro{min-width:1020px}.gp-admin-user-table--pro th,.gp-admin-user-table--pro td{padding:10px 12px;font-size:12px;border-bottom-color:#478bde14}.gp-admin-user-table--pro th{height:38px;background:#111f38eb;color:#d9e7ff94;font-size:10px}.gp-admin-check-cell{width:36px;text-align:center!important}.gp-admin-check-cell input{width:14px;height:14px;accent-color:#2b82ff}.gp-admin-user-table--pro .gp-admin-user-cell{min-width:174px}.gp-admin-user-table--pro .gp-admin-user-avatar{width:31px;height:31px;flex-basis:31px;background:linear-gradient(135deg,#16c7ff,#315cff 55%,#805cff);color:#fff}.gp-admin-user-table--pro .gp-admin-pill,.gp-admin-user-table--pro .gp-admin-status{padding:5px 9px;border-radius:7px;font-size:11px;text-transform:capitalize}.gp-admin-status.is-expired,.gp-admin-status.is-neutral{background:#f9731624;color:#ff9a3c}.gp-admin-user-table--pro .gp-admin-row-actions{gap:5px}.gp-admin-user-table--pro .gp-admin-row-actions button{width:27px;height:27px;border-radius:7px;font-size:11px;background:#08142bdb;color:#e9f2ffd1}.gp-admin-user-table--pro .gp-admin-row-actions button:nth-child(2),.gp-admin-user-table--pro .gp-admin-row-actions button:nth-child(3){border-color:#f0b90b57;color:#f0b90b;background:#f0b90b1a}.gp-admin-pagination{display:flex;justify-content:space-between;align-items:center;gap:14px;min-height:48px;padding:0 14px;color:#d9e7ffa8;font-size:12px;border-top:1px solid rgba(71,139,222,.1)}.gp-admin-pagination>div{display:inline-flex;align-items:center;gap:7px}.gp-admin-pagination button{min-height:30px;min-width:32px;padding:0 9px}.gp-admin-pagination button.active{background:linear-gradient(135deg,#0d6cff,#2c84ff);border-color:#2563eb9e}.gp-admin-right-rail{display:grid;align-content:stretch;gap:12px;min-width:0}.gp-admin-right-rail .gp-admin-side-card{border-radius:12px;background:#050e1ecc;border-color:#478bde21}.gp-admin-side-card--activity h3,.gp-admin-side-card--quick h3{font-size:13px;text-transform:uppercase;letter-spacing:.035em}.gp-admin-activity-body{display:grid;grid-template-columns:134px minmax(0,1fr);gap:15px;align-items:center;margin-top:10px}.gp-admin-side-card--activity .gp-admin-donut{width:132px;height:132px;margin:0;background:conic-gradient(#22c55e 0 6.61%,#2563eb 6.61% 86.52%,#ef4444 86.52% 100%)}.gp-admin-side-card--activity .gp-admin-donut:after{inset:28px;background:#0a1529}.gp-admin-side-card--activity .gp-admin-donut span{margin-top:-8px;font-size:11px;color:#ffffff8f}.gp-admin-side-card--activity .gp-admin-donut b{position:relative;z-index:2;margin-top:16px;font-size:20px}.gp-admin-activity-legend{display:grid;gap:13px}.gp-admin-activity-legend div{display:flex;align-items:center;justify-content:space-between;gap:10px;color:#d9e7ffa8;font-size:12px}.gp-admin-activity-legend span{display:inline-flex;align-items:center;gap:8px}.gp-admin-activity-legend i{width:8px;height:8px;border-radius:50%;background:#64748b}.gp-admin-activity-legend i.online{background:#22c55e}.gp-admin-activity-legend i.active{background:#2563eb}.gp-admin-activity-legend i.banned{background:#ef4444}.gp-admin-side-card--quick{align-self:stretch}.gp-admin-side-card--quick button{display:grid;grid-template-columns:42px minmax(0,1fr);align-items:center;gap:11px;min-height:56px;margin-top:11px;border:0;background:transparent;text-align:left;color:#eef6ff;padding:0;cursor:default}.gp-admin-side-card--quick button>span{display:grid;place-items:center;width:38px;height:38px;border-radius:10px;background:#2563eb2e;color:#6fb0ff}.gp-admin-side-card--quick button:nth-of-type(2)>span{background:#10b9812e;color:#4bffc5}.gp-admin-side-card--quick button:nth-of-type(3)>span{background:#f0b90b2e;color:#f0b90b}.gp-admin-side-card--quick button:nth-of-type(4)>span{background:#7c3aed33;color:#bda5ff}.gp-admin-side-card--quick strong,.gp-admin-side-card--quick small{display:block;line-height:1.18}.gp-admin-side-card--quick small{margin-top:4px;color:#d9e7ff85;font-size:11px}.gp-admin-bottom-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.gp-admin-bottom-card{display:grid;grid-template-columns:118px minmax(0,1fr);align-items:end;gap:12px;min-height:132px;padding:16px;border:1px solid rgba(71,139,222,.13);border-radius:12px;background:linear-gradient(180deg,#0a162be0,#050e1ee0);overflow:hidden}.gp-admin-bottom-card h3{margin:0 0 12px;color:#e9f2ffd1;font-size:12px;text-transform:uppercase;letter-spacing:.055em}.gp-admin-bottom-card strong{display:block;color:#fff;font-size:26px;line-height:.95}.gp-admin-bottom-card small{display:block;margin-top:8px;color:#d9e7ff8f;font-size:12px}.gp-admin-bottom-card small b{color:#3dff98}.gp-admin-bottom-card small a{color:#4199ff;font-weight:900}.gp-admin-spark{display:flex;align-items:end;justify-content:space-between;gap:4px;height:62px;min-width:0;opacity:.95}.gp-admin-spark i{display:block;flex:1 1 0;min-width:3px;height:var(--h);border-radius:4px 4px 0 0;background:linear-gradient(180deg,#2a8efff2,#2a8eff3d);box-shadow:0 0 12px #2a8eff26}.gp-admin-spark--line{align-items:center;height:64px}.gp-admin-spark--line i{height:4px;align-self:calc(var(--h));border-radius:999px;transform:translateY(calc((60 - var(--h)) * .3));background:linear-gradient(90deg,#22c55e4d,#22c55ef2);box-shadow:0 0 16px #22c55e2e}.gp-admin-spark--bars.danger i,.gp-admin-spark.danger i{background:linear-gradient(180deg,#ff5366f5,#ff536638);box-shadow:0 0 12px #ff536624}@media(max-width:1500px){.gp-admin-dashboard-window{min-height:640px}.gp-admin-dashboard-frame{grid-template-columns:200px minmax(0,1fr)}.gp-admin-stat-grid.gp-admin-stat-grid--six{grid-template-columns:repeat(3,minmax(0,1fr))}.gp-admin-main-grid{grid-template-columns:minmax(0,1fr) 330px}.gp-admin-bottom-card{grid-template-columns:108px minmax(0,1fr)}}@media(max-width:1180px){.gp-admin-terminal-topbar{overflow-x:auto}.gp-admin-dashboard-frame{grid-template-columns:76px minmax(0,1fr)}.gp-admin-menu-item{grid-template-columns:1fr;justify-items:center;padding:0}.gp-admin-menu-item b,.gp-admin-menu-item em,.gp-admin-help-card div{display:none}.gp-admin-menu-item.is-child{margin-left:0;width:100%}.gp-admin-help-card{justify-content:center;padding:10px 0}.gp-admin-main-grid{grid-template-columns:1fr}.gp-admin-right-rail{grid-template-columns:1fr 1fr}.gp-admin-bottom-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:760px){.gp-admin-dashboard-overlay{padding:0}.gp-admin-dashboard-window{width:100vw;height:100vh;min-height:0;border-radius:0}.gp-admin-dashboard-frame{grid-template-columns:1fr;grid-template-rows:54px auto minmax(0,1fr)}.gp-admin-dashboard-nav{grid-row:2;border-right:0;border-bottom:1px solid rgba(60,118,195,.14);padding:8px}.gp-admin-nav-scroll{display:flex;overflow-x:auto;padding-bottom:4px}.gp-admin-menu-item{min-width:48px}.gp-admin-help-card{display:none}.gp-admin-dashboard-content{grid-row:3;padding:12px}.gp-admin-page-head{flex-direction:column}.gp-admin-filterbar{grid-template-columns:1fr 1fr}.gp-admin-search-box{grid-column:1 / -1}.gp-admin-stat-grid.gp-admin-stat-grid--six,.gp-admin-right-rail,.gp-admin-bottom-grid,.gp-admin-bottom-card{grid-template-columns:1fr}}#gp-admin-dashboard-dialog .gp-admin-check-cell{width:34px;min-width:34px;text-align:center!important}#gp-admin-dashboard-dialog .gp-admin-check-cell input{width:14px;height:14px;accent-color:#1677ff}.gp-admin-dashboard-content{width:100%!important;height:100%!important;min-width:0!important;min-height:0!important;display:flex!important;flex-direction:column!important;overflow:hidden!important;background:radial-gradient(circle at 72% -12%,rgba(0,224,255,.12),transparent 33%),linear-gradient(180deg,#03101e,#020815)!important}.gp-admin-dashboard-topbar{flex:0 0 52px!important;height:52px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;padding:8px 58px 8px 14px!important;border-bottom:1px solid rgba(66,153,225,.12)!important;background:#020a16e0!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important}.gp-admin-top-left,.gp-admin-top-right{display:flex!important;align-items:center!important;gap:8px!important;min-width:0!important}.gp-admin-top-brand{display:flex!important;align-items:center!important;gap:8px!important;padding-right:8px!important;color:#eaf7ff!important;font-size:12px!important;font-weight:950!important;white-space:nowrap!important}.gp-admin-top-brand img{width:28px!important;height:28px!important;border-radius:8px!important;object-fit:cover!important}.gp-admin-top-select,.gp-admin-prime-pill,.gp-admin-visit-site,.gp-admin-top-right button{min-height:32px!important;padding:0 13px!important;border-radius:10px!important;border:1px solid rgba(66,153,225,.18)!important;background:#0f172ab3!important;color:#eff7ffe0!important;font-size:12px!important;font-weight:850!important;white-space:nowrap!important}.gp-admin-prime-pill{border-color:#00e0ff38!important;background:#021322d6!important}.gp-admin-visit-site{border-color:#00ffd15c!important;background:linear-gradient(135deg,#00d8ff,#00ffc3)!important;color:#03111d!important;box-shadow:0 0 16px #00ffd133!important}.gp-admin-top-right>span{display:inline-flex!important;align-items:center!important;gap:6px!important;color:#e5f4ffc7!important;font-size:12px!important;font-weight:750!important;white-space:nowrap!important}.gp-admin-top-right>span i{width:8px!important;height:8px!important;border-radius:50%!important;background:#00ff94!important;box-shadow:0 0 12px #00ff94bf!important}.gp-admin-top-right>b{color:#eaf7ff!important;font-size:12px!important}.gp-admin-top-right>strong{display:grid!important;color:#fff!important;font-size:12px!important;line-height:1.1!important}.gp-admin-top-right>strong small{color:#e2eeff8f!important;font-size:10px!important;font-weight:750!important}.gp-admin-dashboard-grid{flex:1 1 auto!important;min-height:0!important;display:grid!important;grid-template-columns:224px minmax(0,1fr)!important;overflow:hidden!important}.gp-admin-dashboard-sidebar{min-width:0!important;height:100%!important;display:flex!important;flex-direction:column!important;padding:14px 10px!important;border-right:1px solid rgba(66,153,225,.13)!important;background:linear-gradient(180deg,#040e1bfa,#020812fa)!important}.gp-admin-sidebar-spacer{height:4px!important}.gp-admin-dashboard-sidebar .gp-admin-menu{flex:1 1 auto!important;min-height:0!important}.gp-admin-dashboard-sidebar .gp-admin-help-card{margin-top:12px!important}.gp-admin-dashboard-sidebar .gp-admin-help-card>span{display:grid!important;place-items:center!important;width:30px!important;height:30px!important;border-radius:9px!important;background:#2563eb38!important}.gp-admin-dashboard-sidebar .gp-admin-help-card small{display:block!important;color:#e2eeff94!important;font-size:11px!important}.gp-admin-dashboard-main{min-width:0!important;min-height:0!important;overflow:auto!important;padding:13px 16px 16px!important;scrollbar-width:thin!important}.gp-admin-breadcrumb{margin:0 0 4px!important;color:#7db5ffbd!important;font-size:11px!important;font-weight:850!important}.gp-admin-breadcrumb span{color:#e2eeff61!important;margin:0 5px!important}.gp-admin-breadcrumb b{color:#79b8ff!important}.gp-admin-titlebar{display:flex!important;align-items:flex-end!important;justify-content:space-between!important;gap:18px!important;margin-bottom:12px!important}.gp-admin-titlebar h2{margin:0!important;color:#f7fbff!important;font-size:clamp(23px,2vw,32px)!important;line-height:1.05!important}.gp-admin-titlebar p{margin:5px 0 0!important;color:#e2eeff9e!important;font-size:12px!important}.gp-admin-title-actions{display:flex!important;align-items:center!important;gap:8px!important;padding-right:44px!important}.gp-admin-title-actions .gp-main-action,.gp-admin-title-actions .gp-soft-action{min-height:36px!important;border-radius:10px!important;font-size:12px!important;font-weight:850!important}.gp-admin-stat-grid--top{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:12px!important;margin-bottom:13px!important}.gp-admin-stat-grid--top .gp-admin-stat-card{min-height:104px!important;padding:15px 14px!important;border-radius:14px!important;border:1px solid rgba(66,153,225,.12)!important;background:#081324d6!important;box-shadow:inset 0 1px #ffffff09,0 14px 30px #0000002e!important}.gp-admin-stat-grid--top .gp-admin-stat-card span,.gp-admin-stat-grid--top .gp-admin-stat-card small{color:#e2eeff9c!important;font-size:10px!important;font-weight:900!important;letter-spacing:.05em!important;text-transform:uppercase!important}.gp-admin-stat-grid--top .gp-admin-stat-card strong{color:#fff!important;margin:7px 0 4px!important;font-size:clamp(22px,1.6vw,30px)!important}.gp-admin-stat-grid--top .gp-admin-stat-card b{width:42px!important;height:42px!important;border-radius:11px!important}.gp-admin-main-layout{display:grid!important;grid-template-columns:minmax(0,1fr) 340px!important;gap:13px!important;align-items:start!important;min-width:0!important;margin-bottom:13px!important}.gp-admin-table-column{min-width:0!important}.gp-admin-filters{display:grid!important;grid-template-columns:minmax(240px,1fr) 140px 140px 112px 104px!important;gap:8px!important;margin-bottom:10px!important}.gp-admin-search-field{display:flex!important;align-items:center!important;gap:9px!important;min-height:40px!important;padding:0 12px!important;border:1px solid rgba(66,153,225,.14)!important;border-radius:10px!important;background:#030c19e0!important}.gp-admin-search-field span{color:#93c5fdcc!important}.gp-admin-search-field .gp-admin-search{width:100%!important;min-width:0!important;height:38px!important;padding:0!important;border:0!important;border-radius:0!important;background:transparent!important;color:#f8fbff!important;font-size:12px!important}.gp-admin-filters select,.gp-admin-filters button{min-height:40px!important;padding:0 11px!important;border:1px solid rgba(66,153,225,.18)!important;border-radius:10px!important;background:#0f172ac7!important;color:#f2f8ffeb!important;font-size:12px!important;font-weight:850!important}.gp-admin-main-layout .gp-admin-table-card{border-radius:12px!important;border:1px solid rgba(66,153,225,.12)!important;background:#06101fe6!important;overflow:hidden!important}.gp-admin-main-layout .gp-admin-table-wrap{max-height:clamp(276px,39vh,475px)!important;overflow:auto!important}.gp-admin-main-layout .gp-admin-user-table{min-width:1110px!important}.gp-admin-main-layout .gp-admin-user-table th{height:42px!important;background:#0d1c31f5!important}.gp-admin-main-layout .gp-admin-user-table td{height:50px!important;padding:9px 12px!important}.gp-admin-overview-card,.gp-admin-actions-card{border-radius:12px!important;border:1px solid rgba(66,153,225,.12)!important;background:#06101fe6!important;box-shadow:inset 0 1px #ffffff08!important}.gp-admin-overview-body{display:grid!important;grid-template-columns:132px minmax(0,1fr)!important;align-items:center!important;gap:12px!important}.gp-admin-overview-body .gp-admin-donut{width:120px!important;height:120px!important;margin:0!important}.gp-admin-overview-body .gp-admin-donut:after{inset:22px!important;background:#071426!important}.gp-admin-overview-body .gp-admin-donut span,.gp-admin-overview-body .gp-admin-donut small{position:relative!important;z-index:2!important}.gp-admin-legend-list{min-width:0!important}.gp-admin-actions-card button{width:100%!important;display:flex!important;align-items:center!important;gap:12px!important;min-height:52px!important;margin:0 0 10px!important;padding:10px!important;border-radius:11px!important;text-align:left!important;border:1px solid transparent!important;background:transparent!important;color:#e2eeffdb!important}.gp-admin-actions-card button:hover{border-color:#00e0ff2e!important;background:#00e0ff0f!important}.gp-admin-actions-card button>span{display:grid!important;place-items:center!important;width:34px!important;height:34px!important;border-radius:9px!important;background:#2563eb33!important}.gp-admin-actions-card button strong,.gp-admin-actions-card button small{display:block!important}.gp-admin-actions-card button strong{color:#f8fbff!important;font-size:12px!important}.gp-admin-actions-card button small{color:#e2eeff8a!important;font-size:11px!important}.gp-admin-sync-note{margin-top:8px!important;color:#e2eeff6b!important;font-size:11px!important;text-align:right!important}.gp-admin-spark--bars-blue i{background:linear-gradient(180deg,#0084fff2,#0084ff38)!important}.gp-admin-spark--bars-red i{background:linear-gradient(180deg,#ef4444f2,#ef444433)!important}@media(max-width:1380px){.gp-admin-dashboard-grid{grid-template-columns:206px minmax(0,1fr)!important}.gp-admin-stat-grid--top{grid-template-columns:repeat(3,minmax(0,1fr))!important}.gp-admin-main-layout{grid-template-columns:1fr!important}.gp-admin-right-stack{grid-template-columns:repeat(2,minmax(0,1fr))!important}}@media(max-width:980px){.gp-admin-dashboard-grid{grid-template-columns:1fr!important}.gp-admin-dashboard-sidebar{display:none!important}.gp-admin-dashboard-topbar{padding-left:10px!important}.gp-admin-top-left{overflow-x:auto!important}.gp-admin-stat-grid--top,.gp-admin-bottom-grid,.gp-admin-right-stack{grid-template-columns:1fr!important}.gp-admin-filters{grid-template-columns:1fr 1fr!important}.gp-admin-titlebar{align-items:stretch!important;flex-direction:column!important}.gp-admin-title-actions{padding-right:46px!important}}@media(max-width:620px){.gp-admin-filters{grid-template-columns:1fr!important}.gp-admin-title-actions{flex-direction:column!important;align-items:stretch!important}.gp-admin-title-actions button{width:100%!important}}#gp-admin-dashboard-dialog .gp-danger-action,.gp-danger-action{min-height:34px;border:1px solid rgba(255,83,102,.36);border-radius:9px;padding:0 12px;background:linear-gradient(135deg,#ff53662e,#701b2647);color:#ff9fab;font-size:11px;font-weight:900;cursor:pointer;white-space:nowrap}#gp-admin-dashboard-dialog .gp-danger-action:hover,.gp-danger-action:hover{border-color:#ff53669e;background:linear-gradient(135deg,#ff536642,#701b2661);color:#ffd1d7}#gp-admin-dashboard-dialog .gp-admin-title-actions .gp-danger-action{min-height:34px;border-radius:9px;padding-inline:12px;font-size:11px}.gp-admin-dashboard-home-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,420px);gap:14px;align-items:stretch}.gp-admin-section-card{border:1px solid rgba(255,255,255,.08);border-radius:18px;background:#081222eb;box-shadow:inset 0 1px #ffffff0a,0 20px 55px #0000002e;padding:16px;min-width:0}.gp-admin-section-heading{display:flex;flex-direction:column;gap:4px;margin:0 0 12px}.gp-admin-section-heading h3{margin:0;color:#fff;font-size:14px;font-weight:900;letter-spacing:.01em}.gp-admin-section-heading p{margin:0;color:#ffffff8c;font-size:12px}.gp-admin-info-list{display:grid;gap:10px}.gp-admin-info-list div{display:grid;grid-template-columns:minmax(150px,210px) minmax(0,1fr);gap:12px;align-items:center;padding:12px;border:1px solid rgba(255,255,255,.07);border-radius:14px;background:#ffffff09}.gp-admin-info-list span{color:#ffffff8f;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.gp-admin-info-list b{color:#fff;font-size:12px;font-weight:800;overflow-wrap:anywhere}.gp-admin-card-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}.gp-admin-danger-zone{border-color:#ff536638;background:linear-gradient(135deg,#2a0d19d6,#081222eb)}.gp-admin-main-layout>.gp-admin-table-column--full{min-width:0}.gp-admin-dashboard-main>.gp-admin-main-layout:has(.gp-admin-table-column--full:only-child){grid-template-columns:minmax(0,1fr)}.gp-admin-menu-item:not(.active):hover{transform:translate(2px);border-color:#00e0ff29;background:#00e0ff0e}@media(max-width:1180px){.gp-admin-dashboard-home-grid{grid-template-columns:1fr}}#gp-admin-dashboard-dialog .gp-admin-user-table tr.is-selected{background:#2563eb1f}#gp-admin-dashboard-dialog .gp-admin-table-footer small{color:#e1efff70;font-weight:700}#gp-admin-dashboard-dialog .gp-admin-pagination-controls button:disabled{opacity:.38;cursor:not-allowed}#gp-admin-dashboard-dialog .gp-admin-pagination-controls em{min-width:24px;color:#e1efff7a;font-style:normal;text-align:center}#gp-admin-dashboard-dialog .gp-admin-page-total{color:#e1efff94;font-size:11px;white-space:nowrap}#gp-admin-dashboard-dialog .gp-admin-check-cell input:not(:disabled){cursor:pointer}.prime-hidden-app{display:none!important}.pfx-root{position:fixed;inset:0;z-index:99990;background:#02040a;color:#fff;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;overflow:auto}.pfx-shell{min-height:100vh;display:grid;grid-template-columns:300px minmax(0,1fr);background:radial-gradient(circle at 70% 0%,rgba(0,132,255,.14),transparent 32%),#030407}.pfx-shell-preview{display:block}.pfx-sidebar{border-right:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,#05070c,#020307);padding:28px 20px;position:sticky;top:0;height:100vh}.pfx-side-brand,.pfx-brand{display:flex;align-items:center;gap:13px}.pfx-logo-mark{display:grid;place-items:center;width:44px;height:44px;border-radius:14px;background:linear-gradient(135deg,#006bff,#00c2ff);font-weight:950;box-shadow:0 0 28px #0084ff52}.pfx-side-brand strong,.pfx-brand strong{display:block;font-size:18px}.pfx-side-brand small,.pfx-brand small{display:block;margin-top:3px;color:#ffffff75;font-size:12px}.pfx-nav{display:grid;gap:8px;margin-top:34px}.pfx-nav-item{display:flex;align-items:center;gap:13px;height:48px;border:0;border-radius:14px;padding:0 14px;background:transparent;color:#ffffff94;font-weight:800;cursor:pointer;text-align:left}.pfx-nav-item span{width:22px;color:#158bff}.pfx-nav-item.active,.pfx-nav-item:hover{background:#0084ff21;color:#fff}.pfx-home-link{position:absolute;left:20px;right:20px;bottom:24px;border:1px solid rgba(255,255,255,.1);background:#ffffff0a;color:#fff;border-radius:14px;padding:13px;font-weight:800;cursor:pointer}.pfx-main{min-width:0}.pfx-appbar,.pfx-topbar{height:88px;border-bottom:1px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:space-between;gap:18px;padding:0 32px;background:#030407d1;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);position:sticky;top:0;z-index:5}.pfx-appbar h1{margin:0;font-size:26px}.pfx-appbar small{color:#ffffff70}.pfx-search{height:46px;min-width:360px;display:flex;align-items:center;gap:12px;border:1px solid rgba(255,255,255,.08);background:#ffffff0b;border-radius:16px;padding:0 15px;color:#ffffff73}.pfx-search kbd{margin-left:auto;background:#ffffff12;border-radius:8px;padding:4px 7px;color:#ffffff61}.pfx-actions,.pfx-top-actions,.pfx-preview-actions{display:flex;gap:10px;align-items:center}.pfx-btn{border:0;border-radius:13px;padding:12px 16px;font-weight:900;cursor:pointer;color:#fff}.pfx-btn-primary{background:linear-gradient(135deg,#006bff,#1599ff);box-shadow:0 10px 28px #006bff38}.pfx-btn-secondary{background:#ffffff12;border:1px solid rgba(255,255,255,.1)}.pfx-btn-ghost{background:transparent;border:1px solid rgba(255,255,255,.14)}.pfx-back{background:#ffffff0f;border:1px solid rgba(255,255,255,.1);color:#fff;border-radius:12px;padding:10px 13px;font-weight:800;cursor:pointer}.pfx-content{padding:28px 32px 70px}.pfx-metrics{display:grid;grid-template-columns:repeat(6,minmax(130px,1fr));gap:14px}.pfx-metric,.pfx-card{border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,#ffffff0e,#ffffff06);border-radius:22px;box-shadow:0 20px 55px #00000038}.pfx-metric{padding:18px}.pfx-metric span{display:block;color:#ffffff75;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.pfx-metric strong{display:block;margin-top:10px;font-size:28px}.good strong,.good-text{color:#10e27b!important}.bad strong,.bad-text{color:#ff4f70!important}.pfx-grid-two{display:grid;grid-template-columns:1.35fr .65fr;gap:18px;margin-top:18px}.pfx-grid-three{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}.pfx-card{padding:22px}.pfx-card-large{min-height:310px}.pfx-card-head{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:18px}.pfx-card h3,.pfx-card h2{margin:0}.pfx-card-head span,.pfx-card p{color:#ffffff80;line-height:1.55}.pfx-equity{width:100%;height:230px}.pfx-empty{display:grid;place-items:center;min-height:180px;color:#ffffff73;border:1px dashed rgba(255,255,255,.11);border-radius:18px;text-align:center;padding:18px}.pfx-empty-big{min-height:420px}.pfx-mini-list{display:grid;gap:12px}.pfx-mini-list div{display:flex;justify-content:space-between;align-items:center;padding:13px;border-radius:14px;background:#ffffff0a}.pfx-table{display:grid;gap:8px;overflow:auto}.pfx-row{display:grid;grid-template-columns:1fr .7fr .8fr .8fr .6fr .8fr 1fr .7fr;gap:12px;align-items:center;min-width:850px;padding:14px;border-radius:14px;background:#ffffff09}.pfx-row-head{color:#ffffff73;font-size:12px;font-weight:900;text-transform:uppercase;background:#ffffff0f}.pfx-icon-btn{border:1px solid rgba(255,255,255,.1);border-radius:10px;background:#ffffff0d;color:#ffffffb3;padding:8px;cursor:pointer}.pfx-journal-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:18px}.pfx-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}.pfx-tags span,.pfx-pill{border:1px solid rgba(0,132,255,.2);background:#0084ff1a;color:#6fb4ff;border-radius:999px;padding:7px 10px;font-size:12px;font-weight:800}.pfx-analysis-list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.pfx-analysis-list div{display:flex;justify-content:space-between;padding:16px;border-radius:14px;background:#ffffff0a}.pfx-coming{min-height:420px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;max-width:800px}.pfx-kicker{display:inline-flex;align-items:center;border:1px solid rgba(0,132,255,.3);background:#0084ff1a;color:#168bff;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:950;letter-spacing:.08em}.pfx-help .pfx-support-box{margin-top:20px;border:1px solid rgba(0,132,255,.22);background:#0084ff1a;border-radius:16px;padding:18px;font-weight:900}.pfx-preview-hero{display:grid;grid-template-columns:.9fr 1.1fr;gap:34px;align-items:center;min-height:calc(100vh - 88px);padding:48px 5vw}.pfx-preview-copy h1{font-size:58px;line-height:.98;margin:18px 0}.pfx-preview-copy p{font-size:18px;line-height:1.7;color:#ffffff94;max-width:680px}.pfx-feature-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}.pfx-feature-row span{padding:9px 12px;border-radius:999px;background:#ffffff0f;color:#ffffffad;font-weight:800}.pfx-preview-panel{position:relative;border:1px solid rgba(255,255,255,.09);border-radius:28px;padding:18px;background:linear-gradient(180deg,#ffffff0e,#ffffff06);max-height:76vh;overflow:hidden}.pfx-preview-panel.is-blurred>.pfx-metrics,.pfx-preview-panel.is-blurred>.pfx-grid-two,.pfx-preview-panel.is-blurred>.pfx-grid-three{filter:blur(6px);opacity:.55}.pfx-lock-overlay{position:absolute;inset:0;display:grid;place-items:center;text-align:center;background:#00000059;padding:24px}.pfx-lock-overlay strong{font-size:28px}.pfx-lock-overlay span{display:block;margin-top:8px;color:#ffffffa3}.pfx-modal-wrap{position:fixed;inset:0;z-index:100000;display:grid;place-items:center;background:#000000b3;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.pfx-modal{width:min(760px,calc(100vw - 28px));max-height:90vh;overflow:auto;border:1px solid rgba(255,255,255,.11);border-radius:24px;background:#080b12;color:#fff;padding:24px;position:relative}.pfx-modal-close{position:absolute;right:16px;top:14px;border:0;background:#ffffff12;color:#fff;border-radius:10px;width:34px;height:34px;font-size:22px;cursor:pointer}.pfx-form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.pfx-modal label{display:grid;gap:7px;color:#ffffff9e;font-weight:800;font-size:13px;margin-bottom:14px}.pfx-modal input,.pfx-modal select,.pfx-modal textarea{border:1px solid rgba(255,255,255,.11);background:#ffffff0d;color:#fff;border-radius:13px;padding:13px;outline:0}.pfx-modal select option,.pfx-modal select optgroup{color:#0b1220;background:#fff}.pfx-modal textarea{min-height:110px;resize:vertical}.pfx-modal-actions{display:flex;justify-content:flex-end;gap:10px}.home-page-hidden{opacity:0;pointer-events:none}@media(max-width:1100px){.pfx-shell{grid-template-columns:1fr}.pfx-sidebar{position:relative;height:auto}.pfx-nav{grid-template-columns:repeat(3,1fr)}.pfx-home-link{position:static;margin-top:20px}.pfx-appbar{height:auto;align-items:flex-start;flex-direction:column;padding:20px}.pfx-search{min-width:0;width:100%}.pfx-metrics{grid-template-columns:repeat(2,1fr)}.pfx-grid-two,.pfx-grid-three,.pfx-preview-hero{grid-template-columns:1fr}.pfx-preview-copy h1{font-size:42px}}@media(max-width:640px){.pfx-content,.pfx-preview-hero{padding:20px}.pfx-nav,.pfx-metrics,.pfx-form-grid{grid-template-columns:1fr}.pfx-topbar{height:auto;align-items:flex-start;flex-direction:column;padding:18px}.pfx-preview-copy h1{font-size:34px}}.pfx-preview-hero-v2{grid-template-columns:minmax(340px,.82fr) minmax(520px,1.18fr)}.pfx-preview-hero-v2 .pfx-preview-copy h1{max-width:760px}.pfx-access-note{margin-top:24px;display:grid;gap:6px;max-width:610px;border:1px solid rgba(255,255,255,.1);background:#ffffff0b;border-radius:18px;padding:16px 18px}.pfx-access-note strong{font-size:14px;text-transform:uppercase;letter-spacing:.09em;color:#6fb4ff}.pfx-access-note span{color:#ffffff94;line-height:1.55}.pfx-preview-panel-v2{padding:0;min-height:560px;border-radius:30px;overflow:hidden;background:radial-gradient(circle at 30% 0%,rgba(0,132,255,.18),transparent 36%),linear-gradient(180deg,#ffffff12,#ffffff06)}.pfx-preview-window{height:100%;min-height:560px;display:grid;grid-template-rows:56px 1fr}.pfx-preview-window-top{display:flex;align-items:center;gap:9px;padding:0 18px;border-bottom:1px solid rgba(255,255,255,.08);background:#05070cc7}.pfx-preview-window-top span{width:11px;height:11px;border-radius:999px;background:#ffffff2e}.pfx-preview-window-top strong{margin-left:8px;color:#ffffffb8;font-size:13px}.pfx-preview-layout{display:grid;grid-template-columns:170px 1fr;min-height:504px}.pfx-preview-menu{border-right:1px solid rgba(255,255,255,.08);padding:20px 14px;display:grid;align-content:start;gap:11px;background:#0000002e}.pfx-preview-menu b{display:block;padding:12px 13px;border-radius:12px;color:#ffffff8a;font-size:13px}.pfx-preview-menu b:first-child{background:#0084ff29;color:#fff}.pfx-preview-board{position:relative;padding:24px;display:grid;grid-template-columns:repeat(3,1fr);gap:14px;filter:blur(2px);opacity:.74}.pfx-preview-stat{border:1px solid rgba(255,255,255,.09);border-radius:18px;background:#ffffff0e;padding:16px}.pfx-preview-stat small{display:block;color:#ffffff70;font-weight:900;text-transform:uppercase;letter-spacing:.08em}.pfx-preview-stat strong{display:block;margin-top:10px;font-size:20px;color:#ffffffbd}.pfx-preview-chart{grid-column:span 2;min-height:270px;border:1px solid rgba(255,255,255,.09);border-radius:22px;background:linear-gradient(180deg,#ffffff0e,#ffffff06);display:flex;align-items:end;gap:14px;padding:24px}.pfx-preview-chart span{flex:1;border-radius:999px 999px 8px 8px;background:linear-gradient(180deg,#1599ff9e,#1599ff1f)}.pfx-preview-chart span:nth-child(1){height:38%}.pfx-preview-chart span:nth-child(2){height:58%}.pfx-preview-chart span:nth-child(3){height:44%}.pfx-preview-chart span:nth-child(4){height:72%}.pfx-preview-chart span:nth-child(5){height:86%}.pfx-preview-list{min-height:270px;border:1px solid rgba(255,255,255,.09);border-radius:22px;background:#ffffff0a;padding:22px;display:grid;align-content:start;gap:14px}.pfx-preview-list b{font-size:18px}.pfx-preview-list em{font-style:normal;color:#ffffff80;line-height:1.5}.pfx-lock-overlay-v2{background:linear-gradient(180deg,#02040a47,#02040ab8);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.pfx-lock-icon{display:grid!important;place-items:center;width:54px;height:54px;border-radius:18px;background:#0084ff2e;border:1px solid rgba(0,132,255,.34);color:#6fb4ff;font-size:28px;margin:0 auto 14px}@media(max-width:1100px){.pfx-preview-hero-v2{grid-template-columns:1fr}.pfx-preview-panel-v2{min-height:520px}.pfx-preview-layout{grid-template-columns:1fr}.pfx-preview-menu{display:none}}@media(max-width:640px){.pfx-preview-board{grid-template-columns:1fr}.pfx-preview-chart,.pfx-preview-list{grid-column:auto}.pfx-preview-panel-v2,.pfx-preview-window{min-height:660px}}.pfx-shell-app{grid-template-columns:292px minmax(0,1fr);background:radial-gradient(circle at 80% 0%,rgba(0,132,255,.14),transparent 34%),#05070d}.pfx-sidebar-pro{background:linear-gradient(180deg,#090e18fa,#04060bfa);border-right:1px solid rgba(255,255,255,.08);padding:22px}.pfx-side-brand-pro{padding-bottom:20px;border-bottom:1px solid rgba(255,255,255,.08)}.pfx-member-card{margin:18px 0 22px;border:1px solid rgba(0,132,255,.24);background:linear-gradient(135deg,#0084ff29,#ffffff09);border-radius:20px;padding:16px;display:grid;gap:7px}.pfx-member-card small{color:#ffffff7a;font-weight:900;text-transform:uppercase;letter-spacing:.1em}.pfx-member-card strong{font-size:16px}.pfx-member-card span{color:#6fb4ff;font-size:13px;font-weight:800}.pfx-nav-pro{display:grid;gap:18px}.pfx-nav-section{display:grid;gap:7px}.pfx-nav-section>span{padding:0 12px;color:#ffffff59;font-size:11px;text-transform:uppercase;letter-spacing:.14em;font-weight:950}.pfx-nav-pro .pfx-nav-item{height:46px;border-radius:14px}.pfx-nav-pro .pfx-nav-item.active{background:linear-gradient(135deg,#0084ff42,#0084ff1a);border-color:#0084ff6b;box-shadow:0 12px 32px #0084ff1f}.pfx-main-pro{background:linear-gradient(180deg,#ffffff05,#fff0)}.pfx-appbar-pro{height:auto;min-height:118px;align-items:flex-start;padding:24px 30px;border-bottom:1px solid rgba(255,255,255,.08);gap:22px}.pfx-title-block{display:grid;gap:7px}.pfx-title-block h1{font-size:34px;letter-spacing:-.04em}.pfx-title-block .pfx-kicker{width:max-content;padding:6px 10px;font-size:10px}.pfx-toolbar{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end;margin-left:auto}.pfx-chip{border:1px solid rgba(255,255,255,.11);background:#ffffff0b;color:#ffffffb8;border-radius:999px;padding:11px 13px;font-weight:900;cursor:pointer}.pfx-chip.active{border-color:#0084ff59;background:#0084ff24;color:#fff}.pfx-workspace-strip{display:grid;grid-template-columns:repeat(4,minmax(140px,1fr));gap:14px;padding:20px 30px 0}.pfx-content-pro{padding-top:20px}.pfx-dashboard-grid{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(320px,.6fr);gap:18px}.pfx-card-wide{grid-column:span 1}.pfx-dashboard-side .pfx-focus-list{display:grid;gap:12px}.pfx-focus-list div{border:1px solid rgba(255,255,255,.08);background:#ffffff09;border-radius:16px;padding:14px;display:grid;gap:7px}.pfx-focus-list small{color:#ffffff70;font-weight:900;text-transform:uppercase;letter-spacing:.08em}.pfx-focus-list strong{font-size:18px}.pfx-row{grid-template-columns:.85fr .8fr .65fr .75fr .75fr .55fr .75fr 1fr .65fr;min-width:980px}.pfx-table-card .pfx-card-head{align-items:flex-start}.pfx-table-card .pfx-card-head span{display:block;margin-top:5px}.pfx-icon-btn[data-tab]{color:#6fb4ff;font-weight:900}.pfx-empty{background:#ffffff05}@media(max-width:1200px){.pfx-shell-app{grid-template-columns:1fr}.pfx-sidebar-pro{position:relative;height:auto}.pfx-nav-pro{grid-template-columns:repeat(3,1fr)}.pfx-nav-section{min-width:0}.pfx-home-link{position:static}.pfx-workspace-strip{grid-template-columns:repeat(2,1fr)}.pfx-dashboard-grid{grid-template-columns:1fr}.pfx-toolbar{justify-content:flex-start;margin-left:0}.pfx-appbar-pro{flex-direction:column}}@media(max-width:720px){.pfx-workspace-strip{grid-template-columns:1fr;padding:16px}.pfx-content-pro{padding:16px}.pfx-nav-pro{grid-template-columns:1fr}.pfx-toolbar,.pfx-toolbar .pfx-search{width:100%}.pfx-toolbar .pfx-btn{width:100%;justify-content:center}.pfx-dashboard-grid{gap:14px}}.pfx-sidebar-pro{display:flex;flex-direction:column;overflow:hidden}.pfx-sidebar-pro .pfx-nav-pro{overflow-y:auto;padding-right:4px;margin-bottom:18px;scrollbar-width:thin}.pfx-sidebar-pro .pfx-home-link{position:static;left:auto;right:auto;bottom:auto;margin-top:auto;flex-shrink:0;display:flex;align-items:center;justify-content:center;gap:10px;min-height:48px;border:1px solid rgba(0,132,255,.22);background:linear-gradient(135deg,#0084ff1f,#ffffff09);color:#ffffffe0;box-shadow:0 14px 34px #00000038}.pfx-sidebar-pro .pfx-home-link:hover{border-color:#0084ff6b;background:linear-gradient(135deg,#0084ff33,#ffffff0e);transform:translateY(-1px)}.pfx-home-icon{display:grid;place-items:center;width:24px;height:24px;border-radius:9px;background:#0084ff29;color:#6fb4ff;font-size:14px}@media(max-height:820px)and (min-width:1201px){.pfx-member-card{margin:14px 0 16px;padding:14px}.pfx-nav-pro{gap:12px}.pfx-nav-pro .pfx-nav-item{height:42px}.pfx-side-brand-pro{padding-bottom:16px}}.pfx-modal-wide{width:min(1040px,calc(100vw - 28px))}.pfx-form-note{margin:0 0 18px;color:#ffffff8c;line-height:1.5}.pfx-row{grid-template-columns:1fr .7fr .7fr .75fr .75fr .65fr .8fr 1fr .7fr}.pfx-table-card .pfx-empty{min-width:850px}.pfx-modal input[type=date]{color-scheme:dark}.pfx-row-actions{display:flex;align-items:center;gap:8px;justify-content:flex-end;min-width:190px}.pfx-row-actions .pfx-icon-btn{padding:8px 9px;font-size:12px}.pfx-icon-btn.pfx-danger{color:#ff6b8a;border-color:#ff5b7a3d;background:#ff5b7a12}.pfx-icon-btn.pfx-danger:hover{border-color:#ff5b7a70;background:#ff5b7a1f}.pfx-card-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.pfx-detail-modal{display:grid;gap:18px}.pfx-detail-hero{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;padding-bottom:18px;border-bottom:1px solid rgba(255,255,255,.08)}.pfx-detail-hero h2{margin:8px 0 6px;font-size:30px;letter-spacing:-.04em}.pfx-detail-hero p{margin:0;color:#ffffff94}.pfx-detail-pnl{font-size:30px;white-space:nowrap}.pfx-detail-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.pfx-detail-item{border:1px solid rgba(255,255,255,.08);background:#ffffff09;border-radius:16px;padding:14px;display:grid;gap:8px;min-height:74px}.pfx-detail-item small{color:#ffffff73;font-weight:900;text-transform:uppercase;letter-spacing:.08em;font-size:11px}.pfx-detail-item strong{font-size:15px;overflow-wrap:anywhere}.pfx-detail-notes{border:1px solid rgba(255,255,255,.08);background:#ffffff08;border-radius:18px;padding:18px}.pfx-detail-notes h3{margin:0 0 10px}.pfx-detail-notes p{margin:0;color:#ffffffb3;line-height:1.65;white-space:pre-wrap}@media(max-width:760px){.pfx-detail-hero{flex-direction:column}.pfx-detail-grid{grid-template-columns:1fr}.pfx-row-actions{justify-content:flex-start}}.pfx-journal-overview{display:grid;grid-template-columns:repeat(4,minmax(160px,1fr));gap:14px;margin-bottom:18px}.pfx-journal-command{display:flex;align-items:center;justify-content:space-between;gap:22px;margin-bottom:18px;background:linear-gradient(135deg,#0084ff1f,#ffffff09);border-color:#0084ff2e}.pfx-journal-command h3{margin:8px 0 6px;font-size:24px;letter-spacing:-.03em}.pfx-journal-command p{margin:0;max-width:760px}.pfx-journal-card{display:flex;flex-direction:column;gap:14px}.pfx-journal-card.needs-review{border-color:#ffba4929}.pfx-journal-card.is-reviewed{border-color:#10e27b29}.pfx-journal-card .pfx-card-head{margin-bottom:0}.pfx-journal-card .pfx-card-head span{display:block;margin-top:5px}.pfx-journal-status{display:flex;flex-wrap:wrap;gap:8px}.pfx-journal-status span{border:1px solid rgba(255,255,255,.09);background:#ffffff0b;border-radius:999px;padding:7px 10px;color:#ffffffa8;font-size:12px;font-weight:850}.pfx-journal-card.is-reviewed .pfx-journal-status span:first-child{color:#10e27b;border-color:#10e27b3d;background:#10e27b17}.pfx-journal-card.needs-review .pfx-journal-status span:first-child{color:#ffcf70;border-color:#ffcf703d;background:#ffcf7014}.pfx-journal-lesson{border:1px solid rgba(255,255,255,.08);background:#ffffff09;border-radius:14px;padding:12px;display:grid;gap:6px}.pfx-journal-lesson small{color:#ffffff6b;font-weight:950;text-transform:uppercase;letter-spacing:.08em}.pfx-journal-lesson strong{font-size:14px;line-height:1.45}.pfx-journal-review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:18px 0 6px}.pfx-journal-modal textarea{min-height:110px}.pfx-check{display:flex!important;grid-template-columns:auto 1fr!important;align-items:center;gap:10px!important;border:1px solid rgba(0,132,255,.18);background:#0084ff14;border-radius:14px;padding:12px 14px;margin-top:8px}.pfx-check input{width:18px;height:18px}@media(max-width:980px){.pfx-journal-overview{grid-template-columns:repeat(2,1fr)}.pfx-journal-command{align-items:flex-start;flex-direction:column}.pfx-journal-review-grid{grid-template-columns:1fr}}@media(max-width:560px){.pfx-journal-overview{grid-template-columns:1fr}}.pfx-analysis-hero{display:grid;grid-template-columns:repeat(6,minmax(130px,1fr));gap:14px;margin-bottom:18px}.pfx-analysis-layout{display:grid;grid-template-columns:1fr 1fr;gap:18px}.pfx-analysis-layout .pfx-card-wide{grid-column:1/-1}.pfx-analysis-list-pro{margin-bottom:16px}.pfx-analysis-subcard{margin-top:18px;border:1px solid rgba(255,255,255,.08);border-radius:18px;background:#ffffff09;padding:16px}.pfx-analysis-subcard h4{margin:0 0 14px}.pfx-breakdown-list,.pfx-risk-stack,.pfx-mistake-list,.pfx-distribution{display:grid;gap:12px}.pfx-breakdown-row{display:flex;justify-content:space-between;gap:16px;align-items:center;border:1px solid rgba(255,255,255,.07);background:#ffffff09;border-radius:15px;padding:14px}.pfx-breakdown-row strong{display:block}.pfx-breakdown-row span,.pfx-breakdown-row small,.pfx-risk-stack small{display:block;color:#ffffff7a;font-size:12px;margin-top:4px}.pfx-breakdown-row b{display:block;text-align:right;font-size:18px}.pfx-risk-stack div{border:1px solid rgba(255,255,255,.07);background:#ffffff09;border-radius:15px;padding:14px}.pfx-risk-stack strong{display:block;margin-top:7px;font-size:22px}.pfx-mistake-row,.pfx-distribution-row{display:grid;gap:8px}.pfx-mistake-row div,.pfx-distribution-row div{display:flex;justify-content:space-between;color:#ffffffc7;font-weight:800}.pfx-mistake-row i,.pfx-distribution-row i{display:block;height:8px;border-radius:999px;background:linear-gradient(90deg,#168bff,#15c8ff);box-shadow:0 0 18px #0084ff38}.pfx-distribution-row i.good{background:linear-gradient(90deg,#10e27b,#49f0a0)}.pfx-distribution-row i.bad{background:linear-gradient(90deg,#ff4f70,#ff8b9d)}.pfx-empty-compact{min-height:110px}@media(max-width:1180px){.pfx-analysis-hero{grid-template-columns:repeat(2,1fr)}.pfx-analysis-layout{grid-template-columns:1fr}}@media(max-width:640px){.pfx-analysis-hero{grid-template-columns:1fr}.pfx-breakdown-row{align-items:flex-start;flex-direction:column}.pfx-breakdown-row b{text-align:left}}.pfx-chart-card{overflow:hidden}.pfx-chart-wrap{position:relative;border:1px solid rgba(255,255,255,.08);background:radial-gradient(circle at 15% 0%,rgba(0,132,255,.12),transparent 36%),#ffffff06;border-radius:20px;padding:12px;min-height:260px}.pfx-svg-chart{display:block;width:100%;height:260px;filter:drop-shadow(0 16px 30px rgba(0,0,0,.28))}.pfx-grid-lines line{stroke:#ffffff12;stroke-width:1}.pfx-zero-line{stroke:#ffffff29;stroke-width:1.2;stroke-dasharray:5 7}.pfx-line-path{fill:none;stroke:#168bff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round}.pfx-last-dot{fill:#fff;stroke:#168bff;stroke-width:3}.pfx-chart-scale{position:absolute;top:18px;right:18px;bottom:18px;display:flex;flex-direction:column;justify-content:space-between;color:#ffffff6b;font-size:11px;font-weight:900;pointer-events:none}.pfx-bar-chart{height:260px;display:flex;align-items:stretch;gap:8px;border:1px solid rgba(255,255,255,.08);background:#ffffff06;border-radius:20px;padding:18px 14px 14px;overflow-x:auto}.pfx-bar-col{min-width:46px;display:grid;grid-template-rows:1fr auto auto;gap:8px;text-align:center}.pfx-bar-track{height:160px;border-radius:999px;background:#ffffff0e;display:flex;align-items:flex-end;justify-content:center;overflow:hidden;padding:3px}.pfx-bar-track i{display:block;width:100%;border-radius:999px;background:linear-gradient(180deg,#10e27b,#42efa0);box-shadow:0 0 22px #10e27b38}.pfx-bar-track i.bad{background:linear-gradient(180deg,#ff4f70,#ff8b9d);box-shadow:0 0 22px #ff4f7033}.pfx-bar-col span{font-size:10px;color:#ffffff73;font-weight:850;white-space:nowrap}.pfx-bar-col strong{font-size:10px;white-space:nowrap}.pfx-donut-card{display:grid;grid-template-columns:180px 1fr;align-items:center;gap:18px}.pfx-donut{--win:0%;--loss:0%;width:172px;height:172px;border-radius:50%;display:grid;place-items:center;background:conic-gradient(#10e27b 0 var(--win),#ff4f70 var(--win) calc(var(--win) + var(--loss)),rgba(255,255,255,.12) calc(var(--win) + var(--loss)) 100%);position:relative;box-shadow:inset 0 0 0 1px #ffffff14,0 22px 46px #00000040}.pfx-donut:after{content:"";position:absolute;inset:22px;border-radius:50%;background:#07111f;border:1px solid rgba(255,255,255,.08)}.pfx-donut span,.pfx-donut small{position:relative;z-index:1}.pfx-donut span{font-size:30px;font-weight:950;letter-spacing:-.04em}.pfx-donut small{margin-top:42px;position:absolute;color:#ffffff73;font-weight:900;text-transform:uppercase;letter-spacing:.08em;font-size:10px}.pfx-donut-legend{display:grid;gap:10px}.pfx-donut-legend span{display:flex;align-items:center;gap:10px;justify-content:space-between;border:1px solid rgba(255,255,255,.07);background:#ffffff09;border-radius:14px;padding:10px 12px;color:#ffffffb8;font-weight:850}.pfx-donut-legend i{width:10px;height:10px;border-radius:99px;background:#ffffff38;margin-right:auto}.pfx-donut-legend i.good{background:#10e27b;box-shadow:0 0 14px #10e27b5c}.pfx-donut-legend i.bad{background:#ff4f70;box-shadow:0 0 14px #ff4f7052}.pfx-horizontal-chart{display:grid;gap:12px;margin-bottom:14px}.pfx-horizontal-row{display:grid;grid-template-columns:minmax(110px,.75fr) minmax(180px,1fr) auto;align-items:center;gap:12px}.pfx-horizontal-row strong{display:block;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pfx-horizontal-row span{display:block;margin-top:3px;font-size:11px;color:#ffffff6b;font-weight:850}.pfx-horizontal-meter{height:10px;border-radius:999px;background:#ffffff0f;overflow:hidden}.pfx-horizontal-meter i{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,#10e27b,#44efa1);box-shadow:0 0 16px #10e27b33}.pfx-horizontal-meter i.bad{background:linear-gradient(90deg,#ff4f70,#ff8b9d);box-shadow:0 0 16px #ff4f702e}.pfx-score-bars{display:grid;gap:13px}.pfx-score-bars div{display:grid;grid-template-columns:100px 1fr 58px;align-items:center;gap:10px}.pfx-score-bars span{color:#ffffffa6;font-size:12px;font-weight:900}.pfx-score-bars i{height:10px;border-radius:999px;background:#fff1;overflow:hidden}.pfx-score-bars b{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,#168bff,#15c8ff);box-shadow:0 0 18px #0084ff3d}.pfx-score-bars strong{font-size:12px;text-align:right;color:#ffffffc7}@media(max-width:900px){.pfx-donut-card{grid-template-columns:1fr}.pfx-donut{margin:auto}.pfx-horizontal-row,.pfx-score-bars div{grid-template-columns:1fr}.pfx-score-bars strong{text-align:left}.pfx-bar-col{min-width:56px}}.pfx-import-modal h2{margin:12px 0 8px;font-size:30px;letter-spacing:-.04em}.pfx-import-modal input[type=file]{padding:13px;cursor:pointer}.pfx-import-modal textarea{min-height:140px;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:12px;line-height:1.5}.pfx-import-summary{display:flex;justify-content:space-between;gap:14px;align-items:center;border:1px solid rgba(0,132,255,.2);background:#0084ff14;border-radius:16px;padding:14px 16px;margin:14px 0}.pfx-import-summary strong{font-size:16px}.pfx-import-summary span{color:#ffffff8f;font-weight:800}.pfx-import-table{display:grid;gap:7px;margin-top:10px}.pfx-import-row{display:grid;grid-template-columns:1fr 1fr .7fr .7fr .9fr;gap:12px;align-items:center;border:1px solid rgba(255,255,255,.07);background:#ffffff09;border-radius:12px;padding:11px 12px;font-weight:800}.pfx-import-head{color:#ffffff73;font-size:12px;text-transform:uppercase;letter-spacing:.08em;background:#ffffff0f}.pfx-import-rejected{margin-top:12px;color:#ffffff94;border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:12px 14px;background:#ffffff08}.pfx-import-rejected summary{cursor:pointer;font-weight:900;color:#ffffffc2}.pfx-import-rejected p{margin:8px 0 0;font-size:12px}#pfx-confirm-import:disabled{opacity:.45;cursor:not-allowed;box-shadow:none}@media(max-width:640px){.pfx-import-summary{align-items:flex-start;flex-direction:column}.pfx-import-row{grid-template-columns:1fr 1fr}.pfx-import-head{display:none}}.pfx-ai-header{display:flex;align-items:center;justify-content:space-between;gap:22px;margin-bottom:18px;background:linear-gradient(135deg,#0084ff21,#ffffff09);border-color:#0084ff33}.pfx-ai-header h2{margin:8px 0;font-size:32px;letter-spacing:-.04em}.pfx-ai-header p{margin:0;max-width:880px;color:#ffffffad;line-height:1.6}.pfx-ai-score{width:148px;height:148px;flex:0 0 auto;border-radius:32px;display:grid;place-items:center;text-align:center;border:1px solid rgba(255,255,255,.1);background:radial-gradient(circle at 50% 0%,#0084ff4d,#ffffff09);box-shadow:0 22px 50px #0000003d}.pfx-ai-score.good{border-color:#10e27b42;background:radial-gradient(circle at 50% 0%,#10e27b3d,#ffffff09)}.pfx-ai-score.bad{border-color:#ff4f7042;background:radial-gradient(circle at 50% 0%,#ff4f7038,#ffffff09)}.pfx-ai-score strong{font-size:46px;letter-spacing:-.06em}.pfx-ai-score span{display:block;margin-top:-18px;color:#ffffff7a;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.08em}.pfx-ai-metrics{margin-bottom:18px}.pfx-ai-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.pfx-ai-card-wide{grid-column:1/-1}.pfx-ai-card .pfx-card-head{align-items:flex-start}.pfx-ai-narrative{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.pfx-ai-narrative p{margin:0;border:1px solid rgba(255,255,255,.08);background:#ffffff09;border-radius:16px;padding:16px;color:#ffffffb3;line-height:1.6}.pfx-ai-narrative strong{color:#fff}.pfx-ai-list{display:grid;gap:11px}.pfx-ai-list div{display:grid;grid-template-columns:12px 1fr;gap:12px;align-items:flex-start;border:1px solid rgba(255,255,255,.07);background:#ffffff09;border-radius:14px;padding:13px 14px;color:#ffffffb8;font-weight:750;line-height:1.45}.pfx-ai-list i{width:9px;height:9px;border-radius:99px;background:#168bff;box-shadow:0 0 16px #0084ff57;margin-top:6px}.pfx-ai-action-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.pfx-ai-action-list div{display:flex;align-items:flex-start;gap:13px;border:1px solid rgba(0,132,255,.16);background:#0084ff12;border-radius:16px;padding:15px}.pfx-ai-action-list span{width:28px;height:28px;flex:0 0 auto;border-radius:10px;background:#0084ff2e;color:#6fb4ff;display:grid;place-items:center;font-weight:950}.pfx-ai-action-list strong{font-size:14px;line-height:1.45}.pfx-ai-area-table{display:grid;gap:10px}.pfx-ai-area-table div{display:grid;grid-template-columns:1fr 1.2fr auto;gap:10px;align-items:center;border:1px solid rgba(255,255,255,.07);background:#ffffff09;border-radius:14px;padding:12px}.pfx-ai-area-table span{color:#ffffff73;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.08em}.pfx-ai-area-table strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pfx-ai-area-table b{text-align:right;white-space:nowrap}.pfx-ai-flagged{display:grid;gap:10px}.pfx-ai-flagged div{display:grid;grid-template-columns:.8fr 1fr 1.4fr auto auto;gap:12px;align-items:center;border:1px solid rgba(255,255,255,.07);background:#ffffff09;border-radius:14px;padding:12px}.pfx-ai-flagged span,.pfx-ai-flagged em{color:#ffffff7a;font-size:12px;font-style:normal;font-weight:800}.pfx-ai-flagged strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pfx-ai-empty .pfx-btn+.pfx-btn{margin-left:10px}@media(max-width:1100px){.pfx-ai-grid,.pfx-ai-narrative,.pfx-ai-action-list{grid-template-columns:1fr}.pfx-ai-header{align-items:flex-start;flex-direction:column}.pfx-ai-score{width:100%;height:116px}.pfx-ai-score span{margin-top:-14px}.pfx-ai-flagged div,.pfx-ai-area-table div{grid-template-columns:1fr}.pfx-ai-area-table b{text-align:left}}.pfx-backtest-hero{display:flex;align-items:center;justify-content:space-between;gap:22px;margin-bottom:18px;background:linear-gradient(135deg,#168bff21,#ffffff09);border-color:#168bff33}.pfx-backtest-hero h2{margin:8px 0;font-size:32px;letter-spacing:-.04em}.pfx-backtest-hero p{margin:0;max-width:900px;color:#ffffffad;line-height:1.6}.pfx-backtest-status{min-width:160px;border:1px solid rgba(255,255,255,.09);background:#ffffff0a;border-radius:22px;padding:16px;text-align:center}.pfx-backtest-status strong{display:block;font-size:28px;letter-spacing:-.04em}.pfx-backtest-status span{display:block;margin-top:4px;color:#ffffff85;font-weight:850;font-size:12px}.pfx-backtest-metrics{margin-bottom:18px}.pfx-backtest-layout{display:grid;grid-template-columns:1.4fr .8fr;gap:18px;align-items:start}.pfx-backtest-layout .pfx-card-wide{grid-column:span 1}.pfx-backtest-panel{position:sticky;top:18px}.pfx-backtest-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:12px 0 16px}.pfx-backtest-form label{display:grid;gap:7px;color:#ffffff94;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.08em}.pfx-backtest-form input{width:100%;border:1px solid rgba(255,255,255,.09);background:#030a16b8;color:#fff;border-radius:13px;padding:12px 13px;font-weight:850;outline:none}.pfx-backtest-form input:focus{border-color:#168bff8c;box-shadow:0 0 0 3px #168bff1f}.pfx-backtest-buttons{display:flex;flex-wrap:wrap;gap:10px;margin:10px 0}.pfx-backtest-chart{position:relative;min-height:380px;border:1px solid rgba(255,255,255,.07);border-radius:20px;overflow:hidden;background:radial-gradient(circle at 50% 0%,#168bff1a,#ffffff06)}.pfx-backtest-chart svg{width:100%;height:360px;display:block}.pfx-candle line{stroke-width:1.6}.pfx-candle rect{stroke-width:1}.pfx-candle.good line,.pfx-candle.good rect{stroke:#10e27b;fill:#10e27bc2}.pfx-candle.bad line,.pfx-candle.bad rect{stroke:#ff4f70;fill:#ff4f70c7}.pfx-backtest-candle-info{display:flex;justify-content:space-between;gap:12px;padding:12px 16px;border-top:1px solid rgba(255,255,255,.07);background:#00000029}.pfx-backtest-candle-info strong{font-size:13px}.pfx-backtest-candle-info span{color:#ffffff8f;font-weight:850;font-size:12px}.pfx-backtest-empty{min-height:380px;display:grid;place-items:center;text-align:center;padding:38px;border:1px dashed rgba(255,255,255,.15);border-radius:20px;background:#ffffff06}.pfx-backtest-empty h3{margin:0 0 8px;font-size:24px}.pfx-backtest-empty p{margin:0 0 18px;color:#ffffff94;line-height:1.6;max-width:520px}#pfx-confirm-candle-import:disabled{opacity:.45;cursor:not-allowed;box-shadow:none}@media(max-width:1100px){.pfx-backtest-layout{grid-template-columns:1fr}.pfx-backtest-panel{position:static}.pfx-backtest-hero{align-items:flex-start;flex-direction:column}.pfx-backtest-status{width:100%}}@media(max-width:640px){.pfx-backtest-form{grid-template-columns:1fr}.pfx-backtest-candle-info{flex-direction:column}.pfx-backtest-buttons .pfx-btn{width:100%}}.pfx-detail-hero{padding-right:68px;align-items:flex-start}.pfx-detail-pnl{font-size:24px;line-height:1.05;flex:0 0 auto;max-width:220px;text-align:right;padding-top:8px}.pfx-modal-close{z-index:2;box-shadow:0 10px 24px #00000038}.pfx-tools-grid{align-items:stretch}.pfx-tool-card{display:flex;flex-direction:column;justify-content:space-between;min-height:168px}.pfx-tool-card h3{margin-bottom:10px}.pfx-tool-card p{margin:0;max-width:34ch}.pfx-tool-footer{margin-top:18px;display:flex;align-items:flex-end;justify-content:flex-start}.pfx-settings-card p{max-width:980px}.pfx-settings-actions{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:18px;margin-top:20px}.pfx-settings-tags{margin-top:0;display:flex;flex-wrap:wrap;gap:10px;align-items:center}.pfx-settings-actions .pfx-btn{min-width:190px;justify-self:end}.pfx-backtest-layout{grid-template-columns:minmax(0,1.38fr) minmax(320px,.62fr)}.pfx-backtest-panel{position:static;align-self:start}.pfx-backtest-buttons{display:grid;gap:10px;margin:12px 0}.pfx-backtest-buttons-nav{grid-template-columns:repeat(2,minmax(0,1fr))}.pfx-backtest-buttons-trade{grid-template-columns:repeat(3,minmax(0,1fr))}.pfx-backtest-buttons .pfx-btn{width:100%;justify-content:center;white-space:nowrap}.pfx-form-note{margin:8px 0 0;color:#ffffff8f;line-height:1.55}@media(max-width:1100px){.pfx-detail-hero{padding-right:54px}.pfx-detail-pnl{max-width:none;text-align:left;padding-top:0}.pfx-settings-actions{grid-template-columns:1fr;align-items:flex-start}.pfx-settings-actions .pfx-btn{justify-self:start}}@media(max-width:760px){.pfx-detail-hero{padding-right:0}.pfx-detail-pnl{font-size:22px}}@media(max-width:640px){.pfx-backtest-buttons-nav,.pfx-backtest-buttons-trade{grid-template-columns:1fr}.pfx-settings-actions .pfx-btn{width:100%}.pfx-tool-card{min-height:auto}}.pfx-backtest-panel,.pfx-backtest-panel *{box-sizing:border-box}.pfx-backtest-panel{overflow:hidden}.pfx-backtest-buttons{width:100%}.pfx-backtest-buttons .pfx-btn{min-width:0;padding-left:10px;padding-right:10px;font-size:13px;line-height:1.15}.pfx-backtest-buttons-trade{grid-template-columns:repeat(2,minmax(0,1fr))}.pfx-backtest-buttons-trade .pfx-btn[data-action=bt-close-position]{grid-column:1/-1}@media(max-width:1280px){.pfx-backtest-layout{grid-template-columns:minmax(0,1fr) minmax(360px,.52fr)}}@media(max-width:1180px){.pfx-backtest-layout{grid-template-columns:1fr}}.pfx-tools-page{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:stretch}.pfx-tool-calculator{grid-column:span 1}.pfx-tool-pov{grid-column:1/-1}.pfx-tool-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:14px}.pfx-tool-form label{display:grid;gap:7px;color:#ffffff94;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.08em}.pfx-tool-form input{width:100%;border:1px solid rgba(255,255,255,.09);background:#030a16b8;color:#fff;border-radius:13px;padding:12px 13px;font-weight:850;outline:none}.pfx-tool-form input:focus{border-color:#168bff8c;box-shadow:0 0 0 3px #168bff1f}.pfx-tool-results{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:14px}.pfx-tool-results div,.pfx-pov-grid div{border:1px solid rgba(255,255,255,.08);background:#ffffff09;border-radius:16px;padding:14px;display:grid;gap:7px}.pfx-tool-results span,.pfx-pov-grid span{color:#ffffff73;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.08em}.pfx-tool-results strong,.pfx-pov-grid strong{font-size:24px;letter-spacing:-.04em}.pfx-session-live{color:#10e27b;font-size:14px;text-align:right}.pfx-session-list{display:grid;gap:10px;margin-top:8px}.pfx-session-list div{display:grid;grid-template-columns:1fr auto;gap:6px 12px;align-items:center;border:1px solid rgba(255,255,255,.08);background:#ffffff09;border-radius:15px;padding:13px}.pfx-session-list div.is-open{border-color:#10e27b3d;background:#10e27b12}.pfx-session-list span{font-weight:950}.pfx-session-list strong{font-size:12px;color:#ffffff8a}.pfx-session-list em{grid-column:1/-1;color:#ffffff85;font-style:normal;font-size:12px;font-weight:800}.pfx-session-list .is-open em{color:#10e27b}.pfx-pov-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:14px}.pfx-pov-note{border:1px solid rgba(0,132,255,.18);background:#0084ff12;border-radius:16px;padding:16px}.pfx-pov-note p{margin:8px 0 0}.pfx-backtest-buttons-trade{grid-template-columns:repeat(2,minmax(0,1fr))!important}.pfx-backtest-buttons-trade [data-action=bt-close-position]{grid-column:1/-1}@media(max-width:1100px){.pfx-tools-page{grid-template-columns:1fr}.pfx-tool-pov{grid-column:auto}.pfx-pov-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:640px){.pfx-tool-form,.pfx-tool-results,.pfx-pov-grid,.pfx-session-list div{grid-template-columns:1fr}.pfx-session-live{text-align:left}}.pfx-settings-card .pfx-settings-tags{margin-top:20px;display:flex;flex-wrap:wrap;gap:10px;align-items:center}.pfx-settings-action-row{margin-top:22px;padding-top:18px;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:flex-start;align-items:center}.pfx-settings-action-row .pfx-btn{width:auto;min-width:190px}.pfx-danger-soft{background:#ffffff0e;border:1px solid rgba(255,255,255,.12);color:#ffffffe6}.pfx-danger-soft:hover{border-color:#ff4f7052;background:#ff4f701a}@media(max-width:640px){.pfx-settings-action-row .pfx-btn{width:100%}}.pfx-strategy-cell{display:grid;gap:6px;align-items:start}.pfx-shot-badge{display:inline-flex;width:max-content;align-items:center;border:1px solid rgba(0,132,255,.22);background:#0084ff1a;color:#6fb4ff;border-radius:999px;padding:4px 8px;font-size:10px;font-weight:950;letter-spacing:.02em}.pfx-shot-badge.is-empty{border-color:#ffffff14;background:#ffffff09;color:#ffffff61}.pfx-screenshot-uploader{border:1px solid rgba(255,255,255,.09);background:#ffffff06;border-radius:18px;padding:16px;margin:14px 0 16px}.pfx-screenshot-uploader .pfx-card-head{margin-bottom:14px}.pfx-screenshot-uploader .pfx-card-head h3{margin:0;font-size:18px}.pfx-screenshot-uploader input[type=file]{padding:12px;background:#030a16b8;cursor:pointer}.pfx-screenshot-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:12px;margin:12px 0 16px}.pfx-screenshot-gallery figure{margin:0;border:1px solid rgba(255,255,255,.09);background:#ffffff09;border-radius:16px;overflow:hidden}.pfx-screenshot-gallery img{width:100%;height:150px;object-fit:cover;display:block;background:#02040a}.pfx-screenshot-gallery figcaption{display:grid;gap:4px;padding:10px 12px}.pfx-screenshot-gallery figcaption strong{font-size:13px;color:#fff}.pfx-screenshot-gallery figcaption span{font-size:11px;color:#ffffff85;line-height:1.35}.pfx-empty-compact{min-height:84px}@media(max-width:640px){.pfx-screenshot-gallery{grid-template-columns:1fr}.pfx-screenshot-gallery img{height:190px}}.pfx-sidebar-pro .pfx-nav-pro{scrollbar-width:thin;scrollbar-color:rgba(111,180,255,.35) rgba(255,255,255,.04)}.pfx-sidebar-pro .pfx-nav-pro::-webkit-scrollbar{width:7px}.pfx-sidebar-pro .pfx-nav-pro::-webkit-scrollbar-track{background:#ffffff09;border-radius:999px}.pfx-sidebar-pro .pfx-nav-pro::-webkit-scrollbar-thumb{background:#6fb4ff47;border-radius:999px;border:1px solid rgba(0,0,0,.25)}.pfx-sidebar-pro .pfx-nav-pro::-webkit-scrollbar-thumb:hover{background:#6fb4ff6b}.pfx-backend-panel{margin-top:18px;border:1px solid rgba(0,132,255,.16);background:#0084ff0e;border-radius:16px;padding:16px 18px;display:grid;gap:7px;max-width:860px}.pfx-backend-panel small{color:#ffffff75;font-weight:950;text-transform:uppercase;letter-spacing:.1em}.pfx-backend-panel strong{font-size:15px;word-break:break-all;color:#dbeeff}.pfx-backend-panel p{margin:0;color:#ffffff94;line-height:1.55}.pfx-backend-panel code{border:1px solid rgba(255,255,255,.1);background:#0000002e;border-radius:7px;padding:2px 6px;color:#8cc7ff}.pfx-import-summary>div{display:grid;gap:4px}.pfx-import-summary em{color:#ffffff94;font-style:normal;font-size:12px;font-weight:800}.pfx-import-help{display:flex;flex-wrap:wrap;gap:8px;margin:14px 0 16px}.pfx-import-help span{border:1px solid rgba(0,132,255,.18);background:#0084ff12;color:#ffffffb8;border-radius:999px;padding:8px 10px;font-size:12px;font-weight:850}.pfx-import-tools{display:flex;flex-wrap:wrap;gap:10px;margin:10px 0 4px}.pfx-table-card .pfx-actions,.pfx-toolbar{flex-wrap:wrap;justify-content:flex-end}.pfx-workspace-strip{grid-template-columns:repeat(5,minmax(130px,1fr))}.pfx-sync-mini{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:14px 0 16px}.pfx-sync-mini div{border:1px solid rgba(255,255,255,.08);background:#ffffff09;border-radius:16px;padding:13px;display:grid;gap:6px}.pfx-sync-mini small{color:#ffffff85;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.08em}.pfx-sync-mini strong{font-size:13px;line-height:1.35}.pfx-sync-mini-card .pfx-card-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px}.pfx-sync-hero{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:22px;align-items:center;border:1px solid rgba(22,139,255,.22);background:radial-gradient(circle at 80% 0%,rgba(22,139,255,.16),transparent 42%),linear-gradient(135deg,#09132de0,#050810eb);border-radius:26px;padding:26px;margin-bottom:18px;box-shadow:0 24px 90px #00000040}.pfx-sync-hero h2{margin:6px 0 10px;font-size:30px;letter-spacing:-.04em}.pfx-sync-hero p{margin:0;color:#ffffff9e;line-height:1.65;max-width:880px}.pfx-sync-hero-actions{display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-end}.pfx-sync-status-grid{display:grid;grid-template-columns:repeat(4,minmax(130px,1fr));gap:12px;margin-bottom:18px}.pfx-sync-layout{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(340px,.65fr);gap:18px;align-items:start}.pfx-sync-account-list{display:grid;gap:14px}.pfx-sync-account{border:1px solid rgba(255,255,255,.08);background:#ffffff08;border-radius:20px;padding:18px;display:grid;gap:14px}.pfx-sync-account-main{display:flex;align-items:center;gap:14px}.pfx-sync-platform{width:56px;height:56px;border-radius:18px;display:grid;place-items:center;background:linear-gradient(135deg,#006bff,#00d6ff);font-weight:950;box-shadow:0 0 28px #0084ff38}.pfx-sync-account h3{margin:0 0 5px;font-size:17px}.pfx-sync-account p{margin:0;color:#ffffff8c;font-size:13px;line-height:1.45}.pfx-sync-tags{display:flex;flex-wrap:wrap;gap:8px}.pfx-sync-tags span{border:1px solid rgba(255,255,255,.09);background:#ffffff0a;border-radius:999px;padding:7px 10px;color:#ffffffb8;font-size:12px;font-weight:850}.pfx-sync-account-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.pfx-sync-account-stats div{border:1px solid rgba(255,255,255,.07);background:#00000024;border-radius:15px;padding:12px;display:grid;gap:5px}.pfx-sync-account-stats small{color:#ffffff73;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.08em}.pfx-sync-account-stats strong{font-size:12px;line-height:1.35;color:#fff}.pfx-sync-account-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}.pfx-sync-empty{min-height:280px;display:grid;place-items:center;text-align:center;padding:34px;border:1px dashed rgba(255,255,255,.15);border-radius:22px;background:#ffffff06}.pfx-sync-empty strong{font-size:22px}.pfx-sync-empty p{max-width:520px;color:#ffffff94;line-height:1.65;margin:10px auto 18px}.pfx-sync-guide-card{position:sticky;top:110px}.pfx-sync-steps{display:grid;gap:12px;margin:16px 0 18px;padding:0;counter-reset:syncstep}.pfx-sync-steps li{list-style:none;border:1px solid rgba(255,255,255,.08);background:#ffffff09;border-radius:17px;padding:14px 14px 14px 48px;position:relative}.pfx-sync-steps li:before{counter-increment:syncstep;content:counter(syncstep);position:absolute;left:14px;top:14px;width:24px;height:24px;border-radius:9px;display:grid;place-items:center;background:#168bff2e;color:#8cc9ff;font-weight:950}.pfx-sync-steps b{display:block;margin-bottom:4px}.pfx-sync-steps span{display:block;color:#ffffff94;line-height:1.5;font-size:13px}.pfx-sync-events-card{margin-top:18px}.pfx-sync-events{display:grid;gap:10px}.pfx-sync-event{display:grid;grid-template-columns:160px 190px minmax(0,1fr);gap:12px;align-items:center;border:1px solid rgba(255,255,255,.07);background:#ffffff06;border-radius:15px;padding:12px 14px}.pfx-sync-event span{color:#ffffff7a;font-size:12px;font-weight:850}.pfx-sync-event strong{font-size:13px}.pfx-sync-event p{margin:0;color:#ffffff9e;font-size:13px;line-height:1.45}.pfx-sync-warning{display:flex;gap:10px;align-items:flex-start;border:1px solid rgba(255,180,42,.28);background:#ffb42a14;color:#ffe3a9;border-radius:17px;padding:13px 14px;margin:12px 0 16px;line-height:1.5}.pfx-sync-warning strong{white-space:nowrap}.pfx-checkbox{display:flex!important;align-items:center!important;gap:10px!important;margin:10px 0;color:#ffffffad;font-weight:800}.pfx-checkbox input{width:auto!important;min-width:18px;height:18px}.pfx-sync-test-result{border:1px solid rgba(255,255,255,.08);background:#ffffff09;border-radius:15px;padding:12px 14px;margin-top:14px;color:#ffffff94;font-size:13px;line-height:1.5}.pfx-sync-test-result.is-loading{border-color:#168bff47;color:#b9dcff}.pfx-sync-test-result.is-ok{border-color:#13df9159;background:#13df9114;color:#b8ffe1}.pfx-sync-test-result.is-error{border-color:#ff4f7059;background:#ff4f7014;color:#ffc2cf}.pfx-sync-backend-panel{margin-top:12px}button:disabled,.pfx-btn:disabled{opacity:.48;cursor:not-allowed;box-shadow:none}@media(max-width:1280px){.pfx-sync-layout{grid-template-columns:1fr}.pfx-sync-guide-card{position:static}.pfx-sync-hero{grid-template-columns:1fr}.pfx-sync-hero-actions{justify-content:flex-start}.pfx-workspace-strip,.pfx-sync-status-grid{grid-template-columns:repeat(2,minmax(130px,1fr))}}@media(max-width:720px){.pfx-sync-account-stats,.pfx-sync-mini,.pfx-sync-status-grid,.pfx-sync-event{grid-template-columns:1fr}.pfx-sync-account-main{align-items:flex-start}.pfx-sync-hero-actions .pfx-btn,.pfx-sync-account-actions .pfx-btn,.pfx-toolbar .pfx-btn{width:100%}}.pfx-phase3-hero{background:linear-gradient(135deg,#006bff33,#00e0c614),#ffffff09;border:1px solid rgba(0,132,255,.2);border-radius:24px;padding:26px;display:flex;justify-content:space-between;gap:24px;margin-bottom:20px}.pfx-phase3-hero h2{margin:8px 0 10px;font-size:30px;letter-spacing:-.6px}.pfx-phase3-hero p{max-width:880px;color:#ffffffa3;line-height:1.65}.pfx-phase3-status{margin-bottom:18px}.pfx-phase3-blueprint{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-bottom:18px}.pfx-blueprint-step{border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:18px;background:linear-gradient(180deg,#ffffff0b,#ffffff05)}.pfx-blueprint-step b{display:grid;place-items:center;width:34px;height:34px;border-radius:999px;background:linear-gradient(135deg,#006bff,#00d4c7);box-shadow:0 0 22px #0084ff47;margin-bottom:13px}.pfx-blueprint-step strong{display:block;margin-bottom:7px}.pfx-blueprint-step span{display:block;color:#ffffff94;font-size:13px;line-height:1.45}.pfx-phase3-layout{margin-bottom:18px}.pfx-platform-card,.pfx-platform-catalog-card{margin-top:18px}.pfx-platform-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.pfx-platform-connection{border:1px solid rgba(255,255,255,.08);border-radius:20px;padding:18px;background:#ffffff09}.pfx-platform-main{display:flex;align-items:center;gap:14px;margin-bottom:14px}.pfx-platform-icon{width:48px;height:48px;border-radius:16px;display:grid;place-items:center;background:linear-gradient(135deg,#006bff57,#00e0c624);font-size:22px;border:1px solid rgba(0,132,255,.22)}.pfx-platform-main h3{margin:0 0 5px}.pfx-platform-main p{margin:0;color:#ffffff85;font-size:13px}.pfx-webhook-url{margin:14px 0;border:1px solid rgba(0,132,255,.16);background:#0084ff12;border-radius:14px;padding:12px}.pfx-webhook-url small{display:block;color:#ffffff85;margin-bottom:6px}.pfx-webhook-url code{display:block;word-break:break-all;color:#a8d8ff;font-size:12px}.pfx-platform-empty{margin-top:0}.pfx-platform-catalog{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.pfx-catalog-item{border:1px solid rgba(255,255,255,.08);border-radius:17px;padding:16px;background:#ffffff06;min-height:154px}.pfx-catalog-item.is-live{border-color:#1ad58b3d;background:#1ad58b0b}.pfx-catalog-item div{display:flex;justify-content:space-between;gap:10px;align-items:flex-start;margin-bottom:10px}.pfx-catalog-item strong{font-size:15px}.pfx-catalog-item span{font-size:11px;color:#9dc9ff;border:1px solid rgba(0,132,255,.22);background:#0084ff14;border-radius:999px;padding:5px 8px;white-space:nowrap}.pfx-catalog-item p{color:#fff9;font-size:13px;line-height:1.45;margin:0 0 12px}.pfx-catalog-item small{display:block;color:#fff6;font-size:12px;text-transform:capitalize}.pfx-webhook-modal .pfx-code-textarea{font-family:JetBrains Mono,monospace;min-height:260px;resize:vertical;background:#00000052;color:#dbeafe;border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:14px;width:100%}.pfx-webhook-help{border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:12px;background:#ffffff09}.pfx-webhook-help small{display:block;color:#ffffff7a;margin-bottom:5px}.pfx-webhook-help span{font-size:13px;color:#ffffffb3}.pfx-form-grid-two{grid-template-columns:1fr 1.3fr!important}.pfx-platform-modal select[name=type] option{text-transform:none}@media(max-width:1500px){.pfx-platform-catalog{grid-template-columns:repeat(3,minmax(0,1fr))}.pfx-phase3-blueprint{grid-template-columns:repeat(2,minmax(0,1fr))}.pfx-platform-list{grid-template-columns:1fr}}@media(max-width:900px){.pfx-phase3-hero{flex-direction:column}.pfx-platform-catalog,.pfx-phase3-blueprint{grid-template-columns:1fr}.pfx-form-grid-two{grid-template-columns:1fr!important}}.pfx-shot-placeholder{height:150px;display:grid;place-items:center;text-align:center;padding:14px;background:linear-gradient(135deg,#0084ff1a,#0000003d);color:#dbeafe;font-weight:900;line-height:1.35}.pfx-shot-placeholder small{display:block;margin-top:6px;color:#ffffff85;font-size:11px;word-break:break-all;font-weight:700}@media(max-width:1180px){.pfx-root{position:fixed;inset:0;overflow:auto;-webkit-overflow-scrolling:touch}.pfx-shell{display:grid!important;grid-template-columns:1fr!important;min-height:100dvh!important}.pfx-sidebar{position:sticky!important;top:0!important;z-index:30!important;height:auto!important;min-height:auto!important;padding:16px!important;border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:#030407f0!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important}.pfx-side-brand{gap:10px!important}.pfx-logo-mark{width:40px!important;height:40px!important;border-radius:12px!important}.pfx-nav{display:flex!important;overflow-x:auto!important;gap:8px!important;margin-top:16px!important;padding-bottom:4px!important;scrollbar-width:none!important}.pfx-nav::-webkit-scrollbar{display:none!important}.pfx-nav-item{flex:0 0 auto!important;min-height:44px!important;height:44px!important;padding:0 13px!important;border-radius:14px!important;white-space:nowrap!important}.pfx-home-link{position:static!important;margin-top:12px!important;width:100%!important}.pfx-main{min-width:0!important}.pfx-appbar,.pfx-topbar{position:sticky!important;top:0!important;z-index:24!important;height:auto!important;min-height:76px!important;padding:14px 16px!important;align-items:flex-start!important;flex-direction:column!important;gap:14px!important}.pfx-appbar h1{font-size:clamp(22px,6vw,30px)!important;line-height:1.1!important}.pfx-appbar small{line-height:1.45!important}.pfx-actions,.pfx-top-actions,.pfx-preview-actions,.pfx-toolbar{width:100%!important;display:flex!important;flex-wrap:wrap!important;gap:8px!important;justify-content:flex-start!important}.pfx-actions .pfx-btn,.pfx-top-actions .pfx-btn,.pfx-preview-actions .pfx-btn,.pfx-toolbar .pfx-btn{min-height:44px!important;flex:1 1 160px!important}.pfx-search{min-width:0!important;width:100%!important}.pfx-content{padding:18px 16px 42px!important}.pfx-metrics{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}.pfx-metric{padding:14px!important;border-radius:18px!important}.pfx-metric strong{font-size:clamp(20px,6vw,28px)!important;overflow-wrap:anywhere!important}.pfx-grid-two,.pfx-grid-three,.pfx-journal-grid,.pfx-sync-layout,.pfx-phase3-layout,.pfx-workspace-grid{grid-template-columns:1fr!important;gap:14px!important}.pfx-card{border-radius:18px!important;padding:16px!important;min-width:0!important;overflow:hidden!important}.pfx-card-head{flex-direction:column!important;align-items:flex-start!important;gap:12px!important}.pfx-card-head .pfx-actions{width:100%!important}.pfx-equity{height:220px!important;min-width:640px!important}.pfx-card-large{overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}.pfx-row{min-width:860px!important}.pfx-table{overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}.pfx-analysis-list{grid-template-columns:1fr!important}.pfx-preview-hero{grid-template-columns:1fr!important;min-height:auto!important;padding:28px 18px!important;gap:24px!important}.pfx-preview-copy h1{font-size:clamp(36px,11vw,60px)!important;line-height:1.02!important}.pfx-preview-copy p{font-size:16px!important;line-height:1.6!important}.pfx-preview-panel{max-height:none!important;overflow:hidden!important;border-radius:20px!important}.pfx-sync-hero,.pfx-phase3-hero{display:grid!important;grid-template-columns:1fr!important;padding:18px!important;border-radius:20px!important}.pfx-sync-hero h2,.pfx-phase3-hero h2{font-size:clamp(24px,7vw,34px)!important;line-height:1.12!important}.pfx-sync-hero-actions{justify-content:stretch!important;width:100%!important}.pfx-sync-hero-actions .pfx-btn{width:100%!important}.pfx-sync-status-grid,.pfx-phase3-status,.pfx-workspace-strip,.pfx-phase3-blueprint,.pfx-platform-catalog,.pfx-platform-list,.pfx-sync-mini,.pfx-sync-account-stats,.pfx-sync-event{grid-template-columns:1fr!important}.pfx-platform-main,.pfx-sync-account-main{align-items:flex-start!important}.pfx-webhook-url code{font-size:11px!important}}@media(max-width:720px){.pfx-root{font-size:14px!important}.pfx-sidebar{padding:12px!important}.pfx-side-brand strong{font-size:16px!important}.pfx-side-brand small{font-size:11px!important}.pfx-appbar,.pfx-topbar{padding:12px!important}.pfx-content{padding:14px 12px 36px!important}.pfx-metrics{grid-template-columns:1fr!important}.pfx-btn{min-height:46px!important;padding:12px 14px!important}.pfx-card{padding:14px!important}.pfx-card h2,.pfx-card h3{line-height:1.22!important;overflow-wrap:anywhere!important}.pfx-mini-list div,.pfx-analysis-list div{align-items:flex-start!important;gap:8px!important;flex-direction:column!important}.pfx-tags{gap:7px!important}.pfx-tags span,.pfx-pill{font-size:11px!important}.pfx-modal-wrap{place-items:end center!important;padding:10px!important}.pfx-modal{width:100%!important;max-width:100%!important;max-height:92dvh!important;border-radius:22px 22px 18px 18px!important;padding:18px!important;overflow:auto!important}.pfx-modal-wide{width:100%!important}.pfx-modal h2{font-size:24px!important;line-height:1.15!important;padding-right:38px!important}.pfx-modal-close{right:14px!important;top:14px!important;width:38px!important;height:38px!important}.pfx-form-grid,.pfx-form-grid-two,.pfx-journal-review-grid{grid-template-columns:1fr!important;gap:10px!important}.pfx-modal input,.pfx-modal select,.pfx-modal textarea{min-height:46px!important;font-size:16px!important;width:100%!important}.pfx-modal textarea{min-height:132px!important}.pfx-modal-actions{display:grid!important;grid-template-columns:1fr!important;gap:8px!important}.pfx-modal-actions .pfx-btn{width:100%!important}.pfx-import-tools{display:grid!important;grid-template-columns:1fr!important}.pfx-import-summary,.pfx-import-row{min-width:620px!important}.pfx-import-table,#pfx-import-preview{overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}.pfx-sync-warning{display:block!important;font-size:13px!important}.pfx-sync-warning strong{display:block!important;margin-bottom:4px!important;white-space:normal!important}.pfx-platform-connection,.pfx-sync-account{padding:14px!important;border-radius:18px!important}.pfx-sync-account-actions{display:grid!important;grid-template-columns:1fr!important}.pfx-backend-panel strong{font-size:12px!important}}@media(max-width:420px){.pfx-nav-item{font-size:12px!important;padding:0 11px!important}.pfx-actions .pfx-btn,.pfx-top-actions .pfx-btn,.pfx-preview-actions .pfx-btn,.pfx-toolbar .pfx-btn{flex-basis:100%!important}.pfx-feature-row span{width:100%!important;text-align:center!important}.pfx-modal{padding:16px 14px!important}}body.prime-fxbook-open .pfx-root{position:fixed!important;inset:0!important;width:100vw!important;height:100dvh!important;z-index:2147483000!important;overflow:hidden!important;background:#02040a!important;color:#fff!important}body.prime-fxbook-open .pfx-shell-app{height:100dvh!important;min-height:100dvh!important;overflow:hidden!important}@media(max-width:760px),(hover:none)and (pointer:coarse)and (max-width:920px){body.prime-fxbook-open .pfx-shell-app{display:grid!important;grid-template-columns:1fr!important;grid-template-rows:auto minmax(0,1fr)!important}body.prime-fxbook-open .pfx-sidebar-pro{position:relative!important;top:auto!important;height:auto!important;min-height:0!important;max-height:none!important;z-index:20!important;padding:10px 10px 8px!important;border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:linear-gradient(180deg,#040811fa,#03050bf2)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;overflow:hidden!important}body.prime-fxbook-open .pfx-side-brand-pro{display:flex!important;align-items:center!important;gap:9px!important;min-height:36px!important}body.prime-fxbook-open .pfx-logo-mark{width:34px!important;height:34px!important;border-radius:11px!important;font-size:12px!important}body.prime-fxbook-open .pfx-side-brand-pro strong{font-size:14px!important;line-height:1.1!important}body.prime-fxbook-open .pfx-side-brand-pro small{font-size:10px!important;color:#ffffff73!important}body.prime-fxbook-open .pfx-member-card{display:none!important}body.prime-fxbook-open .pfx-nav-pro{display:flex!important;gap:6px!important;margin:8px 0 0!important;padding:0 0 2px!important;max-height:none!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important}body.prime-fxbook-open .pfx-nav-pro::-webkit-scrollbar{display:none!important}body.prime-fxbook-open .pfx-nav-section{display:flex!important;gap:6px!important;flex:0 0 auto!important;min-width:max-content!important}body.prime-fxbook-open .pfx-nav-section>span{display:none!important}body.prime-fxbook-open .pfx-nav-item{height:34px!important;min-height:34px!important;padding:0 10px!important;border-radius:12px!important;font-size:11px!important;line-height:1!important;gap:6px!important;white-space:nowrap!important;background:#ffffff0b!important;border:1px solid rgba(255,255,255,.07)!important}body.prime-fxbook-open .pfx-nav-item span{width:auto!important}body.prime-fxbook-open .pfx-nav-item.active{background:#0084ff2e!important;border-color:#0084ff47!important;color:#fff!important}body.prime-fxbook-open .pfx-home-link{position:absolute!important;inset:10px 10px auto auto!important;width:36px!important;height:36px!important;padding:0!important;margin:0!important;border-radius:12px!important;display:grid!important;place-items:center!important;z-index:3!important}body.prime-fxbook-open .pfx-home-link span:not(.pfx-home-icon){display:none!important}body.prime-fxbook-open .pfx-main-pro{min-width:0!important;min-height:0!important;height:100%!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;background:radial-gradient(circle at 80% 0%,rgba(0,132,255,.11),transparent 34%),#030407!important}body.prime-fxbook-open .pfx-appbar-pro{position:sticky!important;top:0!important;z-index:12!important;min-height:auto!important;height:auto!important;padding:10px!important;display:grid!important;grid-template-columns:1fr!important;gap:8px!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:#030408f0!important;-webkit-backdrop-filter:blur(16px)!important;backdrop-filter:blur(16px)!important}body.prime-fxbook-open .pfx-title-block .pfx-kicker{font-size:10px!important;padding:5px 8px!important}body.prime-fxbook-open .pfx-appbar-pro h1{font-size:22px!important;line-height:1.05!important;margin:4px 0 2px!important;letter-spacing:-.03em!important}body.prime-fxbook-open .pfx-appbar-pro small{font-size:11px!important;line-height:1.25!important;color:#ffffff80!important}body.prime-fxbook-open .pfx-toolbar{width:100%!important;display:flex!important;flex-wrap:nowrap!important;gap:6px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;padding:0 0 2px!important;scrollbar-width:none!important;justify-content:flex-start!important}body.prime-fxbook-open .pfx-toolbar::-webkit-scrollbar{display:none!important}body.prime-fxbook-open .pfx-toolbar .pfx-search{display:none!important}body.prime-fxbook-open .pfx-toolbar .pfx-chip,body.prime-fxbook-open .pfx-toolbar .pfx-btn{flex:0 0 auto!important;width:auto!important;min-width:max-content!important;min-height:34px!important;height:34px!important;padding:0 10px!important;border-radius:11px!important;font-size:10px!important;line-height:1!important}body.prime-fxbook-open .pfx-workspace-strip{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;margin:10px!important}body.prime-fxbook-open .pfx-workspace-strip .pfx-metric{padding:10px!important;border-radius:14px!important;min-width:0!important}body.prime-fxbook-open .pfx-workspace-strip .pfx-metric span{font-size:9px!important;letter-spacing:.06em!important}body.prime-fxbook-open .pfx-workspace-strip .pfx-metric strong{font-size:18px!important;line-height:1.08!important;word-break:break-word!important}body.prime-fxbook-open .pfx-content-pro{padding:0 10px calc(18px + env(safe-area-inset-bottom,0px))!important}body.prime-fxbook-open .pfx-card{border-radius:16px!important;padding:12px!important;box-shadow:0 14px 38px #0000003d!important}body.prime-fxbook-open .pfx-card-head{margin-bottom:12px!important;gap:8px!important}body.prime-fxbook-open .pfx-card h2,body.prime-fxbook-open .pfx-card h3{font-size:18px!important;line-height:1.16!important}body.prime-fxbook-open .pfx-card p,body.prime-fxbook-open .pfx-card-head span{font-size:12px!important;line-height:1.45!important}body.prime-fxbook-open .pfx-grid-two,body.prime-fxbook-open .pfx-grid-three,body.prime-fxbook-open .pfx-journal-grid,body.prime-fxbook-open .pfx-tools-page,body.prime-fxbook-open .pfx-sync-layout,body.prime-fxbook-open .pfx-phase3-layout{grid-template-columns:1fr!important;gap:10px!important;margin-top:10px!important}body.prime-fxbook-open .pfx-mini-list div,body.prime-fxbook-open .pfx-analysis-list div{padding:11px!important;border-radius:13px!important}body.prime-fxbook-open .pfx-table,body.prime-fxbook-open .pfx-card-large{overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}body.prime-fxbook-open .pfx-row{min-width:720px!important;padding:11px!important;gap:8px!important}body.prime-fxbook-open .pfx-equity{height:180px!important;min-width:520px!important}}@media(max-width:760px)and (orientation:portrait){body.prime-fxbook-open .pfx-shell-app{grid-template-rows:auto minmax(0,1fr)!important}body.prime-fxbook-open .pfx-sidebar-pro{max-height:96px!important}}@media(hover:none)and (pointer:coarse)and (orientation:landscape),(max-width:920px)and (orientation:landscape){body.prime-fxbook-open .pfx-shell-app{display:grid!important;grid-template-columns:172px minmax(0,1fr)!important;grid-template-rows:1fr!important}body.prime-fxbook-open .pfx-sidebar-pro{height:100dvh!important;max-height:none!important;overflow-y:auto!important;overflow-x:hidden!important;padding:8px!important;border-right:1px solid rgba(255,255,255,.08)!important;border-bottom:0!important}body.prime-fxbook-open .pfx-side-brand-pro{gap:7px!important}body.prime-fxbook-open .pfx-side-brand-pro small{display:none!important}body.prime-fxbook-open .pfx-nav-pro{display:grid!important;grid-template-columns:1fr!important;gap:5px!important;overflow-y:visible!important;overflow-x:hidden!important;margin-top:8px!important}body.prime-fxbook-open .pfx-nav-section{display:grid!important;grid-template-columns:1fr!important;gap:5px!important;min-width:0!important}body.prime-fxbook-open .pfx-nav-item{width:100%!important;height:31px!important;min-height:31px!important;padding:0 8px!important;font-size:10px!important;justify-content:flex-start!important}body.prime-fxbook-open .pfx-home-link{position:static!important;width:100%!important;height:32px!important;margin-top:8px!important;font-size:10px!important}body.prime-fxbook-open .pfx-home-link span:not(.pfx-home-icon){display:inline!important}body.prime-fxbook-open .pfx-main-pro{height:100dvh!important}body.prime-fxbook-open .pfx-appbar-pro{padding:8px 10px!important;gap:6px!important}body.prime-fxbook-open .pfx-title-block{display:grid!important;grid-template-columns:auto 1fr!important;align-items:center!important;gap:8px!important}body.prime-fxbook-open .pfx-title-block small{grid-column:1/-1!important}body.prime-fxbook-open .pfx-appbar-pro h1{font-size:20px!important;margin:0!important}body.prime-fxbook-open .pfx-toolbar .pfx-chip,body.prime-fxbook-open .pfx-toolbar .pfx-btn{height:31px!important;min-height:31px!important;font-size:10px!important}body.prime-fxbook-open .pfx-workspace-strip{grid-template-columns:repeat(5,minmax(82px,1fr))!important;margin:8px 10px!important;gap:6px!important}body.prime-fxbook-open .pfx-workspace-strip .pfx-metric{padding:8px!important}body.prime-fxbook-open .pfx-workspace-strip .pfx-metric strong{font-size:16px!important}}body.prime-fxbook-open .bottom-nav,body.prime-fxbook-open .gp-terminal-bottom,body.prime-fxbook-open .gp-mobile-quick-rail,body.prime-fxbook-open .gp-mobile-action-dock{display:none!important;visibility:hidden!important;pointer-events:none!important}@media(max-width:920px),(hover:none)and (pointer:coarse){body.prime-fxbook-open{overflow:hidden!important;background:#02040a!important}.pfx-root{overflow:hidden!important;height:100dvh!important;min-height:100dvh!important;max-height:100dvh!important;z-index:2147483000!important;background:#02040a!important}.pfx-shell.pfx-shell-app{height:100dvh!important;min-height:0!important;max-height:100dvh!important;display:grid!important;grid-template-columns:1fr!important;grid-template-rows:auto minmax(0,1fr)!important;overflow:hidden!important;background:radial-gradient(circle at 80% 0%,rgba(0,132,255,.18),transparent 34%),#02040a!important}.pfx-sidebar.pfx-sidebar-pro{position:relative!important;top:auto!important;height:auto!important;min-height:0!important;max-height:none!important;padding:calc(env(safe-area-inset-top,0px) + 8px) 10px 8px!important;border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:linear-gradient(180deg,#050a16fa,#03060efa)!important;display:grid!important;grid-template-columns:1fr!important;gap:8px!important;overflow:visible!important;z-index:8!important}.pfx-side-brand-pro{min-height:36px!important;gap:10px!important}.pfx-side-brand-pro .pfx-logo-mark{width:34px!important;height:34px!important;border-radius:11px!important;font-size:13px!important}.pfx-side-brand-pro strong{font-size:14px!important;line-height:1.1!important}.pfx-side-brand-pro small{font-size:10px!important;margin-top:1px!important}.pfx-member-card{display:none!important}.pfx-nav.pfx-nav-pro{margin:0!important;display:flex!important;gap:6px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important;padding:2px 0 4px!important}.pfx-nav.pfx-nav-pro::-webkit-scrollbar{display:none!important}.pfx-nav-section{display:flex!important;gap:6px!important;flex:0 0 auto!important;min-width:max-content!important}.pfx-nav-section>span{display:none!important}.pfx-nav-item{width:auto!important;min-width:max-content!important;height:34px!important;min-height:34px!important;padding:0 10px!important;border-radius:999px!important;border:1px solid rgba(255,255,255,.08)!important;background:#ffffff09!important;color:#eef6ffc2!important;font-size:11px!important;font-weight:900!important;gap:6px!important}.pfx-nav-item span{width:auto!important;color:#38a6ff!important}.pfx-nav-item.active{background:linear-gradient(135deg,#0084ff59,#00e0d029)!important;border-color:#4599ff52!important;color:#fff!important}.pfx-home-link{position:static!important;left:auto!important;right:auto!important;bottom:auto!important;margin:0!important;height:34px!important;min-height:34px!important;padding:0 12px!important;border-radius:14px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;font-size:11px!important;background:#0084ff1a!important}.pfx-main.pfx-main-pro{min-height:0!important;height:auto!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;display:block!important;padding-bottom:calc(env(safe-area-inset-bottom,0px) + 16px)!important}.pfx-appbar.pfx-appbar-pro{position:sticky!important;top:0!important;z-index:7!important;height:auto!important;min-height:0!important;padding:10px!important;gap:9px!important;display:grid!important;grid-template-columns:1fr!important;align-items:stretch!important;background:#030710f6!important;-webkit-backdrop-filter:blur(14px)!important;backdrop-filter:blur(14px)!important}.pfx-title-block .pfx-kicker{padding:5px 8px!important;font-size:10px!important}.pfx-appbar h1{margin-top:7px!important;font-size:22px!important;line-height:1.05!important}.pfx-title-block small{display:block!important;margin-top:5px!important;font-size:11px!important;color:#ffffff80!important}.pfx-toolbar{display:flex!important;gap:7px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important;padding-bottom:2px!important;justify-content:flex-start!important}.pfx-toolbar::-webkit-scrollbar{display:none!important}.pfx-toolbar .pfx-search{display:none!important}.pfx-toolbar .pfx-btn,.pfx-toolbar .pfx-chip{flex:0 0 auto!important;min-width:max-content!important;height:34px!important;min-height:34px!important;padding:0 10px!important;border-radius:999px!important;font-size:11px!important;white-space:nowrap!important}.pfx-workspace-strip{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;padding:10px!important;margin:0!important}.pfx-workspace-strip .pfx-metric{padding:12px!important;border-radius:16px!important}.pfx-workspace-strip .pfx-metric span{font-size:10px!important}.pfx-workspace-strip .pfx-metric strong{margin-top:6px!important;font-size:20px!important}.pfx-content.pfx-content-pro{padding:10px 10px calc(env(safe-area-inset-bottom,0px) + 22px)!important}.pfx-dashboard-grid,.pfx-grid-two,.pfx-grid-three,.pfx-analysis-layout,.pfx-tools-page,.pfx-backtest-layout,.pfx-journal-grid,.pfx-ai-grid{display:grid!important;grid-template-columns:1fr!important;gap:10px!important;margin-top:10px!important}.pfx-metrics,.pfx-analysis-hero,.pfx-journal-overview,.pfx-sync-mini,.pfx-tool-results,.pfx-pov-grid,.pfx-journal-review-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}.pfx-card,.pfx-metric{border-radius:17px!important;padding:14px!important}.pfx-card-head{gap:10px!important;margin-bottom:12px!important;align-items:flex-start!important;flex-direction:column!important}.pfx-card h2,.pfx-card h3{font-size:18px!important;line-height:1.12!important}.pfx-card p,.pfx-card-head span{font-size:12px!important;line-height:1.5!important}.pfx-card-large,.pfx-empty-big,.pfx-coming{min-height:230px!important}.pfx-chart-wrap,.pfx-backtest-chart,.pfx-backtest-empty{min-height:220px!important}.pfx-svg-chart,.pfx-equity,.pfx-backtest-chart svg{height:220px!important}.pfx-table{overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}.pfx-row{min-width:780px!important;padding:12px!important;gap:10px!important}.pfx-form-grid,.pfx-tool-form,.pfx-import-row,.pfx-session-list div,.pfx-horizontal-row,.pfx-score-bars div,.pfx-ai-narrative,.pfx-ai-action-list,.pfx-ai-area-table div,.pfx-ai-flagged div{grid-template-columns:1fr!important}.pfx-modal-wrap{align-items:stretch!important;justify-items:stretch!important;padding:calc(env(safe-area-inset-top,0px) + 8px) 8px calc(env(safe-area-inset-bottom,0px) + 8px)!important}.pfx-modal{width:100%!important;max-height:none!important;height:100%!important;border-radius:20px!important;padding:18px!important}}@media(max-width:520px),(hover:none)and (pointer:coarse)and (orientation:portrait){.pfx-workspace-strip,.pfx-metrics,.pfx-analysis-hero,.pfx-journal-overview,.pfx-sync-mini,.pfx-tool-results,.pfx-pov-grid,.pfx-journal-review-grid{grid-template-columns:1fr!important}.pfx-toolbar .pfx-btn:nth-of-type(n+4){display:none!important}}@media(max-width:920px)and (orientation:landscape),(hover:none)and (pointer:coarse)and (orientation:landscape){.pfx-shell.pfx-shell-app{grid-template-rows:auto minmax(0,1fr)!important}.pfx-sidebar.pfx-sidebar-pro{padding:calc(env(safe-area-inset-top,0px) + 6px) 8px 6px!important;grid-template-columns:auto 1fr auto!important;align-items:center!important}.pfx-side-brand-pro small,.pfx-home-link span:last-child{display:none!important}.pfx-nav.pfx-nav-pro{padding:0!important}.pfx-home-link{width:38px!important;min-width:38px!important;padding:0!important}.pfx-appbar.pfx-appbar-pro{grid-template-columns:minmax(0,.7fr) minmax(0,1fr)!important;align-items:center!important}.pfx-appbar h1{font-size:18px!important}.pfx-title-block small{display:none!important}.pfx-workspace-strip,.pfx-metrics,.pfx-analysis-hero,.pfx-journal-overview,.pfx-sync-mini,.pfx-tool-results,.pfx-pov-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important}}body.prime-fxbook-open #app,body.prime-fxbook-open #app.prime-hidden-app,body.prime-fxbook-open .bottom-nav,body.prime-fxbook-open .gp-mobile-quick-rail,body.prime-fxbook-open .gp-mobile-action-dock{display:none!important;visibility:hidden!important;pointer-events:none!important}@media(max-width:720px){body.prime-fxbook-open{overflow:hidden!important;background:#02040a!important}body.prime-fxbook-open .pfx-root{position:fixed!important;inset:0!important;height:100dvh!important;width:100vw!important;overflow:hidden!important;z-index:2147483000!important;background:#02040a!important;font-size:13px!important}body.prime-fxbook-open .pfx-shell-app{height:100dvh!important;min-height:100dvh!important;display:grid!important;grid-template-columns:1fr!important;grid-template-rows:auto minmax(0,1fr)!important;overflow:hidden!important;background:radial-gradient(circle at 80% 0%,rgba(0,132,255,.16),transparent 34%),#02040a!important}body.prime-fxbook-open .pfx-sidebar-pro{position:relative!important;top:auto!important;height:auto!important;min-height:0!important;max-height:none!important;padding:max(10px,env(safe-area-inset-top)) 10px 8px!important;border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important;background:#03060df5!important;overflow:visible!important;display:grid!important;gap:8px!important}body.prime-fxbook-open .pfx-side-brand-pro{padding:0 0 6px!important;border-bottom:0!important;gap:9px!important}body.prime-fxbook-open .pfx-logo-mark{width:34px!important;height:34px!important;border-radius:11px!important;font-size:13px!important}body.prime-fxbook-open .pfx-side-brand strong{font-size:14px!important}body.prime-fxbook-open .pfx-side-brand small{font-size:10px!important}body.prime-fxbook-open .pfx-member-card{display:none!important}body.prime-fxbook-open .pfx-nav-pro{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:6px!important;margin:0!important;padding:0!important;overflow:visible!important;max-height:none!important}body.prime-fxbook-open .pfx-nav-section{display:contents!important}body.prime-fxbook-open .pfx-nav-section>span{display:none!important}body.prime-fxbook-open .pfx-nav-item{min-height:36px!important;height:36px!important;border-radius:12px!important;padding:0 6px!important;justify-content:center!important;text-align:center!important;gap:4px!important;font-size:10.5px!important;line-height:1.1!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;background:#ffffff09!important;border:1px solid rgba(255,255,255,.055)!important}body.prime-fxbook-open .pfx-nav-item span{width:auto!important;min-width:auto!important;font-size:10px!important}body.prime-fxbook-open .pfx-nav-item.active{background:linear-gradient(135deg,#0084ff57,#0084ff24)!important;border-color:#0084ff61!important;color:#fff!important}body.prime-fxbook-open .pfx-home-link{position:static!important;margin:0!important;min-height:36px!important;height:36px!important;padding:0 10px!important;border-radius:12px!important;font-size:11px!important}body.prime-fxbook-open .pfx-main-pro{min-height:0!important;height:100%!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;padding-bottom:18px!important}body.prime-fxbook-open .pfx-appbar-pro{position:relative!important;top:auto!important;min-height:0!important;height:auto!important;padding:10px!important;gap:9px!important;background:#050912db!important}body.prime-fxbook-open .pfx-title-block{gap:5px!important}body.prime-fxbook-open .pfx-title-block .pfx-kicker{width:max-content!important;font-size:9px!important;padding:5px 8px!important}body.prime-fxbook-open .pfx-title-block h1{font-size:23px!important;line-height:1.08!important}body.prime-fxbook-open .pfx-title-block small{font-size:11px!important;line-height:1.35!important}body.prime-fxbook-open .pfx-toolbar{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important;width:100%!important;margin:0!important}body.prime-fxbook-open .pfx-toolbar .pfx-search{grid-column:1 / -1!important;width:100%!important;min-width:0!important;height:38px!important;min-height:38px!important;border-radius:13px!important;font-size:11px!important}body.prime-fxbook-open .pfx-search kbd{display:none!important}body.prime-fxbook-open .pfx-toolbar .pfx-btn,body.prime-fxbook-open .pfx-toolbar .pfx-chip{width:100%!important;min-height:38px!important;padding:8px 9px!important;border-radius:12px!important;font-size:10.5px!important;line-height:1.15!important}body.prime-fxbook-open .pfx-workspace-strip{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;padding:10px!important}body.prime-fxbook-open .pfx-metric{padding:11px!important;border-radius:15px!important}body.prime-fxbook-open .pfx-metric span{font-size:9px!important}body.prime-fxbook-open .pfx-metric strong{font-size:20px!important;margin-top:6px!important}body.prime-fxbook-open .pfx-content-pro{padding:10px 10px 18px!important}body.prime-fxbook-open .pfx-card{padding:12px!important;border-radius:16px!important}body.prime-fxbook-open .pfx-grid-two,body.prime-fxbook-open .pfx-grid-three,body.prime-fxbook-open .pfx-dashboard-grid,body.prime-fxbook-open .pfx-tools-page,body.prime-fxbook-open .pfx-journal-grid{grid-template-columns:1fr!important;gap:10px!important}body.prime-fxbook-open .pfx-table,body.prime-fxbook-open .pfx-card-large{overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}body.prime-fxbook-open .pfx-row{min-width:820px!important}}@media(max-width:380px){body.prime-fxbook-open .pfx-nav-pro{grid-template-columns:repeat(2,minmax(0,1fr))!important}body.prime-fxbook-open .pfx-toolbar,body.prime-fxbook-open .pfx-workspace-strip{grid-template-columns:1fr!important}}body.prime-fxbook-open{overflow:hidden!important;background:#02040a!important}body.prime-fxbook-open #app,body.prime-fxbook-open .bottom-nav,body.prime-fxbook-open #bottom-nav,body.prime-fxbook-open .gp-mobile-quick-rail,body.prime-fxbook-open .gp-mobile-action-dock{display:none!important;pointer-events:none!important}@media(max-width:720px),(hover:none)and (pointer:coarse){#prime-fxbook-root.pfx-root{position:fixed!important;inset:0!important;z-index:2147483000!important;width:100vw!important;height:100dvh!important;max-width:100vw!important;max-height:100dvh!important;overflow:hidden!important;background:radial-gradient(circle at 70% 0%,rgba(0,132,255,.18),transparent 42%),linear-gradient(180deg,#050814,#02040a)!important;color-scheme:dark!important;-webkit-text-size-adjust:100%!important}#prime-fxbook-root .pfx-shell,#prime-fxbook-root .pfx-shell-app{display:flex!important;flex-direction:column!important;width:100vw!important;height:100dvh!important;min-height:0!important;max-height:100dvh!important;overflow:hidden!important;background:transparent!important}#prime-fxbook-root .pfx-sidebar,#prime-fxbook-root .pfx-sidebar-pro{position:relative!important;top:auto!important;left:auto!important;right:auto!important;flex:0 0 auto!important;display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;grid-template-rows:auto auto!important;gap:8px!important;width:100%!important;height:auto!important;min-height:0!important;max-height:126px!important;padding:calc(env(safe-area-inset-top,0px) + 10px) 10px 8px!important;border-right:0!important;border-bottom:1px solid rgba(69,139,255,.22)!important;background:linear-gradient(180deg,#050c1bfb,#030711f6)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;overflow:visible!important;z-index:40!important}#prime-fxbook-root .pfx-side-brand,#prime-fxbook-root .pfx-side-brand-pro{grid-column:1!important;grid-row:1!important;display:flex!important;align-items:center!important;gap:9px!important;min-width:0!important;padding:0!important;border-bottom:0!important}#prime-fxbook-root .pfx-logo-mark{width:36px!important;height:36px!important;min-width:36px!important;border-radius:12px!important;font-size:14px!important}#prime-fxbook-root .pfx-side-brand strong,#prime-fxbook-root .pfx-brand strong{max-width:190px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;font-size:15px!important;line-height:1.05!important}#prime-fxbook-root .pfx-side-brand small,#prime-fxbook-root .pfx-brand small{max-width:190px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;font-size:10px!important}#prime-fxbook-root .pfx-member-card{display:none!important}#prime-fxbook-root .pfx-home-link,#prime-fxbook-root .pfx-sidebar-pro .pfx-home-link{grid-column:2!important;grid-row:1!important;position:relative!important;inset:auto!important;width:40px!important;min-width:40px!important;max-width:40px!important;height:40px!important;min-height:40px!important;margin:0!important;padding:0!important;border-radius:14px!important;border:1px solid rgba(82,151,255,.26)!important;background:#ffffff0e!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;font-size:0!important}#prime-fxbook-root .pfx-home-link .pfx-home-icon,#prime-fxbook-root .pfx-sidebar-pro .pfx-home-link .pfx-home-icon{display:inline-flex!important;font-size:16px!important;margin:0!important}#prime-fxbook-root .pfx-home-link span:not(.pfx-home-icon){display:none!important}#prime-fxbook-root .pfx-nav,#prime-fxbook-root .pfx-nav-pro,#prime-fxbook-root .pfx-sidebar-pro .pfx-nav-pro{grid-column:1 / -1!important;grid-row:2!important;display:flex!important;flex-wrap:nowrap!important;align-items:center!important;gap:6px!important;width:100%!important;max-width:100%!important;height:40px!important;min-height:40px!important;margin:0!important;padding:2px 0!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important}#prime-fxbook-root .pfx-nav::-webkit-scrollbar,#prime-fxbook-root .pfx-nav-pro::-webkit-scrollbar{display:none!important}#prime-fxbook-root .pfx-nav-section{flex:0 0 auto!important;display:flex!important;align-items:center!important;gap:6px!important;min-width:0!important}#prime-fxbook-root .pfx-nav-section>span{display:none!important}#prime-fxbook-root .pfx-nav-item,#prime-fxbook-root .pfx-nav-pro .pfx-nav-item{flex:0 0 auto!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:6px!important;width:auto!important;height:34px!important;min-height:34px!important;padding:0 11px!important;border-radius:999px!important;border:1px solid rgba(78,148,255,.18)!important;background:#ffffff0b!important;color:#e5f1ffd1!important;font-size:11px!important;font-weight:900!important;white-space:nowrap!important}#prime-fxbook-root .pfx-nav-item span{width:auto!important;color:#2f8cff!important;font-size:12px!important}#prime-fxbook-root .pfx-nav-item.active{border-color:#00e0ff66!important;background:linear-gradient(135deg,#0084ff4d,#00e0c524)!important;color:#fff!important}#prime-fxbook-root .pfx-main,#prime-fxbook-root .pfx-main-pro{flex:1 1 auto!important;min-width:0!important;min-height:0!important;height:auto!important;display:flex!important;flex-direction:column!important;overflow:hidden!important;background:transparent!important}#prime-fxbook-root .pfx-appbar,#prime-fxbook-root .pfx-appbar-pro,#prime-fxbook-root .pfx-topbar{position:relative!important;top:auto!important;z-index:20!important;flex:0 0 auto!important;display:grid!important;grid-template-columns:1fr!important;gap:8px!important;height:auto!important;min-height:0!important;padding:10px!important;border-bottom:1px solid rgba(255,255,255,.07)!important;background:#040812db!important;-webkit-backdrop-filter:blur(14px)!important;backdrop-filter:blur(14px)!important}#prime-fxbook-root .pfx-title-block{display:grid!important;gap:3px!important;min-width:0!important}#prime-fxbook-root .pfx-title-block .pfx-kicker{display:none!important}#prime-fxbook-root .pfx-appbar h1,#prime-fxbook-root .pfx-title-block h1{margin:0!important;font-size:23px!important;line-height:1.05!important;letter-spacing:-.02em!important}#prime-fxbook-root .pfx-appbar small,#prime-fxbook-root .pfx-title-block small{max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;font-size:11px!important;color:#e8f1ff8a!important}#prime-fxbook-root .pfx-toolbar,#prime-fxbook-root .pfx-actions,#prime-fxbook-root .pfx-top-actions{width:100%!important;display:flex!important;flex-wrap:nowrap!important;justify-content:flex-start!important;gap:7px!important;margin:0!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important;padding-bottom:1px!important}#prime-fxbook-root .pfx-toolbar::-webkit-scrollbar{display:none!important}#prime-fxbook-root .pfx-toolbar .pfx-search{display:none!important}#prime-fxbook-root .pfx-toolbar .pfx-btn,#prime-fxbook-root .pfx-toolbar .pfx-chip,#prime-fxbook-root .pfx-actions .pfx-btn,#prime-fxbook-root .pfx-top-actions .pfx-btn{flex:0 0 auto!important;width:auto!important;min-width:max-content!important;min-height:36px!important;height:36px!important;padding:0 12px!important;border-radius:12px!important;font-size:11px!important;white-space:nowrap!important}#prime-fxbook-root .pfx-workspace-strip{flex:0 0 auto!important;display:flex!important;grid-template-columns:none!important;gap:8px!important;width:100%!important;max-width:100%!important;padding:8px 10px 0!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important}#prime-fxbook-root .pfx-workspace-strip::-webkit-scrollbar{display:none!important}#prime-fxbook-root .pfx-workspace-strip .pfx-metric{flex:0 0 132px!important;min-width:132px!important;padding:10px 11px!important;border-radius:15px!important}#prime-fxbook-root .pfx-workspace-strip .pfx-metric span{font-size:9px!important}#prime-fxbook-root .pfx-workspace-strip .pfx-metric strong{font-size:18px!important;margin-top:5px!important}#prime-fxbook-root .pfx-content,#prime-fxbook-root .pfx-content-pro{flex:1 1 auto!important;min-height:0!important;height:auto!important;padding:10px 10px calc(env(safe-area-inset-bottom,0px) + 18px)!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important}#prime-fxbook-root .pfx-dashboard-grid,#prime-fxbook-root .pfx-grid-two,#prime-fxbook-root .pfx-grid-three,#prime-fxbook-root .pfx-journal-grid,#prime-fxbook-root .pfx-analysis-layout,#prime-fxbook-root .pfx-sync-layout,#prime-fxbook-root .pfx-phase3-layout,#prime-fxbook-root .pfx-workspace-grid{display:grid!important;grid-template-columns:1fr!important;gap:10px!important;margin-top:10px!important}#prime-fxbook-root .pfx-card,#prime-fxbook-root .pfx-metric,#prime-fxbook-root .pfx-platform-connection,#prime-fxbook-root .pfx-sync-account{border-radius:16px!important;padding:13px!important;min-width:0!important;max-width:100%!important;overflow:hidden!important;background:linear-gradient(180deg,#ffffff0f,#ffffff07)!important}#prime-fxbook-root .pfx-card-head{display:grid!important;grid-template-columns:1fr!important;gap:9px!important;margin-bottom:12px!important}#prime-fxbook-root .pfx-card h2,#prime-fxbook-root .pfx-card h3{font-size:17px!important;line-height:1.18!important}#prime-fxbook-root .pfx-card p,#prime-fxbook-root .pfx-card span,#prime-fxbook-root .pfx-mini-list div,#prime-fxbook-root .pfx-analysis-list div{line-height:1.45!important}#prime-fxbook-root .pfx-metrics,#prime-fxbook-root .pfx-analysis-hero,#prime-fxbook-root .pfx-journal-overview,#prime-fxbook-root .pfx-sync-status-grid,#prime-fxbook-root .pfx-phase3-status,#prime-fxbook-root .pfx-platform-catalog,#prime-fxbook-root .pfx-platform-list,#prime-fxbook-root .pfx-phase3-blueprint,#prime-fxbook-root .pfx-sync-mini,#prime-fxbook-root .pfx-sync-account-stats{grid-template-columns:1fr!important;gap:10px!important}#prime-fxbook-root .pfx-table,#prime-fxbook-root .pfx-import-table,#prime-fxbook-root #pfx-import-preview,#prime-fxbook-root .pfx-card-large{max-width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}#prime-fxbook-root .pfx-row{min-width:780px!important}#prime-fxbook-root .pfx-equity{min-width:560px!important;height:190px!important}#prime-fxbook-root .pfx-empty,#prime-fxbook-root .pfx-empty-big{min-height:120px!important;padding:16px!important}#prime-fxbook-root .pfx-modal-wrap{position:fixed!important;inset:0!important;z-index:2147483200!important;place-items:end center!important;padding:8px!important}#prime-fxbook-root .pfx-modal{width:100%!important;max-width:100%!important;max-height:calc(100dvh - env(safe-area-inset-top,0px) - 16px)!important;border-radius:22px 22px 16px 16px!important;padding:16px 14px!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important}}@media(max-width:380px){#prime-fxbook-root .pfx-sidebar,#prime-fxbook-root .pfx-sidebar-pro{max-height:118px!important;padding-left:8px!important;padding-right:8px!important}#prime-fxbook-root .pfx-nav-item,#prime-fxbook-root .pfx-nav-pro .pfx-nav-item{height:32px!important;min-height:32px!important;padding:0 9px!important;font-size:10px!important}#prime-fxbook-root .pfx-appbar h1,#prime-fxbook-root .pfx-title-block h1{font-size:21px!important}}body.prime-fxbook-open{overflow:hidden!important}body.prime-fxbook-open .bottom-nav,body.prime-fxbook-open .gp-mobile-quick-rail,body.prime-fxbook-open .gp-mobile-action-dock,body.prime-fxbook-open .tools-panel,body.prime-fxbook-open .sidebar,body.prime-fxbook-open .info-panel{display:none!important;pointer-events:none!important}body.prime-fxbook-open .pfx-root{z-index:2147483600!important}@media(hover:none)and (pointer:coarse),(max-width:920px){body.prime-fxbook-open .pfx-root{position:fixed!important;inset:0!important;width:100vw!important;height:100dvh!important;min-height:100dvh!important;overflow:hidden!important;background:radial-gradient(circle at 80% 0%,rgba(0,132,255,.16),transparent 38%),#02050c!important;color:#f7fbff!important;-webkit-text-size-adjust:100%!important;overscroll-behavior:contain!important}body.prime-fxbook-open .pfx-shell,body.prime-fxbook-open .pfx-shell-app{display:flex!important;flex-direction:column!important;grid-template-columns:none!important;width:100%!important;height:100dvh!important;min-height:100dvh!important;overflow:hidden!important;background:transparent!important}body.prime-fxbook-open .pfx-sidebar,body.prime-fxbook-open .pfx-sidebar-pro{flex:0 0 auto!important;position:relative!important;top:auto!important;height:auto!important;min-height:0!important;max-height:none!important;display:grid!important;grid-template-columns:1fr!important;gap:8px!important;padding:calc(env(safe-area-inset-top,0px) + 8px) 10px 8px!important;overflow:visible!important;border-right:0!important;border-bottom:1px solid rgba(85,153,255,.18)!important;background:linear-gradient(180deg,#040a18fa,#030710f2)!important;box-shadow:0 12px 34px #00000052!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;z-index:20!important}body.prime-fxbook-open .pfx-side-brand,body.prime-fxbook-open .pfx-side-brand-pro{padding:0!important;border-bottom:0!important;display:flex!important;align-items:center!important;gap:10px!important;min-height:36px!important}body.prime-fxbook-open .pfx-logo-mark{width:32px!important;height:32px!important;min-width:32px!important;border-radius:10px!important;font-size:12px!important}body.prime-fxbook-open .pfx-side-brand strong,body.prime-fxbook-open .pfx-brand strong{font-size:13px!important;line-height:1.1!important}body.prime-fxbook-open .pfx-side-brand small,body.prime-fxbook-open .pfx-brand small{display:none!important}body.prime-fxbook-open .pfx-member-card{margin:0!important;padding:8px 10px!important;border-radius:14px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:8px!important;min-height:38px!important;background:linear-gradient(135deg,#0084ff2e,#00e0c614)!important}body.prime-fxbook-open .pfx-member-card small{display:none!important}body.prime-fxbook-open .pfx-member-card strong{font-size:12px!important;white-space:nowrap!important}body.prime-fxbook-open .pfx-member-card span{font-size:11px!important;white-space:nowrap!important;color:#7fc6ff!important}body.prime-fxbook-open .pfx-nav,body.prime-fxbook-open .pfx-nav-pro{display:flex!important;grid-template-columns:none!important;gap:7px!important;margin:0!important;padding:0 2px 3px!important;max-height:42px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important}body.prime-fxbook-open .pfx-nav::-webkit-scrollbar,body.prime-fxbook-open .pfx-nav-pro::-webkit-scrollbar{display:none!important}body.prime-fxbook-open .pfx-nav-section{display:flex!important;flex:0 0 auto!important;gap:7px!important;min-width:max-content!important}body.prime-fxbook-open .pfx-nav-section>span{display:none!important}body.prime-fxbook-open .pfx-nav-item,body.prime-fxbook-open .pfx-nav-pro .pfx-nav-item{flex:0 0 auto!important;width:auto!important;min-width:max-content!important;height:36px!important;min-height:36px!important;padding:0 10px!important;border-radius:999px!important;border:1px solid rgba(88,154,255,.18)!important;background:#ffffff0b!important;color:#edf7ffd1!important;font-size:11px!important;font-weight:900!important;line-height:1!important;white-space:nowrap!important}body.prime-fxbook-open .pfx-nav-item span{width:auto!important;margin-right:2px!important}body.prime-fxbook-open .pfx-nav-item.active,body.prime-fxbook-open .pfx-nav-pro .pfx-nav-item.active{border-color:#00e0ff61!important;background:linear-gradient(135deg,#0084ff4d,#00e0c629)!important;color:#fff!important;box-shadow:0 10px 24px #0084ff2e!important}body.prime-fxbook-open .pfx-home-link{display:none!important}body.prime-fxbook-open .pfx-main,body.prime-fxbook-open .pfx-main-pro{flex:1 1 auto!important;min-height:0!important;width:100%!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;padding-bottom:calc(env(safe-area-inset-bottom,0px) + 12px)!important;background:linear-gradient(180deg,#ffffff04,#fff0)!important}body.prime-fxbook-open .pfx-appbar,body.prime-fxbook-open .pfx-appbar-pro{position:sticky!important;top:0!important;z-index:12!important;min-height:0!important;height:auto!important;display:grid!important;grid-template-columns:1fr!important;gap:9px!important;padding:10px!important;border-bottom:1px solid rgba(255,255,255,.075)!important;background:#040812f5!important;-webkit-backdrop-filter:blur(16px)!important;backdrop-filter:blur(16px)!important}body.prime-fxbook-open .pfx-title-block{gap:4px!important}body.prime-fxbook-open .pfx-title-block .pfx-kicker{width:max-content!important;padding:5px 8px!important;font-size:9px!important}body.prime-fxbook-open .pfx-title-block h1,body.prime-fxbook-open .pfx-appbar h1{font-size:clamp(20px,5.4vw,24px)!important;line-height:1.05!important;letter-spacing:-.03em!important}body.prime-fxbook-open .pfx-title-block small,body.prime-fxbook-open .pfx-appbar small{font-size:11px!important;line-height:1.35!important}body.prime-fxbook-open .pfx-toolbar{width:100%!important;display:flex!important;flex-wrap:nowrap!important;align-items:center!important;gap:7px!important;margin:0!important;padding:0 0 3px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important;justify-content:flex-start!important}body.prime-fxbook-open .pfx-toolbar::-webkit-scrollbar{display:none!important}body.prime-fxbook-open .pfx-search{display:none!important}body.prime-fxbook-open .pfx-toolbar .pfx-btn,body.prime-fxbook-open .pfx-toolbar .pfx-chip{flex:0 0 auto!important;width:auto!important;min-width:max-content!important;height:34px!important;min-height:34px!important;padding:0 10px!important;border-radius:999px!important;font-size:11px!important;line-height:1!important}body.prime-fxbook-open .pfx-workspace-strip{display:flex!important;grid-template-columns:none!important;gap:8px!important;padding:10px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important}body.prime-fxbook-open .pfx-workspace-strip::-webkit-scrollbar{display:none!important}body.prime-fxbook-open .pfx-workspace-strip .pfx-metric,body.prime-fxbook-open .pfx-workspace-strip>*{flex:0 0 132px!important;min-width:132px!important;padding:10px!important;border-radius:14px!important}body.prime-fxbook-open .pfx-metric span{font-size:9px!important}body.prime-fxbook-open .pfx-metric strong{font-size:19px!important;margin-top:5px!important}body.prime-fxbook-open .pfx-content,body.prime-fxbook-open .pfx-content-pro{padding:10px 10px 18px!important}body.prime-fxbook-open .pfx-dashboard-grid,body.prime-fxbook-open .pfx-grid-two,body.prime-fxbook-open .pfx-grid-three,body.prime-fxbook-open .pfx-journal-grid,body.prime-fxbook-open .pfx-sync-layout,body.prime-fxbook-open .pfx-platform-list,body.prime-fxbook-open .pfx-platform-catalog,body.prime-fxbook-open .pfx-phase3-blueprint{display:grid!important;grid-template-columns:1fr!important;gap:10px!important}body.prime-fxbook-open .pfx-card{padding:12px!important;border-radius:16px!important;min-width:0!important;overflow:hidden!important;box-shadow:0 12px 32px #00000038!important}body.prime-fxbook-open .pfx-card-head{display:grid!important;grid-template-columns:1fr!important;gap:8px!important;margin-bottom:10px!important}body.prime-fxbook-open .pfx-card h2,body.prime-fxbook-open .pfx-card h3{font-size:16px!important;line-height:1.2!important}body.prime-fxbook-open .pfx-card p,body.prime-fxbook-open .pfx-card span{font-size:12px!important;line-height:1.45!important}body.prime-fxbook-open .pfx-card-large{min-height:auto!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}body.prime-fxbook-open .pfx-equity{min-width:560px!important;height:178px!important}body.prime-fxbook-open .pfx-row{min-width:780px!important}body.prime-fxbook-open .pfx-table{overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}body.prime-fxbook-open .pfx-mini-list div,body.prime-fxbook-open .pfx-focus-list div,body.prime-fxbook-open .pfx-analysis-list div{border-radius:13px!important;padding:11px!important}}@media(hover:none)and (pointer:coarse)and (orientation:landscape),(max-width:920px)and (orientation:landscape){body.prime-fxbook-open .pfx-sidebar,body.prime-fxbook-open .pfx-sidebar-pro{grid-template-columns:auto minmax(0,1fr) auto!important;align-items:center!important;gap:8px!important;padding:calc(env(safe-area-inset-top,0px) + 6px) 10px 6px!important}body.prime-fxbook-open .pfx-member-card{display:none!important}body.prime-fxbook-open .pfx-nav,body.prime-fxbook-open .pfx-nav-pro{max-height:38px!important}body.prime-fxbook-open .pfx-nav-item,body.prime-fxbook-open .pfx-nav-pro .pfx-nav-item{height:32px!important;min-height:32px!important}body.prime-fxbook-open .pfx-appbar,body.prime-fxbook-open .pfx-appbar-pro{grid-template-columns:minmax(170px,.55fr) minmax(0,1fr)!important;align-items:center!important;padding:7px 10px!important}body.prime-fxbook-open .pfx-title-block h1,body.prime-fxbook-open .pfx-appbar h1{font-size:19px!important}body.prime-fxbook-open .pfx-workspace-strip{padding:8px 10px!important}body.prime-fxbook-open .pfx-content,body.prime-fxbook-open .pfx-content-pro{padding:8px 10px 14px!important}}@media(max-width:920px),(hover:none)and (pointer:coarse){body.prime-fxbook-open #app,body.prime-fxbook-open .bottom-nav,body.prime-fxbook-open #bottom-nav,body.prime-fxbook-open .gp-mobile-quick-rail,body.prime-fxbook-open .gp-mobile-action-dock{display:none!important;visibility:hidden!important;pointer-events:none!important}body.prime-fxbook-open .pfx-root{overflow-y:auto!important;overflow-x:hidden!important;height:100dvh!important;min-height:100dvh!important;max-height:100dvh!important;-webkit-overflow-scrolling:touch!important}body.prime-fxbook-open .pfx-shell.pfx-shell-app{height:auto!important;min-height:100dvh!important;max-height:none!important;overflow:visible!important}body.prime-fxbook-open .pfx-main.pfx-main-pro{height:auto!important;min-height:0!important;max-height:none!important;overflow:visible!important;padding-bottom:calc(env(safe-area-inset-bottom,0px) + 20px)!important}body.prime-fxbook-open .pfx-appbar.pfx-appbar-pro{position:relative!important;top:auto!important}body.prime-fxbook-open .pfx-sidebar.pfx-sidebar-pro{position:relative!important;top:auto!important;max-height:none!important}body.prime-fxbook-open .pfx-workspace-strip{position:relative!important}}#prime-indicator-btn.btn--prime-indicator{position:relative;z-index:110;display:flex;align-items:center;gap:6px;height:36px;padding:0 13px;border-radius:12px;border:1px solid rgba(0,255,170,.34);color:#eaffff;background:linear-gradient(135deg,#008cff38,#00e0aa2e);box-shadow:0 6px 18px #0000002e,0 0 16px #00ffaa1a;font:900 12px Inter,sans-serif;cursor:pointer;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);white-space:nowrap}body.chart-theme-light #prime-indicator-btn.btn--prime-indicator{color:#0f172a;background:#fffffff5;border-color:#0f172a1f;box-shadow:0 8px 22px #0f172a14}.prime-indicator-modal,.prime-chart-explanation{position:fixed;inset:0;z-index:99950;display:flex;align-items:center;justify-content:center;padding:24px;background:#010612b8;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px)}.prime-indicator-window,.prime-chart-explanation__window{position:relative;width:min(1180px,calc(100vw - 36px));max-height:min(880px,calc(100vh - 42px));overflow:auto;padding:26px;border-radius:26px;border:1px solid rgba(0,224,255,.28);background:radial-gradient(circle at 8% 10%,rgba(0,140,255,.22),transparent 34%),radial-gradient(circle at 88% 8%,rgba(0,255,170,.16),transparent 34%),linear-gradient(145deg,#071125fa,#050812fa);color:#f7fdff;box-shadow:0 28px 80px #000000a3,0 0 42px #00e0ff1f;font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif}.prime-chart-explanation__window{width:min(900px,calc(100vw - 36px))}.prime-indicator-close{position:absolute;right:18px;top:18px;width:36px;height:36px;border-radius:13px;border:1px solid rgba(255,255,255,.18);background:#ffffff14;color:#fff;font-size:22px;line-height:1;cursor:pointer}.prime-indicator-header{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;padding-right:46px;margin-bottom:18px}.prime-indicator-kicker,.prime-card-label{display:inline-block;color:#74f7ff;font-size:11px;font-weight:900;letter-spacing:.14em;text-transform:uppercase}.prime-indicator-header h2,.prime-chart-explanation__window h2{margin:5px 0 6px;font-size:clamp(31px,4vw,48px);line-height:1;letter-spacing:-.05em}.prime-chart-explanation__window h2 em{color:#fff;font-style:normal}.prime-indicator-header p,.prime-indicator-card p,.prime-calendar-title p,.prime-indicator-component p,.prime-indicator-footer,.prime-chart-explanation__lead{margin:0;color:#e6f0ffbd;line-height:1.55;font-size:13px}.prime-indicator-header-badges{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}.prime-indicator-header-badges span{display:inline-flex;align-items:center;padding:8px 11px;border-radius:999px;border:1px solid rgba(0,224,255,.22);background:#00e0ff14;color:#eaffff;font-size:11px;font-weight:900}.prime-indicator-header-badges .prime-badge--verified,.prime-badge--verified{border-color:#00ffaa57!important;background:#00ffaa1f!important}.prime-control-panel{display:grid;grid-template-columns:repeat(5,minmax(120px,1fr)) minmax(360px,1.2fr);gap:10px;align-items:end;margin:18px 0;padding:13px;border-radius:18px;border:1px solid rgba(255,255,255,.1);background:#ffffff0b}.prime-control-panel label{display:grid;gap:6px;min-width:0}.prime-control-actions{display:flex;flex-wrap:wrap;gap:8px;align-items:end;justify-content:flex-start;min-width:0}.prime-control-actions>button{flex:1 1 112px;min-width:0}.prime-quick-scalp{border-color:#ff872759!important;background:linear-gradient(135deg,#ff800033,#ff3b301f)!important}.prime-quick-scalp.is-active{color:#fff3cf!important;border-color:#ffb040ad!important;background:linear-gradient(135deg,#ffa6005c,#ff540042)!important;box-shadow:0 0 0 1px #ffb5472e,0 0 18px #ff962042,inset 0 1px #ffffff29}.prime-control-panel label span{color:#e6f0ffad;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.06em}.prime-control-panel select,.prime-control-panel button,.prime-explanation-actions button{min-width:0;overflow:hidden;text-overflow:ellipsis;height:38px;border:1px solid rgba(0,224,255,.22);border-radius:12px;background:#040a18eb;color:#eaffff;padding:0 12px;font-weight:900;font-size:12px;outline:none}.prime-control-panel button,.prime-explanation-actions button{background:linear-gradient(135deg,#008cff59,#00e0aa3d);cursor:pointer;white-space:nowrap}.prime-mismatch,.prime-calendar-warning,.prime-risk-banner{margin:10px 0;padding:10px 12px;border-left:3px solid #ffcf4a;border-radius:12px;background:#ffcf4a1a;color:#ffe69a;font-size:12px;font-weight:800}.prime-mode-note,.prime-explain-mode{margin:8px 0 12px;padding:10px 12px;border-radius:13px;border:1px solid rgba(0,224,255,.18);background:#00e0ff12;color:#c9fbff;font-size:12px;font-weight:850;line-height:1.45}.prime-mode-note--warning{border-color:#ffcf4a57;background:#ffcf4a1a;color:#ffe69a}.prime-indicator-grid{display:grid;grid-template-columns:minmax(320px,1.05fr) minmax(250px,.72fr) minmax(250px,.72fr);gap:14px;margin-bottom:14px}.prime-indicator-card,.prime-components-section,.prime-calendar-section{border:1px solid rgba(255,255,255,.1);border-radius:20px;background:linear-gradient(180deg,#fff1,#ffffff09);box-shadow:inset 0 1px #ffffff0d}.prime-indicator-card{padding:18px}.prime-components-section,.prime-calendar-section{padding:18px;margin-top:14px}.prime-indicator-card h3,.prime-calendar-title h3{margin:6px 0;font-size:18px}.prime-indicator-card--plan{background:radial-gradient(circle at 14% 6%,rgba(255,179,71,.12),transparent 38%),linear-gradient(180deg,#fff1,#ffffff09)}.prime-trade-plan-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:10px 0}.prime-trade-plan-grid div{padding:10px;border-radius:13px;border:1px solid rgba(255,255,255,.09);background:#00000029;min-width:0}.prime-trade-plan-grid small{display:block;color:#e6f0ff94;font-size:10px;font-weight:950;text-transform:uppercase;letter-spacing:.08em}.prime-trade-plan-grid strong{display:block;margin-top:4px;color:#fff;font-size:15px;font-weight:1000;overflow-wrap:anywhere}.prime-indicator-card--plan p,.prime-explanation-plan p{margin-top:8px;color:#e6f0ffb3;font-size:12px;line-height:1.45}.prime-signal-line{display:flex;align-items:baseline;justify-content:space-between;gap:18px;margin:10px 0}.prime-signal-line strong{font-size:clamp(32px,4.4vw,54px);line-height:.95;letter-spacing:-.06em}.prime-signal-line em{color:#fff;font-size:clamp(28px,4vw,46px);font-style:normal;font-weight:1000}.prime-buy{color:#35ffb0!important;text-shadow:0 0 22px rgba(53,255,176,.18)}.prime-sell{color:#ff5f7e!important;text-shadow:0 0 22px rgba(255,95,126,.18)}.prime-wait{color:#ffd56a!important;text-shadow:0 0 22px rgba(255,213,106,.14)}.prime-risk-text{color:#ffe185!important}.prime-components-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;margin-top:12px}.prime-components-grid--modal{grid-template-columns:repeat(2,minmax(0,1fr))}.prime-indicator-component{padding:13px;border-radius:16px;border:1px solid rgba(255,255,255,.1);background:#03081494}.prime-indicator-component>div{display:flex;justify-content:space-between;gap:10px;margin-bottom:8px}.prime-indicator-component span,.prime-indicator-component strong{font-size:12px;font-weight:950}.prime-indicator-component small{display:block;margin-top:8px;color:#e6f0ffb8;font-size:11px;line-height:1.4}.prime-component--bullish{border-color:#35ffb03d}.prime-component--bearish{border-color:#ff5f7e3d}.prime-component--neutral{border-color:#ffd56a2e}.prime-calendar-title{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:12px}.prime-calendar-title h3{margin:0}.prime-calendar-table-wrap{overflow:auto;max-height:300px;border-radius:16px;border:1px solid rgba(255,255,255,.08)}.prime-calendar-table{width:100%;border-collapse:collapse;min-width:980px}.prime-calendar-table th,.prime-calendar-table td{padding:11px 10px;text-align:left;border-bottom:1px solid rgba(255,255,255,.07);vertical-align:top;font-size:12px}.prime-calendar-table th{position:sticky;top:0;z-index:1;background:#020814f5;color:#72f7ff;font-size:10px;letter-spacing:.08em;text-transform:uppercase}.prime-calendar-table td strong{display:block;color:#fff}.prime-calendar-table td span,.prime-calendar-table td small{display:block;color:#e6f0ffa3;margin-top:3px}.prime-empty-news{text-align:center!important;color:#e6f0ff9e!important;padding:30px!important}.prime-impact,.prime-status-chip{display:inline-flex!important;align-items:center;justify-content:center;padding:6px 9px;border-radius:999px;font-size:10px!important;font-weight:950;color:#fff!important}.prime-impact--high{background:#ff406847;border:1px solid rgba(255,64,104,.35)}.prime-impact--medium{background:#ff99003d;border:1px solid rgba(255,153,0,.34)}.prime-impact--low{background:#23c4ff2e;border:1px solid rgba(35,196,255,.24)}.prime-impact--holiday{background:#94a3b82e;border:1px solid rgba(148,163,184,.28);color:#dce7f6!important}.prime-status-chip--released{background:#35ffb038;color:#b9ffe7!important}.prime-status-chip--upcoming{background:#23c4ff38;color:#b9f4ff!important}.prime-status-chip--passed{background:#ffd56a2e;color:#ffe2a0!important}.prime-status-chip--holiday{background:#94a3b82e;color:#dce7f6!important}.prime-indicator-footer{display:flex;justify-content:space-between;gap:12px;margin-top:14px;font-size:11px;font-weight:800}.prime-chart-signal{position:absolute;top:21%;right:8%;z-index:90;display:grid;grid-template-columns:auto auto minmax(230px,390px) auto;gap:9px;align-items:center;padding:10px 12px;border-radius:20px;border:1px solid rgba(255,255,255,.15);background:#020814cc;box-shadow:0 18px 42px #00000057,0 0 26px #00e0ff1c;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);pointer-events:auto;cursor:grab;-webkit-user-select:none;user-select:none;touch-action:none;will-change:transform,left,top;transition:box-shadow .18s ease,border-color .18s ease,transform .12s ease-out}.prime-chart-signal--dragging{cursor:grabbing;transition:none!important;box-shadow:0 26px 64px #00000075,0 0 38px #00e0ff2e}.prime-chart-signal__arrow{width:56px;height:56px;display:grid;place-items:center;border-radius:50%;font-size:42px;line-height:1;font-weight:1000;font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif;transform:translateZ(0)}.prime-chart-signal--buy .prime-chart-signal__arrow{color:#00140c;background:radial-gradient(circle at 35% 28%,#c2ffdf 0,#35ffb0 48%,#00b36d);box-shadow:0 0 30px #35ffb06b,inset 0 2px 5px #ffffff59}.prime-chart-signal--sell .prime-chart-signal__arrow{color:#25030b;background:radial-gradient(circle at 35% 28%,#ffd1dc 0,#ff5f7e 48%,#c71546);box-shadow:0 0 30px #ff5f7e6b,inset 0 2px 5px #ffffff59}.prime-chart-signal--wait .prime-chart-signal__arrow{color:#231500;background:radial-gradient(circle at 35% 28%,#fff2bd 0,#ffd56a 52%,#d69500);box-shadow:0 0 30px #ffd56a57,inset 0 2px 5px #ffffff59;font-size:38px}.prime-chart-signal__star,.prime-chart-signal__close{width:34px;height:34px;border-radius:12px;border:1px solid rgba(255,255,255,.18);background:#ffffff14;color:#fff;font-weight:1000;cursor:pointer}.prime-chart-signal__star{color:#ffe271}.prime-chart-signal__label strong{display:block;color:#fff;font-size:13px;letter-spacing:.01em}.prime-chart-signal__label span{display:block;color:#e6f0ffa6;font-size:11px;margin-top:2px}.prime-chart-signal__drag-hint{margin-top:6px;color:#74f7ffad;font-size:10px;font-weight:850;letter-spacing:.02em}.prime-chart-signal__arrow,.prime-chart-signal__label{cursor:grab}.prime-chart-signal--dragging .prime-chart-signal__arrow,.prime-chart-signal--dragging .prime-chart-signal__label{cursor:grabbing}.prime-chart-signal__reasons{margin:7px 0 0;padding:0;list-style:none;display:grid;gap:4px}.prime-chart-signal__reasons li{position:relative;padding-left:12px;color:#eef7ffcc;font-size:10.5px;line-height:1.28;max-width:380px;overflow-wrap:anywhere}.prime-chart-signal__reasons li:before{content:"";position:absolute;left:0;top:.55em;width:5px;height:5px;border-radius:50%;background:currentColor;opacity:.8}.prime-chart-signal__plan{margin-top:7px;padding:6px 8px;border-radius:10px;background:#ffffff12;color:#ffe5a6;font-size:10.5px;font-weight:900;overflow-wrap:anywhere}.prime-explanation-plan{margin:12px 0 14px;padding:12px;border-radius:16px;border:1px solid rgba(255,213,106,.18);background:#ffd56a0f}.prime-chart-explanation__lead{margin:12px 0 14px;font-size:14px}.prime-explanation-actions{display:flex;gap:10px;justify-content:flex-end;margin-top:14px}body.chart-theme-light .prime-indicator-modal,body.chart-theme-light .prime-chart-explanation{background:#f8fafcb8}body.chart-theme-light .prime-indicator-window,body.chart-theme-light .prime-chart-explanation__window{background:#fff;color:#0f172a;border-color:#0f172a1a;box-shadow:0 28px 80px #0f172a2e}body.chart-theme-light .prime-indicator-header p,body.chart-theme-light .prime-indicator-card p,body.chart-theme-light .prime-calendar-title p,body.chart-theme-light .prime-indicator-component p,body.chart-theme-light .prime-indicator-footer,body.chart-theme-light .prime-chart-explanation__lead{color:#0f172aad}body.chart-theme-light .prime-indicator-card,body.chart-theme-light .prime-components-section,body.chart-theme-light .prime-calendar-section,body.chart-theme-light .prime-indicator-component{background:#f8fafc;border-color:#0f172a17}body.chart-theme-light .prime-control-panel,body.chart-theme-light .prime-mode-note,body.chart-theme-light .prime-explain-mode{background:#f8fafc;border-color:#0f172a17;color:#0f172a}body.chart-theme-light .prime-control-panel select,body.chart-theme-light .prime-control-panel button,body.chart-theme-light .prime-explanation-actions button{background:#fff;color:#0f172a;border-color:#0f172a24}body.chart-theme-light .prime-calendar-table th{background:#f8fafc}body.chart-theme-light .prime-calendar-table th,body.chart-theme-light .prime-calendar-table td{border-bottom-color:#0f172a14}body.chart-theme-light .prime-calendar-table td strong{color:#0f172a}body.chart-theme-light .prime-chart-signal{background:#ffffffdb;border-color:#0f172a1f}body.chart-theme-light .prime-chart-signal__label strong{color:#0f172a}body.chart-theme-light .prime-chart-signal__label span{color:#0f172a9e}body.chart-theme-light .prime-chart-signal__star,body.chart-theme-light .prime-chart-signal__close{color:#0f172a;border-color:#0f172a1f;background:#0f172a0d}@media(max-width:1100px){.prime-control-panel{grid-template-columns:repeat(2,minmax(0,1fr))}.prime-indicator-grid,.prime-components-grid{grid-template-columns:1fr}.prime-calendar-title,.prime-indicator-header,.prime-indicator-footer{flex-direction:column;align-items:flex-start}.prime-chart-signal{right:12px;top:18%;grid-template-columns:auto auto}.prime-chart-signal__label{grid-column:1 / -1}}.prime-indicator-card p,.prime-indicator-component p,.prime-indicator-component small,.prime-calendar-table td,.prime-mode-note,.prime-calendar-warning,.prime-mismatch{overflow-wrap:anywhere;word-break:break-word}@media(max-width:1360px){.prime-control-panel{grid-template-columns:repeat(2,minmax(0,1fr))}.prime-control-actions{grid-column:1 / -1}}body.chart-theme-light .prime-trade-plan-grid div,body.chart-theme-light .prime-explanation-plan{background:#0f172a0a;border-color:#0f172a14}body.chart-theme-light .prime-trade-plan-grid small{color:#0f172a8f}body.chart-theme-light .prime-trade-plan-grid strong{color:#0f172a}body.chart-theme-light .prime-chart-signal__reasons li{color:#0f172ab8}body.chart-theme-light .prime-chart-signal__plan{background:#0f172a0f;color:#8a5a00}@media(max-width:1220px){.prime-chart-signal{grid-template-columns:auto auto minmax(190px,1fr) auto;right:10px;max-width:min(92vw,540px)}.prime-chart-signal__reasons li:nth-child(n+3){display:none}}@media(max-width:900px){.prime-indicator-modal,.prime-chart-explanation{padding:10px!important;align-items:flex-end!important}.prime-indicator-window,.prime-chart-explanation__window{width:100%!important;max-width:100%!important;max-height:92dvh!important;overflow:auto!important;border-radius:22px!important;padding:16px!important}.prime-indicator-header,.prime-calendar-title,.prime-indicator-footer,.prime-chart-explanation__head{display:grid!important;grid-template-columns:1fr!important;gap:12px!important;align-items:start!important}.prime-indicator-header h2,.prime-chart-explanation__head h2{font-size:clamp(24px,7vw,34px)!important;line-height:1.1!important;padding-right:40px!important}.prime-indicator-close,.prime-chart-explanation__close{position:absolute!important;right:14px!important;top:14px!important;width:40px!important;height:40px!important;z-index:5!important}.prime-control-panel{grid-template-columns:1fr!important;gap:10px!important}.prime-control-panel select,.prime-control-panel button,.prime-explanation-actions button{width:100%!important;min-height:46px!important;font-size:16px!important}.prime-indicator-grid,.prime-components-grid,.prime-trade-plan-grid,.prime-explanation-plan{grid-template-columns:1fr!important}.prime-indicator-card,.prime-components-section,.prime-calendar-section,.prime-indicator-component,.prime-explanation-plan{border-radius:16px!important;padding:14px!important}.prime-calendar-table-wrapper,.prime-calendar-table{overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}.prime-calendar-table table,table.prime-calendar-table{min-width:620px!important}.prime-chart-signal{inset:auto 10px 12px!important;max-width:none!important;width:auto!important;grid-template-columns:auto minmax(0,1fr) auto!important;border-radius:18px!important;padding:12px!important;z-index:9000!important}.prime-chart-signal__label{grid-column:2 / 3!important;min-width:0!important}.prime-chart-signal__label strong,.prime-chart-signal__label span{overflow-wrap:anywhere!important}.prime-chart-signal__reasons,.prime-chart-signal__plan{grid-column:1 / -1!important}.prime-chart-signal__reasons li:nth-child(n+3){display:none!important}.prime-chart-signal__star{width:40px!important;height:40px!important}.prime-chart-signal__close{width:36px!important;height:36px!important}}@media(max-width:520px){.prime-indicator-window,.prime-chart-explanation__window{max-height:94dvh!important;padding:14px!important}.prime-indicator-header h2,.prime-chart-explanation__head h2{font-size:24px!important}.prime-indicator-card p,.prime-indicator-component p,.prime-calendar-warning,.prime-mode-note{font-size:13px!important;line-height:1.55!important}.prime-chart-signal{grid-template-columns:minmax(0,1fr) auto!important}.prime-chart-signal__star{display:none!important}.prime-chart-signal__label{grid-column:1 / 2!important}}body.chart-theme-light .prime-indicator-header h2,body.chart-theme-light .prime-chart-explanation__window h2,body.chart-theme-light .prime-indicator-card h3,body.chart-theme-light .prime-calendar-title h3,body.chart-theme-light .prime-indicator-component strong,body.chart-theme-light .prime-indicator-component span,body.chart-theme-light .prime-control-panel select,body.chart-theme-light .prime-control-panel button,body.chart-theme-light .prime-explanation-actions button,body.chart-theme-light .prime-indicator-close,body.chart-theme-light .prime-chart-explanation__close{color:#0f172a!important}body.chart-theme-light .prime-indicator-kicker,body.chart-theme-light .prime-card-label,body.chart-theme-light .prime-control-panel label span,body.chart-theme-light .prime-calendar-table th,body.chart-theme-light .prime-chart-signal__source{color:#0ea5c6!important}body.chart-theme-light .prime-indicator-header-badges span{color:#0f172a!important;background:#eef7ff!important;border-color:#0ea5c638!important}body.chart-theme-light .prime-indicator-close,body.chart-theme-light .prime-chart-explanation__close{background:#0f172a0a!important;border-color:#0f172a1f!important}body.chart-theme-light .prime-signal-line em{color:#94a3b8!important}body.chart-theme-light .prime-indicator-card small,body.chart-theme-light .prime-indicator-card>small,body.chart-theme-light .prime-indicator-card--plan p,body.chart-theme-light .prime-explanation-plan p,body.chart-theme-light .prime-indicator-component small,body.chart-theme-light .prime-calendar-table td span,body.chart-theme-light .prime-calendar-table td small,body.chart-theme-light .prime-empty-news,body.chart-theme-light .prime-mode-note,body.chart-theme-light .prime-calendar-warning,body.chart-theme-light .prime-mismatch,body.chart-theme-light .prime-risk-banner,body.chart-theme-light .prime-indicator-footer,body.chart-theme-light .prime-chart-signal__label span,body.chart-theme-light .prime-chart-signal__reasons li{color:#0f172ab8!important}body.chart-theme-light .prime-calendar-warning,body.chart-theme-light .prime-mismatch,body.chart-theme-light .prime-risk-banner,body.chart-theme-light .prime-explanation-plan{background:#ffd56a1f!important;border-color:#ffd56a47!important}body.chart-theme-light .prime-trade-plan-grid div{background:#0f172a09!important;border-color:#0f172a14!important}body.chart-theme-light .prime-trade-plan-grid small{color:#0f172a99!important}body.chart-theme-light .prime-trade-plan-grid strong,body.chart-theme-light .prime-calendar-table td strong,body.chart-theme-light .prime-chart-explanation__window h2 em{color:#0f172a!important}.prime-chart-signal__status{display:inline-flex;align-items:center;width:fit-content;margin-top:6px;padding:5px 8px;border-radius:999px;font-size:10px;font-weight:950;letter-spacing:.02em;border:1px solid rgba(255,255,255,.14);background:#ffffff13;color:#e9f3ffe0}.prime-chart-signal__status--open{border-color:#35c6ff42;background:#35c6ff1a;color:#bdeeff}.prime-chart-signal__status--profit,.prime-chart-signal--profit .prime-chart-signal__status{border-color:#35ffb04d;background:#35ffb01f;color:#b7ffe4}.prime-chart-signal__status--loss,.prime-chart-signal--loss .prime-chart-signal__status{border-color:#ff5f7e52;background:#ff5f7e21;color:#ffd3dd}.prime-chart-signal__status--review,.prime-chart-signal--review .prime-chart-signal__status{border-color:#ffd56a52;background:#ffd56a1f;color:#ffe7ad}.prime-chart-signal--profit{border-color:#35ffb047;box-shadow:0 18px 42px #00000057,0 0 34px #35ffb024}.prime-chart-signal--loss{border-color:#ff5f7e4d;box-shadow:0 18px 42px #00000057,0 0 34px #ff5f7e24}


/* GUARDEER PRIME: active membership / renewal UI fix */
.gp-subscription-card--active{
  border-color:rgba(0,224,255,.48)!important;
  background:linear-gradient(180deg,rgba(0,224,255,.16),rgba(12,18,35,.92))!important;
  box-shadow:0 0 0 1px rgba(0,224,255,.08),0 18px 42px rgba(0,0,0,.28)!important;
}
.gp-subscription-card--renew{
  border-color:rgba(255,196,0,.32)!important;
}
.gp-plan-period-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.gp-plan-period-grid>div{
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:10px 12px;
  background:rgba(4,8,20,.34);
}
.gp-plan-period-grid small{
  display:block;
  color:rgba(235,242,255,.60);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:6px;
}
.gp-plan-period-grid strong{
  display:block;
  color:#fff;
  font-size:13px;
  line-height:1.25;
  word-break:break-word;
}
.gp-renew-note{
  display:block;
  margin-top:12px;
  color:rgba(235,242,255,.72);
  font-style:normal;
  font-size:12px;
  line-height:1.45;
}
@media (max-width:720px){
  .gp-plan-period-grid{grid-template-columns:1fr;}
}


/* GUARDEER Prime FXBook live-sync UI fix — 2026-05-27
   Fixes hidden journal modals, restores desktop scroll, and surfaces MT4/MT5 EA bridge details. */
.pfx-modal-wrap,
#pfx-sync-modal,
#pfx-platform-modal,
#pfx-webhook-modal {
  z-index: 2147483646 !important;
}
.pfx-mt-bridge-box {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.pfx-mt-bridge-box p {
  margin-top: 8px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}
.pfx-mt-bridge-box code {
  user-select: all !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}
@media (min-width: 921px) {
  body.prime-fxbook-open #prime-fxbook-root.pfx-root {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    overscroll-behavior: contain !important;
  }
  body.prime-fxbook-open #prime-fxbook-root .pfx-shell-app {
    display: grid !important;
    grid-template-columns: 292px minmax(0, 1fr) !important;
    height: auto !important;
    min-height: 100dvh !important;
    overflow: visible !important;
  }
  body.prime-fxbook-open #prime-fxbook-root .pfx-sidebar-pro {
    position: sticky !important;
    top: 0 !important;
    height: 100dvh !important;
    overflow-y: auto !important;
  }
  body.prime-fxbook-open #prime-fxbook-root .pfx-main-pro,
  body.prime-fxbook-open #prime-fxbook-root .pfx-content-pro,
  body.prime-fxbook-open #prime-fxbook-root .pfx-dashboard-grid {
    overflow: visible !important;
  }
  body.prime-fxbook-open #prime-fxbook-root .pfx-content-pro {
    padding-bottom: 56px !important;
  }
}
@media (max-width: 920px) {
  .pfx-modal-wrap {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 12px !important;
  }
  .pfx-modal-wrap .pfx-modal {
    max-height: calc(100dvh - 24px) !important;
  }
}
