* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none
}

:root {
    --bg: #04040e;
    --s1: #0d0d20;
    --s2: #141428;
    --s3: #1a1a32;
    --b1: #252548;
    --b2: #2e2e55;
    --acc: #ff4500;
    --up: #00e676;
    --dn: #ff1744;
    --blue: #00b4ff;
    --gold: #ffb300;
    --purple: #a855f7;
    --txt: #e8eaff;
    --txt2: #a8aac8;
    --txt3: #5a5a80;
    --mono: 'Share Tech Mono', 'Courier New', Courier, monospace;
    --head: 'Oxanium', 'Segoe UI', 'Arial', sans-serif;
    --body: 'Rajdhani', 'Segoe UI', 'Arial', sans-serif;
    --r: 14px;
}

html,
body {
    height: 100%;
    overflow: hidden;
    background: var(--bg);
    font-family: var(--body);
    color: var(--txt);
    font-size: 14px
}

#bgw {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none
}

#cvs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 200, 100, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 200, 100, 0.04) 1px, transparent 1px);
    background-size: 40px 40px
}

.bg-scanl {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.3), rgba(0, 200, 100, 0.2), transparent);
    animation: bgsl linear infinite
}

@keyframes bgsl {
    0% {
        top: -2px;
        opacity: 0
    }

    6% {
        opacity: 1
    }

    94% {
        opacity: .6
    }

    100% {
        top: 102%;
        opacity: 0
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(65px);
    animation: orbA ease-in-out infinite
}

.o1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 200, 80, .10), transparent 70%);
    top: -90px;
    right: -70px;
    animation-duration: 9s
}

.o2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 230, 118, .08), transparent 70%);
    bottom: -70px;
    left: -50px;
    animation-duration: 11s;
    animation-delay: 2s
}

.o3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 180, 80, .07), transparent 70%);
    top: 38%;
    left: 18%;
    animation-duration: 13s;
    animation-delay: 4s
}

.o4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(50, 230, 100, .07), transparent 70%);
    top: 62%;
    right: 8%;
    animation-duration: 10s;
    animation-delay: 1s
}

@keyframes orbA {

    0%,
    100% {
        opacity: .5;
        transform: scale(1) translate(0, 0)
    }

    33% {
        opacity: .9;
        transform: scale(1.12) translate(8px, -8px)
    }

    66% {
        opacity: .55;
        transform: scale(.9) translate(-6px, 6px)
    }
}

.bg-cndl {
    position: absolute;
    bottom: 12%;
    left: 4%;
    right: 4%;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    opacity: .04;
    pointer-events: none
}

.bcc {
    width: 5px;
    border-radius: 1px;
    background: var(--up)
}

.bcc.d {
    background: var(--dn)
}

.screen {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 24px;
    background: transparent
}

.screen::-webkit-scrollbar {
    width: 2px
}

.screen::-webkit-scrollbar-thumb {
    background: var(--b2);
    border-radius: 2px
}

.screen.active {
    display: flex;
    animation: scIn .35s cubic-bezier(.16, 1, .3, 1)
}

@keyframes scIn {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.card {
    background: rgba(20, 20, 48, .82);
    border: 1px solid var(--b1);
    border-radius: var(--r);
    padding: 12px 12px 16px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px)
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .05), transparent)
}

.login-wrap {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 14px 0
}

.logo-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px solid var(--acc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
    animation: rp 2.4s ease-in-out infinite
}

.logo-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 69, 0, .2);
    animation: rp 2.4s ease-in-out infinite .4s
}

.logo-ring::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 69, 0, .07);
    animation: rp 2.4s ease-in-out infinite .8s
}

@keyframes rp {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, .3)
    }

    50% {
        box-shadow: 0 0 0 14px rgba(255, 69, 0, 0)
    }
}

.logo-i {
    font-family: var(--head);
    font-size: 22px;
    font-weight: 800;
    color: var(--acc)
}

.glow-brand {
    font-family: var(--head);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    animation: bglow 3s ease-in-out infinite
}

@keyframes bglow {

    0%,
    100% {
        text-shadow: 0 0 8px rgba(255, 69, 0, .4), 0 0 25px rgba(255, 69, 0, .12)
    }

    50% {
        text-shadow: 0 0 18px rgba(255, 69, 0, .85), 0 0 55px rgba(255, 69, 0, .28)
    }
}

.brand-s {
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--txt3);
    font-family: var(--mono);
    text-align: center;
    margin-top: 3px;
    animation: bglow 3s ease-in-out infinite 1.5s
}

.inp {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--b2);
    background: rgba(15, 15, 31, .92);
    color: var(--txt);
    font-size: 15px;
    font-family: var(--body);
    transition: border .2s, box-shadow .2s
}

.inp:focus {
    border-color: var(--acc);
    box-shadow: 0 0 0 3px rgba(255, 69, 0, .1)
}

.btn-login {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--acc);
    color: #fff;
    font-family: var(--head);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all .2s
}

.btn-login::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
    animation: bsh 2.5s linear infinite
}

@keyframes bsh {
    from {
        left: -100%
    }

    to {
        left: 200%
    }
}

.btn-login:active {
    transform: scale(.97)
}

.tg-note {
    text-align: center;
    font-size: 12px;
    color: var(--txt3);
    line-height: 2
}

.tg-note a {
    color: var(--acc);
    text-decoration: none;
    font-weight: 700
}

.ai-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    justify-content: center
}

.aib {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 7px;
    font-family: var(--mono);
    font-size: clamp(9px, 2.5vw, 11px);
    border: 1px solid
}

.aib .d {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    animation: dp 1.8s ease-in-out infinite
}

@keyframes dp {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .2;
        transform: scale(.5)
    }
}

.a-cg {
    color: #10a37f;
    border-color: rgba(16, 163, 127, .3);
    background: rgba(16, 163, 127, .07)
}

.a-gk {
    color: #c0c0d8;
    border-color: rgba(192, 192, 216, .18);
    background: rgba(192, 192, 216, .04)
}

.a-cl {
    color: #e08b30;
    border-color: rgba(224, 139, 48, .3);
    background: rgba(224, 139, 48, .07)
}

.a-gm {
    color: #4285f4;
    border-color: rgba(66, 133, 244, .3);
    background: rgba(66, 133, 244, .07)
}

.a-ll {
    color: var(--purple);
    border-color: rgba(168, 85, 247, .3);
    background: rgba(168, 85, 247, .07)
}

.a-bm {
    color: var(--gold);
    border-color: rgba(255, 179, 0, .3);
    background: rgba(255, 179, 0, .07)
}

.slbl {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 1px 0 5px
}

.sline {
    flex: 1;
    height: 1px;
    background: var(--b1)
}

.stxt {
    font-size: 9px;
    color: var(--txt3);
    letter-spacing: 2px;
    font-family: var(--mono);
    white-space: nowrap;
    text-transform: uppercase
}

.sess-row {
    display: flex;
    gap: 5px;
    flex-wrap: wrap
}

.sess {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 9px;
    border-radius: 7px;
    background: rgba(22, 22, 50, .80);
    border: 1px solid var(--b1);
    font-size: 10px;
    color: #6868a0;
    font-family: var(--mono);
    transition: all .4s;
    white-space: nowrap
}

.sess.live {
    border-color: rgba(0, 180, 255, .45);
    color: var(--blue);
    background: rgba(0, 180, 255, .06)
}

.sess .sd {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--b2);
    flex-shrink: 0;
    transition: all .4s
}

.sess.live .sd {
    background: var(--blue);
    animation: dp 1.2s infinite
}

.pairs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px
}

.pi {
    background: rgba(22, 22, 50, .85);
    border: 1px solid var(--b1);
    padding: 10px 6px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all .18s;
    touch-action: manipulation
}

.pi:active {
    transform: scale(.93);
    border-color: rgba(0, 180, 255, .4)
}

.pi-n {
    font-size: 9px;
    font-weight: 700;
    color: var(--txt);
    font-family: var(--body);
    letter-spacing: .2px
}

.pi-c {
    font-size: clamp(9px, 2.5vw, 11px);
    font-family: var(--mono);
    margin-top: 3px;
    font-weight: 600
}

.hero-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--acc), var(--blue), var(--up), transparent);
    background-size: 300% 100%;
    animation: hsh 4s linear infinite
}

@keyframes hsh {
    from {
        background-position: 300% 0
    }

    to {
        background-position: -300% 0
    }
}

.hero-sub {
    font-size: 10px;
    color: var(--txt3);
    font-family: var(--mono);
    letter-spacing: 1px;
    margin: 4px 0 10px
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px
}

.hs {
    background: var(--s2);
    border-radius: 9px;
    padding: 12px 5px 14px;
    text-align: center;
    border: 1px solid var(--b1)
}

.hs-v {
    font-family: var(--head);
    font-size: clamp(20px, 5.5vw, 28px);
    font-weight: 800
}

.hs-l {
    font-size: clamp(9px, 2.5vw, 11px);
    color: var(--txt3);
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-top: 6px
}

.home-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 4px 0 2px
}

.home-brand {
    font-family: var(--head);
    font-size: clamp(17px, 5.5vw, 24px);
    font-weight: 800;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(255, 69, 0, .3)
}

.home-clock {
    text-align: right;
    flex-shrink: 0
}

.clock-t {
    font-family: var(--mono);
    font-size: clamp(11px, 3vw, 14px);
    color: var(--blue);
    white-space: nowrap
}

.clock-d {
    font-size: clamp(8px, 2.5vw, 9px);
    color: var(--txt3);
    font-family: var(--mono);
    white-space: nowrap
}

.irow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--b1)
}

.irow:last-child {
    border: none;
    padding-bottom: 0
}

.ilbl {
    font-size: clamp(12px, 3.5vw, 14px);
    color: #b0b4d0
}

.ival {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px
}

.lpd {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: dp 1.5s infinite
}

.nav2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px
}

.bn {
    padding: 11px;
    border-radius: 11px;
    font-family: var(--head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid;
    transition: all .18s;
    text-align: center
}

.bn:active {
    transform: scale(.95)
}

.bn-g {
    background: var(--s2);
    color: var(--txt2);
    border-color: var(--b2)
}

.bn-b {
    background: rgba(0, 180, 255, .07);
    color: var(--blue);
    border-color: rgba(0, 180, 255, .28)
}

.stbar {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: clamp(10px, 3vw, 12px);
    color: var(--txt3);
    padding: 9px 12px;
    background: rgba(16, 16, 40, .65);
    border: 1px solid var(--b1);
    border-radius: 10px
}

.t-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px
}

.back-btn {
    color: var(--txt2);
    font-family: var(--mono);
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
    padding: 4px 0
}

.back-btn:active {
    color: var(--acc)
}

.pair-ttl {
    font-family: var(--head);
    font-size: 20px;
    font-weight: 800;
    color: var(--acc)
}

.sync-bdg {
    font-family: var(--mono);
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(0, 180, 255, .12);
    border: 1px solid rgba(0, 180, 255, .35);
    color: #4dd8ff;
    display: flex;
    align-items: center;
    gap: 4px
}

.sync-bdg .d {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--up);
    animation: dp 1.5s infinite
}

.tf-row {
    display: flex;
    gap: 5px
}

.tf {
    flex: 1;
    padding: 8px 4px;
    background: var(--s2);
    border: 1px solid var(--b1);
    border-radius: 9px;
    text-align: center;
    font-family: var(--head);
    font-size: 14px;
    font-weight: 700;
    color: var(--txt2);
    cursor: pointer;
    transition: all .18s
}

.tf.on {
    border-color: var(--acc);
    background: rgba(255, 69, 0, .09);
    color: var(--acc);
    box-shadow: 0 0 12px rgba(255, 69, 0, .3);
    text-shadow: 0 0 8px rgba(255, 69, 0, .5)
}

.s3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px
}

.sb {
    background: rgba(16, 16, 44, .78);
    border: 1px solid var(--b1);
    border-radius: 10px;
    padding: 7px 4px;
    text-align: center
}

.sb-l {
    font-size: 7px;
    color: var(--txt3);
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px
}

.sb-v {
    font-family: var(--head);
    font-size: 17px;
    font-weight: 800;
    text-shadow: 0 0 8px currentColor
}

.strat {
    background: rgba(16, 16, 40, .78);
    border-left: 3px solid var(--acc);
    border-radius: 0 10px 10px 0;
    padding: 7px 10px;
    font-size: 10.5px;
    color: var(--txt2);
    line-height: 1.55
}

.strat strong {
    color: var(--acc);
    font-size: 10.5px
}

.bias-panel {
    background: rgba(16, 16, 44, .78);
    border: 1px solid var(--b1);
    border-radius: 12px;
    padding: 9px 10px
}

.bias-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px
}

.bias-v {
    font-family: var(--head);
    font-size: 18px;
    font-weight: 800;
    text-shadow: 0 0 10px currentColor
}

.gw {
    width: 50px;
    height: 25px;
    position: relative;
    overflow: hidden
}

.gbg {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid var(--b1);
    clip-path: inset(0 0 50% 0)
}

.garc {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid var(--up);
    clip-path: inset(0 0 50% 0);
    transform-origin: 50% 50%;
    transition: transform 1s ease
}

.gnd {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 22px;
    background: #fff;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 1s ease;
    border-radius: 1px
}

.mtrack {
    height: 4px;
    background: var(--s2);
    border-radius: 3px;
    overflow: hidden;
    margin: 4px 0
}

.mfill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease, background 1s ease
}

.mlbls {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    color: var(--txt3);
    font-family: var(--mono)
}

.histo {
    display: flex;
    gap: 2px;
    height: 26px;
    align-items: flex-end;
    overflow: hidden
}

.hb {
    flex: 1;
    border-radius: 2px 2px 0 0;
    min-width: 3px;
    transition: height .55s ease
}

.ai-bar {
    background: rgba(9, 9, 26, .82);
    border: 1px solid var(--b1);
    border-radius: 10px;
    padding: 7px 10px
}

.ai-bar-t {
    font-size: 7px;
    color: var(--txt3);
    font-family: var(--mono);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-align: center
}

.sig-box {
    border-radius: 13px;
    display: none;
    position: relative;
    overflow: hidden;
    width: 100%;
    flex-shrink: 0;
    margin: 4px 0;
    min-height: 80px
}

.sig-box.scanning {
    background: rgba(255, 69, 0, .05);
    border: 1.5px solid rgba(255, 69, 0, .32)
}

.sig-box.call {
    background: rgba(0, 230, 118, .05);
    border: 2px solid var(--up);
    box-shadow: 0 0 16px rgba(0, 230, 118, .12)
}

.sig-box.put {
    background: rgba(255, 23, 68, .05);
    border: 2px solid var(--dn);
    box-shadow: 0 0 16px rgba(255, 23, 68, .12)
}

.sig-box.scanning,
.sig-box.call,
.sig-box.put {
    padding: 0
}

.sig-box.call .sig-main-row {
    background: rgba(0, 230, 118, .12);
    border: 1.5px solid rgba(0, 230, 118, .4)
}

.sig-box.put .sig-main-row {
    background: rgba(255, 23, 68, .12);
    border: 1.5px solid rgba(255, 23, 68, .4)
}

.scl {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--acc), rgba(255, 180, 0, .7), transparent);
    animation: scla .9s linear infinite;
    top: 0
}

@keyframes scla {
    from {
        top: -2px
    }

    to {
        top: 110%
    }
}

.scan-in {
    padding: 12px 10px;
    text-align: center
}

.scan-lbl {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--acc);
    letter-spacing: 2px;
    animation: dp .75s infinite
}

.scan-bars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    height: 24px;
    align-items: flex-end
}

.sbar {
    width: 4px;
    border-radius: 2px 2px 0 0;
    background: var(--acc);
    animation: sba 1.3s ease-in-out infinite
}

.sbar:nth-child(1) {
    animation-delay: 0s
}

.sbar:nth-child(2) {
    animation-delay: .13s
}

.sbar:nth-child(3) {
    animation-delay: .26s
}

.sbar:nth-child(4) {
    animation-delay: .39s
}

.sbar:nth-child(5) {
    animation-delay: .52s
}

.sbar:nth-child(6) {
    animation-delay: .39s
}

.sbar:nth-child(7) {
    animation-delay: .26s
}

@keyframes sba {

    0%,
    100% {
        height: 4px;
        opacity: .3
    }

    50% {
        height: 22px;
        opacity: 1
    }
}

.scan-sub {
    font-size: 9px;
    color: var(--txt3);
    font-family: var(--mono);
    margin-top: 6px;
    letter-spacing: 1px
}

.scan-prog {
    height: 3px;
    background: var(--b1);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden
}

.scan-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--acc), var(--blue));
    border-radius: 2px;
    width: 0;
    transition: width linear
}

.sig-res {
    padding: 10px;
    display: none
}

.sig-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: rgba(0, 0, 0, .25);
    border-radius: 10px;
    padding: 10px 12px
}

.sig-dir {
    font-family: var(--head);
    font-size: clamp(26px, 7vw, 44px);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1
}

.sig-dir.call {
    color: var(--up);
    text-shadow: 0 0 20px rgba(0, 230, 118, .8), 0 0 45px rgba(0, 230, 118, .3)
}

.sig-dir.put {
    color: var(--dn);
    text-shadow: 0 0 20px rgba(255, 23, 68, .8), 0 0 45px rgba(255, 23, 68, .3)
}

.exp-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0
}

.exp-lbl {
    font-family: var(--mono);
    font-size: 7px;
    color: var(--txt3);
    letter-spacing: 2px;
    text-transform: uppercase
}

.exp-timer {
    font-family: var(--head);
    font-size: clamp(22px, 6vw, 34px);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
    transition: color .3s;
    text-align: right;
    text-shadow: 0 0 12px currentColor
}

.exp-tf-lbl {
    font-family: var(--mono);
    font-size: 7px;
    color: var(--txt3);
    letter-spacing: .5px;
    text-align: right
}

.pre-sig {
    display: none;
    background: rgba(0, 180, 255, .05);
    border: 1.5px solid rgba(0, 180, 255, .3);
    border-radius: 12px;
    padding: 10px 12px;
    margin: 4px 0
}

.pre-sig-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px
}

.pre-sig-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0
}

.pre-sig-title {
    font-family: var(--head);
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.2
}

.pre-sig-sub {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--txt3);
    margin-top: 2px;
    letter-spacing: .5px
}

.pre-sig-timer {
    font-family: var(--head);
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1.5px;
    flex-shrink: 0
}

.pre-sig-bar-w {
    height: 3px;
    background: var(--b1);
    border-radius: 2px;
    overflow: hidden
}

.pre-sig-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    border-radius: 2px;
    transition: width 1s linear
}

.gen-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 12px;
    background: var(--acc);
    color: #fff;
    font-family: var(--head);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    overflow: hidden
}

.gen-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .13), transparent);
    animation: bsh 2.2s linear infinite
}

.gen-btn:disabled {
    opacity: .55;
    cursor: not-allowed
}

.gen-btn:not(:disabled):active {
    transform: scale(.97)
}

.chart-frame {
    border: 1px solid var(--b2);
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0
}

.chart-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: rgba(18, 18, 44, .88);
    border-bottom: 1px solid var(--b1)
}

.chart-pair {
    font-family: var(--head);
    font-size: 12px;
    font-weight: 700;
    color: var(--acc)
}

.chart-live {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--up);
    display: flex;
    align-items: center;
    gap: 4px
}

.chart-live .d {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--up);
    animation: dp 1.5s infinite
}

#tv-chart {
    width: 100%;
    height: 180px;
    min-height: 180px;
    display: block
}

.srow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--b1)
}

.srow:last-child {
    border: none;
    padding-bottom: 0
}

.slabel {
    font-size: 13px;
    font-weight: 600;
    color: var(--txt)
}

.sdesc {
    font-size: 10px;
    color: var(--txt3);
    margin-top: 2px;
    line-height: 1.4
}

.tog-w {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer
}

.tog-track {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: var(--b2);
    transition: .3s
}

.tog-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: .3s;
    pointer-events: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .5)
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 0 8px
}

.tb-title {
    font-family: var(--head);
    font-size: 16px;
    font-weight: 700
}

.otc-pg {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-bottom: 2px
}

#csm-home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px
}

.slbl .stxt {
    text-shadow: 0 0 8px currentColor
}

@media(min-width:480px) {
    .pairs-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    #csm-home {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .otc-pg {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
}

@media(min-width:600px) {
    .screen {
        padding: 14px 22px 30px;
        gap: 10px
    }

    .pairs-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    #tv-chart {
        height: 260px
    }
}

@media(min-width:768px) {
    .screen {
        padding: 14px 28px 30px
    }

    .pairs-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr))
    }

    #tv-chart {
        height: 300px
    }

    #csm-home {
        grid-template-columns: repeat(7, minmax(0, 1fr))
    }

    .otc-pg {
        grid-template-columns: repeat(6, minmax(0, 1fr))
    }
}

@media(min-width:1024px) {
    .screen {
        padding: 16px 40px 32px;
        max-width: 920px;
        margin: 0 auto
    }

    .pairs-grid {
        grid-template-columns: repeat(9, minmax(0, 1fr))
    }

    #tv-chart {
        height: 360px
    }
}

@media(orientation:landscape) and (max-height:500px) {
    .screen {
        gap: 4px;
        padding: 4px 10px 12px
    }

    #tv-chart {
        height: 130px !important
    }

    .histo,
    .scan-bars {
        display: none !important
    }

    .strat {
        display: none
    }
}