:root {
    --bg: #06070a;
    --surface: #0c0e13;
    --surface2: #12141a;
    --stroke: #1c1f28;
    --stroke2: #2a2e3a;
    --text: #f2f4f8;
    --muted: #9aa0ad;
    --dim: #6b7280;
    --brand: #2f8fa3;
    --brand2: #24707f
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

html, body {
    margin: 0
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    background: var(--bg);
    color: var(--text);
    padding: 0 0 84px;
    min-height: 100vh;
    font-size: 15px
}

.top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(15,17,23,.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--stroke)
}

    .top .name {
        font-size: 18px;
        font-weight: 800;
        letter-spacing: -0.02em;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .top .name span {
            color: var(--muted);
            font-weight: 500
        }

.search {
    padding: 10px 12px 2px
}

    .search input {
        width: 100%;
        background: rgba(23,26,34,.55);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid var(--stroke);
        border-radius: 0;
        padding: 10px 13px;
        color: var(--text);
        font-size: 15px;
        font-family: inherit;
        outline: none
    }

        .search input:focus {
            border-color: var(--stroke2)
        }

.cats {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap
}

    .cats::-webkit-scrollbar {
        display: none
    }

.chip {
    flex: 0 0 auto;
    background: var(--surface);
    border: 1px solid var(--stroke);
    color: var(--muted);
    padding: 7px 13px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .15s
}

    .chip.on {
        background: rgba(0,0,0,.55);
        border-color: rgba(255,255,255,.30);
        color: #fff
    }

.wrap {
    padding: 6px 12px 0
}

.count-row {
    color: var(--dim);
    font-size: 12.5px;
    margin: 2px 2px 10px
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.p {
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
    cursor: pointer;
    transition: .12s;
    position: relative;
    min-height: 96px;
    overflow: hidden;
}

    .p:active {
        transform: scale(.98);
        border-color: var(--stroke2)
    }

    .p.incart {
        border-color: var(--brand)
    }

    .p .cat {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .4px;
        text-transform: uppercase;
        color: var(--dim);
        padding: 0 10px;
    }

    .p .ttl {
        font-size: 13.5px;
        font-weight: 700;
        line-height: 1.2;
        padding: 0 10px;
    }

    .p .meta {
        font-size: 11.5px;
        color: var(--muted);
        padding: 0 10px;
    }

    .p .foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        padding: 0 10px 10px 10px;
        width: 100%;
    }

    .p .price {
        font-size: 15px;
        font-weight: 800
    }

    .p .add {
        width: 28px;
        height: 28px;
        border-radius: 0;
        background: var(--surface2);
        border: 1px solid var(--stroke2);
        color: var(--text);
        font-size: 18px;
        line-height: 1;
        display: grid;
        place-items: center;
        flex: none
    }

    .p.incart .add {
        background: var(--brand);
        border-color: var(--brand);
        color: #fff
    }

    .p .qty {
        position: absolute;
        top: 9px;
        right: 9px;
        background: var(--brand);
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        min-width: 18px;
        height: 18px;
        border-radius: 0;
        display: grid;
        place-items: center;
        padding: 0 5px
    }

    .p .pimg {
        width: 100%;
        aspect-ratio: 2 / 1;
        background: rgba(0,0,0,.25);
        border-bottom: 1px solid var(--stroke);
        display: grid;
        place-items: center;
        overflow: hidden;
        margin: 0;
    }

        .p .pimg img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

.topup-head {
    margin: 2px 2px 12px
}

    .topup-head h2 {
        margin: 0 0 3px;
        font-size: 17px
    }

    .topup-head p {
        margin: 0;
        color: var(--muted);
        font-size: 12.5px
    }

.topup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px
}

.tu {
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 0;
    padding: 15px 12px;
    text-align: center;
    cursor: pointer;
    transition: .12s
}

    .tu:active {
        transform: scale(.98)
    }

    .tu .val {
        font-size: 19px;
        font-weight: 800
    }

    .tu .cur {
        font-size: 11.5px;
        color: var(--muted);
        margin-top: 2px
    }

    .tu .price {
        margin-top: 11px;
        background: var(--brand);
        color: #fff;
        border-radius: 0;
        padding: 8px 0;
        font-weight: 800;
        font-size: 14px
    }

.empty {
    text-align: center;
    color: var(--dim);
    padding: 44px 20px;
    font-size: 14px
}

.bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: var(--brand);
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(47,127,224,.4);
    transform: translateY(120px);
    transition: transform .28s cubic-bezier(.2,.8,.2,1);
    z-index: 40
}

    .bar.show {
        transform: translateY(0)
    }

    .bar .sum {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 15px;
        cursor: pointer
    }

        .bar .sum .c {
            opacity: .85;
            font-size: 13px;
            font-weight: 600
        }

        .bar .sum .t {
            font-size: 16px;
            font-weight: 800
        }

    .bar .go {
        background: rgba(0,0,0,.16);
        padding: 0 17px;
        display: flex;
        align-items: center;
        font-weight: 800;
        cursor: pointer
    }

.sheet {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none
}

    .sheet.open {
        display: block
    }

    .sheet .ov {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.55)
    }

    .sheet .panel {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        border-top: 1px solid var(--stroke);
        border-radius: 0;
        max-height: 82vh;
        display: flex;
        flex-direction: column
    }

    .sheet .ph {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 18px;
        border-bottom: 1px solid var(--stroke)
    }

        .sheet .ph h3 {
            margin: 0;
            font-size: 17px
        }

        .sheet .ph .x {
            background: var(--surface2);
            border: 1px solid var(--stroke);
            color: var(--muted);
            width: 30px;
            height: 30px;
            border-radius: 0;
            font-size: 18px;
            line-height: 1;
            cursor: pointer;
            font-family: inherit
        }

    .sheet .items {
        overflow-y: auto;
        padding: 8px 14px
    }

.ci {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 4px;
    border-bottom: 1px solid var(--stroke)
}

    .ci:last-child {
        border-bottom: 0
    }

    .ci .info {
        flex: 1;
        min-width: 0
    }

        .ci .info .n {
            font-weight: 600;
            font-size: 14px
        }

        .ci .info .c {
            font-size: 12px;
            color: var(--dim)
        }

    .ci .st {
        display: flex;
        align-items: center;
        gap: 9px
    }

        .ci .st button {
            width: 27px;
            height: 27px;
            border-radius: 0;
            background: var(--surface2);
            border: 1px solid var(--stroke2);
            color: var(--text);
            font-size: 16px;
            line-height: 1;
            cursor: pointer
        }

        .ci .st .q {
            min-width: 18px;
            text-align: center;
            font-weight: 700;
            font-size: 14px
        }

    .ci .pr {
        width: 56px;
        text-align: right;
        font-weight: 700;
        font-size: 14px
    }

.sheet .pf {
    padding: 14px 18px;
    border-top: 1px solid var(--stroke)
}

    .sheet .pf .line {
        display: flex;
        justify-content: space-between;
        font-size: 15px;
        margin-bottom: 12px
    }

        .sheet .pf .line b {
            font-size: 18px
        }

    .sheet .pf .pay {
        width: 100%;
        background: var(--brand);
        color: #fff;
        border: 0;
        padding: 14px;
        border-radius: 0;
        font-size: 16px;
        font-weight: 800;
        cursor: pointer;
        font-family: inherit
    }

.toast {
    position: fixed;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%) translateY(14px);
    background: var(--surface2);
    color: var(--text);
    padding: 10px 18px;
    border-radius: 0;
    font-weight: 600;
    font-size: 13.5px;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    z-index: 70;
    border: 1px solid var(--stroke2)
}

    .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }

.hidden {
    display: none
}

#upgrade {
    padding: 10px 12px 0
}

.up-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px
}

.up-slot {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 0;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: .13s
}

    .up-slot:active {
        transform: scale(.98)
    }

    .up-slot.filled {
        border-color: var(--brand)
    }

    .up-slot .ph {
        color: var(--dim);
        font-size: 12px;
        line-height: 1.3
    }

    .up-slot .sk-cat {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .4px;
        text-transform: uppercase;
        color: var(--dim)
    }

    .up-slot .sk-name {
        font-size: 13px;
        font-weight: 700;
        line-height: 1.2
    }

    .up-slot .sk-price {
        font-size: 15px;
        font-weight: 800;
        color: #ffcf5c
    }

.up-dial {
    flex: 0 0 128px;
    width: 128px;
    height: 128px;
    position: relative;
    display: grid;
    place-items: center
}

    .up-dial svg {
        transform: rotate(-90deg);
        width: 128px;
        height: 128px
    }

    .up-dial .track {
        fill: none;
        stroke: var(--stroke);
        stroke-width: 10
    }

    .up-dial .prog {
        fill: none;
        stroke: url(#upGrad);
        stroke-width: 10;
        stroke-linecap: round;
        transition: stroke-dashoffset .5s ease
    }

    .up-dial .needle {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        flex-direction: column;
        pointer-events: none
    }

    .up-dial .pct {
        font-size: 26px;
        font-weight: 900;
        line-height: 1
    }

    .up-dial .lbl {
        font-size: 10px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 2px
    }

    .up-dial.spinning svg {
        animation: none
    }

    .up-dial.win .prog {
        stroke: #3ddc84
    }

    .up-dial.lose .prog {
        stroke: #ff5468
    }

.up-go {
    width: 100%;
    background: #2f8fa3;
    color: #eaf6f9;
    border: 0;
    padding: 14px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    margin-bottom: 8px
}

    .up-go:disabled {
        opacity: .45;
        cursor: default
    }

.up-mult {
    text-align: center;
    color: var(--muted);
    font-size: 12.5px;
    margin-bottom: 14px
}

.up-section {
    margin-bottom: 14px
}

    .up-section h4 {
        margin: 0 0 8px 2px;
        font-size: 13px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .5px;
        font-weight: 700
    }

.up-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none
}

    .up-row::-webkit-scrollbar {
        display: none
    }

.up-mini {
    flex: 0 0 116px;
    width: 116px;
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 0;
    padding: 10px;
    cursor: pointer;
    transition: .12s
}

    .up-mini:active {
        transform: scale(.97)
    }

    .up-mini.sel {
        border-color: var(--brand)
    }

    .up-mini .c {
        font-size: 9.5px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--dim);
        letter-spacing: .4px
    }

    .up-mini .n {
        font-size: 12.5px;
        font-weight: 700;
        line-height: 1.2;
        margin: 2px 0 6px
    }

    .up-mini .p {
        font-size: 14px;
        font-weight: 800;
        color: #ffcf5c
    }

.up-targets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.up-result {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    padding: 10px;
    border-radius: 0;
    margin-bottom: 12px
}

    .up-result.win {
        background: rgba(61,220,132,.15);
        color: #3ddc84;
        border: 1px solid rgba(61,220,132,.35)
    }

    .up-result.lose {
        background: rgba(255,84,104,.12);
        color: #ff5468;
        border: 1px solid rgba(255,84,104,.3)
    }

.up-dial svg {
    transform: none
}

.up-dial .track {
    fill: none;
    stroke: var(--stroke);
    stroke-width: 10
}

.up-dial .prog {
    fill: none;
    stroke: url(#upGrad);
    stroke-width: 10;
    stroke-linecap: round;
    transform-box: view-box;
    transform-origin: 64px 64px;
    transform: rotate(-90deg);
    transition: stroke-dashoffset .4s ease
}

.up-switch {
    display: flex;
    gap: 8px;
    margin-bottom: 12px
}

    .up-switch button {
        flex: 1;
        background: var(--surface);
        border: 1px solid var(--stroke);
        color: var(--muted);
        font-weight: 700;
        font-size: 14px;
        padding: 11px 0;
        border-radius: 0;
        cursor: pointer;
        font-family: inherit;
        transition: .15s
    }

        .up-switch button.on {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff
        }

.up-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-height: 52vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 12px
}

    .up-list::-webkit-scrollbar {
        width: 0
    }

.up-card {
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 0;
    padding: 14px 13px;
    cursor: pointer;
    transition: .12s;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 104px
}

    .up-card:active {
        transform: scale(.98)
    }

    .up-card.sel {
        border-color: var(--brand);
        box-shadow: 0 0 0 1px var(--brand) inset
    }

    .up-card .c {
        font-size: 10.5px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--dim);
        letter-spacing: .4px
    }

    .up-card .n {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.25
    }

    .up-card .p {
        font-size: 16px;
        font-weight: 800;
        color: #ffcf5c;
        margin-top: auto
    }

.up-dial .hand {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 50px;
    margin-left: -2px;
    margin-top: -50px;
    transform-origin: 50% 100%;
    transform: rotate(0deg);
    will-change: transform;
    pointer-events: none;
    z-index: 3
}

    .up-dial .hand i {
        display: block;
        width: 4px;
        height: 100%;
        background: #ffcf5c;
        border-radius: 0;
        box-shadow: 0 0 8px rgba(255,207,92,.6)
    }

    .up-dial .hand::after {
        content: "";
        position: absolute;
        top: -3px;
        left: 50%;
        width: 9px;
        height: 9px;
        margin-left: -4.5px;
        border-radius: 0;
        background: #ffcf5c
    }

.up-dial .hub {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border-radius: 0;
    background: var(--surface2);
    border: 2px solid var(--stroke2);
    z-index: 4
}

.up-dial .needle {
    z-index: 2
}

.idfields {
    padding: 4px 14px 0
}

.idf {
    margin-bottom: 10px
}

    .idf label {
        display: block;
        font-size: 12.5px;
        color: var(--muted);
        font-weight: 600;
        margin-bottom: 5px
    }

        .idf label .hint {
            color: var(--dim);
            font-weight: 500
        }

    .idf input {
        width: 100%;
        background: var(--surface);
        border: 1px solid var(--stroke);
        border-radius: 0;
        padding: 11px 13px;
        color: var(--text);
        font-size: 15px;
        font-family: inherit;
        outline: none
    }

        .idf input:focus {
            border-color: var(--brand)
        }

.p .qbtns {
    display: flex;
    align-items: center;
    gap: 8px
}

    .p .qbtns .qbtn {
        width: 28px;
        height: 28px;
        border-radius: 0;
        background: transparent;
        border: 1px solid var(--stroke2);
        color: var(--text);
        font-size: 18px;
        line-height: 1;
        display: grid;
        place-items: center;
        cursor: pointer;
        flex: none;
        font-family: inherit
    }

        .p .qbtns .qbtn:active {
            transform: scale(.92)
        }

    .p .qbtns .qn {
        min-width: 16px;
        text-align: center;
        font-weight: 800;
        font-size: 15px
    }

.tu {
    position: relative
}

    .tu.sale {
        border-color: rgba(255,207,74,.5)
    }

.tu-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ffcf4a;
    color: #2a2000;
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 0;
    letter-spacing: .3px
}

.tu .price .old {
    color: var(--dim);
    text-decoration: line-through;
    font-weight: 600;
    font-size: 13px
}

.agree {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 18px 2px 12px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.45;
    cursor: pointer;
    user-select: none;
    padding: 13px 14px;
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 0;
    transition: .15s
}

    .agree:active {
        background: var(--surface2)
    }

    .agree input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0
    }

    .agree .box {
        flex: none;
        width: 22px;
        height: 22px;
        margin-top: 1px;
        border-radius: 0;
        background: var(--surface2);
        border: 2px solid var(--stroke2);
        display: grid;
        place-items: center;
        transition: .15s
    }

        .agree .box svg {
            width: 13px;
            height: 13px;
            opacity: 0;
            transform: scale(.6);
            transition: .15s
        }

    .agree input:checked + .box {
        background: #0a0c10;
        border-color: var(--stroke2)
    }

        .agree input:checked + .box svg {
            opacity: 1;
            transform: scale(1)
        }

    .agree .txt {
        color: var(--muted)
    }

    .agree a {
        color: #cdd2dc;
        text-decoration: underline;
        font-weight: 600
    }

        .agree a:active {
            opacity: .7
        }

    .agree.shake {
        animation: shakeX .4s
    }

@keyframes shakeX {
    0%,100% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(-6px)
    }

    75% {
        transform: translateX(6px)
    }
}

.offer-link {
    display: block;
    text-align: center;
    margin: 4px 2px 20px;
    font-size: 13px;
    color: var(--muted);
    text-decoration: underline
}

    .offer-link:active {
        opacity: .7
    }

.top .name, .topup-head h2, .sheet .ph h3 {
    letter-spacing: -0.02em;
}

.p .price, .tu .val {
    letter-spacing: -0.02em;
    font-feature-settings: "tnum" 1;
}

    .p .price .cur {
        font-size: 11px;
        font-weight: 600;
        color: var(--muted);
        letter-spacing: 0
    }

.p .foot {
    width: 100%
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url("images/background.png") center center / cover no-repeat;
    opacity: .60;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(6,7,10,.12) 0%, rgba(6,7,10,.45) 55%, rgba(6,7,10,.78) 100%);
    pointer-events: none;
}

body {
    background: var(--bg);
}

body {
    position: relative;
}

.dragon-bg {
    position: fixed;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    width: min(560px,120vw);
    aspect-ratio: 1/1;
    background: url("images/logo.png") center top / contain no-repeat;
    opacity: .55;
    z-index: -1;
    pointer-events: none;
}

.p {
    background: rgba(8,10,14,.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: none;
    transition: transform .1s ease, border-color .12s ease;
}

    .p:active {
        transform: scale(.98)
    }

    .p.incart {
        border-color: var(--brand);
        box-shadow: 0 0 0 1px var(--brand) inset, 0 6px 18px rgba(79,195,217,.2)
    }

    .p .price {
        display: flex;
        align-items: baseline;
        gap: 4px;
        font-size: 16px;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #fff
    }

        .p .price .cur {
            font-size: 11px;
            font-weight: 600;
            color: var(--muted);
            letter-spacing: 0
        }

    .p .cat {
        color: #7f8698
    }

    .p .ttl {
        text-align: left
    }

    .p .add {
        background: transparent;
        border: 1px solid var(--stroke2);
        color: var(--text);
        box-shadow: none;
        font-weight: 800
    }

        .p .add:active {
            transform: scale(.9)
        }

    .p .qbtns .qbtn {
        width: 28px;
        height: 28px;
        border-radius: 0;
        background: transparent;
        border: 1px solid var(--stroke2);
        color: var(--text);
        font-size: 18px;
        line-height: 1;
        display: grid;
        place-items: center;
        cursor: pointer;
        flex: none;
        font-family: inherit
    }

.chip {
    transition: .15s;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    background: rgba(23,26,34,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px)
}

    .chip.on {
        box-shadow: none
    }

.search input {
    transition: .15s;
    box-shadow: 0 2px 8px rgba(0,0,0,.2)
}

    .search input:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px rgba(79,195,217,.2)
    }

.bar {
    background: #2f8fa3;
    color: #eaf6f9;
    box-shadow: none
}

.tu {
    background: rgba(8,10,14,.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    transition: transform .12s
}

    .tu:active {
        transform: scale(.97)
    }

    .tu .price {
        margin-top: 11px;
        background: #e6b23e;
        color: #2a2200;
        border-radius: 0;
        padding: 8px 0;
        font-weight: 800;
        font-size: 14px
    }

.sheet .pf .pay {
    background: #2f8fa3;
    color: #eaf6f9;
    box-shadow: none
}

.ci .pr .cur, .sheet .pf .line b .cur {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0
}

.bar .sum .t {
    font-size: 15px
}
