@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
:root {
    --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-1: 0 18px 50px rgba(0, 0, 0, 0.45);
    --shadow-2: 0 10px 26px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.16);
    --ring: 0 0 0 3px rgba(255, 197, 54, 0.28);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: #e9e9f3;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

.page {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: calc(16px + env(safe-area-inset-top)) 14px calc(16px + env(safe-area-inset-bottom));
}

.theme-dark.page {
    background: radial-gradient(900px 600px at 20% 10%, rgba(255, 197, 54, 0.26), rgba(0, 0, 0, 0) 55%), radial-gradient(700px 520px at 90% 20%, rgba(0, 233, 168, 0.12), rgba(0, 0, 0, 0) 55%), radial-gradient(900px 650px at 70% 100%, rgba(255, 51, 153, 0.16), rgba(0, 0, 0, 0) 55%), #04040a;
}

.theme-green.page {
    background: linear-gradient(90deg, #2f8f3b 0%, #2f8f3b 26%, #eef8f1 26%, #eef8f1 74%, #2f8f3b 74%, #2f8f3b 100%);
    color: #0a1420;
    place-items: start center;
}

.theme-purple.page {
    background: radial-gradient(900px 600px at 20% 10%, rgba(255, 197, 54, 0.3), rgba(0, 0, 0, 0) 56%), radial-gradient(700px 520px at 90% 20%, rgba(255, 51, 153, 0.22), rgba(0, 0, 0, 0) 56%), radial-gradient(900px 650px at 70% 100%, rgba(0, 233, 168, 0.12), rgba(0, 0, 0, 0) 58%), radial-gradient(1200px 900px at 50% 50%, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0) 55%), #05050e;
    color: #e9e9f3;
    place-items: start center;
}

.app {
    width: min(420px, 100%);
    position: relative;
    height: calc(100svh - 32px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
}

.app::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.app-main {
    flex: 1 1 auto;
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.app-layout-auth .app-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0 12px;
}

.app-top-pill {
    display: none;
}

.pill-dot {
    display: none;
}

.card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2);
}

.card.soft {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.1);
}

.card.pad {
    padding: 14px;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    position: relative;
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-1);
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.back-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 1100;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.online-pill {
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 233, 168, 0.12);
    border: 1px solid rgba(0, 233, 168, 0.22);
    color: rgba(210, 255, 243, 0.95);
    font-weight: 1100;
    font-size: 11px;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0, 233, 168, 1);
    box-shadow: 0 0 0 4px rgba(0, 233, 168, 0.18);
    animation: online-blink 1.1s ease-in-out infinite;
}

.online-num {
    letter-spacing: 0.2px;
}

@keyframes online-blink {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 4px rgba(0, 233, 168, 0.18), 0 0 10px rgba(0, 233, 168, 0.35);
    }
    50% {
        opacity: 0.55;
        box-shadow: 0 0 0 10px rgba(0, 233, 168, 0.08), 0 0 18px rgba(0, 233, 168, 0.22);
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0) 55%), linear-gradient(135deg, rgba(255, 197, 54, 0.95), rgba(0, 233, 168, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.brand-logo svg {
    width: 22px;
    height: 22px;
}

.brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.auth-logo-big .brand-img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.brand-meta {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-title {
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-subtitle {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.menu-btn:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

.home-topstack {
    position: relative;
    margin: 0 14px 10px;
    display: grid;
    gap: 10px;
}

.home-download-bar {
    position: relative;
    margin: 0;
    padding: 14px 14px;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.98), rgba(255, 156, 0, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(10, 20, 32, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transform: translateY(0);
    opacity: 1;
    transition: opacity 200ms ease, transform 200ms ease, margin 200ms ease;
}

.home-download-bar[data-open="false"] {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    height: 0;
    padding: 0;
    border-width: 0;
    margin: 0;
    overflow: hidden;
}

.hdb-left {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.hdb-title {
    font-weight: 1100;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hdb-sub {
    font-size: 12px;
    font-weight: 900;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hdb-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hdb-btn {
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: 1100;
    font-size: 12px;
    letter-spacing: 0.6px;
    background: rgba(10, 20, 32, 0.12);
    border: 1px solid rgba(10, 20, 32, 0.14);
    color: rgba(10, 20, 32, 0.9);
}

.home-download-bar[data-open="true"] .hdb-btn {
    animation: hdb-blink 1s ease-in-out infinite;
}

.hdb-close {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(10, 20, 32, 0.14);
    background: rgba(10, 20, 32, 0.12);
    color: rgba(10, 20, 32, 0.9);
    cursor: pointer;
}

@keyframes hdb-blink {
    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.06);
        filter: brightness(1.15);
    }
}

.home-verified-banner {
    position: relative;
    margin: 0;
}

.hv-pill {
    height: 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    background: rgba(0, 233, 168, 0.12);
    border: 1px solid rgba(0, 233, 168, 0.2);
    color: rgba(210, 255, 243, 0.95);
    font-weight: 1100;
    font-size: 11px;
    letter-spacing: 0.45px;
}

.hv-ico svg {
    width: 14px;
    height: 14px;
}

.theme-green .hv-pill {
    background: rgba(46, 165, 79, 0.12);
    border-color: rgba(46, 165, 79, 0.18);
    color: rgba(10, 20, 32, 0.8);
}

.theme-green .hv-ico svg {
    color: rgba(10, 20, 32, 0.75);
}

.download-toast {
    margin: 10px 14px 0;
    padding: 10px 10px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transform: translateY(0);
    opacity: 1;
    transition: opacity 200ms ease, transform 200ms ease, margin 200ms ease;
}

.download-toast[data-open="false"] {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    margin-top: 0;
}

.dt-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.dt-ico {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 233, 168, 0.14);
    border: 1px solid rgba(0, 233, 168, 0.22);
    color: rgba(210, 255, 243, 0.95);
    font-weight: 1100;
}

.dt-text {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.dt-title {
    font-weight: 1000;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dt-sub {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.68);
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dt-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dt-btn {
    height: 32px;
    padding: 0 12px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: 1100;
    font-size: 12px;
    background: linear-gradient(135deg, rgba(255, 197, 54, 0.95), rgba(0, 233, 168, 0.65));
    color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dt-close {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(233, 233, 243, 0.9);
    cursor: pointer;
}

.theme-green .download-toast {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(10, 20, 32, 0.1);
}

.theme-green .dt-title {
    color: rgba(10, 20, 32, 0.9);
}

.theme-green .dt-sub {
    color: rgba(10, 20, 32, 0.62);
}

.theme-green .dt-close {
    background: rgba(10, 20, 32, 0.06);
    border-color: rgba(10, 20, 32, 0.1);
    color: rgba(10, 20, 32, 0.85);
}

.metric-card {
    margin-top: 12px;
    padding: 14px;
    display: grid;
    gap: 10px;
}

.metric-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-label {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.7);
}

.metric-value {
    font-weight: 800;
    font-size: 22px;
}

.metric-badge {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 197, 54, 0.16);
    border: 1px solid rgba(255, 197, 54, 0.26);
    color: rgba(10, 20, 32, 0.9);
}

.wallet-card {
    margin-top: 12px;
    background: linear-gradient(135deg, rgba(255, 197, 54, 0.92), rgba(255, 156, 0, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 18px 14px;
    text-align: center;
    box-shadow: var(--shadow-1);
}

.wallet-hero {
    position: relative;
    padding: 26px 20px;
    min-height: 130px;
    overflow: hidden;
    text-align: left;
}

.wallet-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.wallet-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95);
    flex: 0 0 auto;
}

.wallet-ico svg {
    width: 22px;
    height: 22px;
}

.wallet-label {
    font-weight: 950;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
}

.wallet-balance {
    margin-top: 12px;
    font-size: 58px;
    font-weight: 1200;
    letter-spacing: -1.4px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: rgba(255, 255, 255, 0.98);
}

.wallet-rupee {
    font-weight: 1400;
    letter-spacing: -1.2px;
    font-size: 62px;
    line-height: 1;
}

.wallet-num {
    font-weight: 1800;
    font-size: 62px;
    line-height: 1;
}

.wallet-cta {
    margin-top: 16px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: 1200;
    color: rgba(255, 255, 255, 0.98);
    background: rgba(10, 20, 32, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.wallet-tx-title {
    font-weight: 1200;
    font-size: 18px;
    letter-spacing: -0.2px;
}

.wallet-tx-sub {
    margin-top: 2px;
    color: rgba(233, 233, 243, 0.62);
    font-size: 12px;
    font-weight: 800;
}

.wallet-tx .list {
    margin-top: 12px;
}

.wallet-tx .list-item {
    padding: 14px 14px;
    border-radius: 16px;
}

.wallet-tx .li-name {
    font-size: 15px;
    font-weight: 1000;
}

.wallet-tx .li-meta {
    font-size: 12px;
}

.wallet-tx .li-amt {
    font-size: 16px;
    font-weight: 1200;
}

.wallet-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.98), rgba(255, 156, 0, 0.92));
    z-index: 0;
}

.wallet-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(160px 160px at 75% 40%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 60%), radial-gradient(220px 220px at 95% 70%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 62%), radial-gradient(200px 200px at 10% 100%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 60%);
    z-index: 0;
}

.wallet-hero>* {
    position: relative;
    z-index: 1;
}

.section {
    margin-top: 12px;
}

.section-title {
    font-weight: 800;
    font-size: 12px;
    color: rgba(233, 233, 243, 0.72);
    margin: 0 0 8px;
    letter-spacing: 0.2px;
}

.operator-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.operator {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 8px 8px;
    display: grid;
    justify-items: center;
    gap: 7px;
    cursor: pointer;
}

.operator[data-active="true"] {
    border-color: rgba(0, 233, 168, 0.35);
    box-shadow: 0 0 0 3px rgba(0, 233, 168, 0.12);
}

.op-logo {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.09);
}

.op-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.op-name {
    font-size: 11px;
    font-weight: 700;
    color: rgba(233, 233, 243, 0.82);
}

.sell-card {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.sell-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.sell-title {
    font-weight: 900;
    font-size: 13px;
    margin: 0;
}

.sell-subtitle {
    margin-top: 3px;
    font-size: 12px;
    color: rgba(233, 233, 243, 0.64);
}

.progress {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress>div {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.95), rgba(0, 233, 168, 0.75));
}

.progress-green {
    background: rgba(10, 20, 32, 0.05);
    border-color: rgba(10, 20, 32, 0.12);
}

.progress-green>div {
    background: rgba(46, 165, 79, 1);
}

.theme-purple .progress-green {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.theme-purple .progress-green>div {
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.98), rgba(255, 156, 0, 0.92));
}

.sell-speed-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.speed-value {
    font-weight: 900;
    font-size: 14px;
    color: rgba(255, 228, 160, 0.95);
}

.speed-status {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.62);
}

.slider {
    width: 100%;
    accent-color: #ffc536;
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mini {
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini .k {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.7);
}

.mini .v {
    margin-top: 6px;
    font-weight: 900;
    color: #eafff9;
}

.cta-row {
    display: grid;
    gap: 10px;
}

.btn {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 13px 14px;
    font-weight: 900;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.98), rgba(255, 156, 0, 0.92));
    box-shadow: 0 18px 32px rgba(255, 197, 54, 0.18);
}

.btn-primary[data-selling="true"] {
    background: linear-gradient(90deg, rgba(0, 233, 168, 0.85), rgba(255, 197, 54, 0.95));
}

.btn-secondary {
    color: rgba(233, 233, 243, 0.86);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

.list {
    display: grid;
    gap: 10px;
}

.list-scroll {
    max-height: 280px;
    overflow: hidden;
    padding-right: 2px;
}

.list-auto {
    scrollbar-width: none;
}

.list-auto::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.list-item {
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.li-left {
    display: grid;
    gap: 2px;
}

.li-name {
    font-weight: 800;
    font-size: 13px;
}

.li-meta {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.62);
}

.li-right {
    text-align: right;
    display: grid;
    gap: 3px;
}

.li-amt {
    font-weight: 900;
}

.li-tag {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 999px;
    width: fit-content;
    justify-self: end;
    background: rgba(0, 233, 168, 0.12);
    border: 1px solid rgba(0, 233, 168, 0.22);
    color: #baffef;
}

.bottom-nav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 40;
    margin-top: 0;
    padding: 8px 6px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    width: min(420px, calc(100vw - 28px));
    background: rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.support-fab {
    position: fixed;
    right: 18px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(90deg, rgba(0, 233, 168, 0.95), rgba(46, 165, 79, 0.95));
    color: rgba(255, 255, 255, 0.98);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 45;
    box-shadow: 0 18px 34px rgba(0, 233, 168, 0.18);
    animation: support-bounce 2.2s ease-in-out infinite;
}

.support-fab::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    background: rgba(0, 233, 168, 0.16);
    filter: blur(0.2px);
    animation: support-pulse 1.6s ease-out infinite;
}

.support-fab::after {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 32px;
    border: 2px solid rgba(0, 233, 168, 0.18);
    opacity: 0;
    animation: support-ring 1.6s ease-out infinite;
}

.support-fab-ico {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
}

.support-fab-ico svg {
    width: 18px;
    height: 18px;
}

.support-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
    padding: 18px;
    display: grid;
    align-items: end;
    justify-items: center;
}

.support-overlay[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
}

.support-sheet {
    width: min(420px, calc(100vw - 28px));
    border-radius: 22px;
    background: rgba(10, 20, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.support-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-title {
    font-weight: 1200;
    color: rgba(255, 255, 255, 0.95);
}

.support-close {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.support-body {
    padding: 12px 12px;
    max-height: min(52vh, 420px);
    overflow: auto;
    display: grid;
    gap: 10px;
    scrollbar-width: none;
}

.support-body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.support-msg {
    display: grid;
    gap: 4px;
}

.support-msg[data-from="user"] {
    justify-items: end;
}

.support-bubble {
    max-width: 86%;
    padding: 10px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.support-msg[data-from="bot"] .support-bubble {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.support-msg[data-from="user"] .support-bubble {
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.95), rgba(255, 156, 0, 0.92));
    color: rgba(10, 20, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.support-meta {
    font-size: 11px;
    font-weight: 800;
    color: rgba(233, 233, 243, 0.55);
}

.support-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.support-input {
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.95);
    padding: 0 12px;
    font-weight: 900;
}

.support-send {
    height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    background: rgba(0, 233, 168, 0.95);
    color: rgba(10, 20, 32, 0.9);
    font-weight: 1200;
}

@keyframes support-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes support-pulse {
    0% {
        opacity: 0.65;
        transform: scale(0.92);
    }
    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}

@keyframes support-ring {
    0% {
        opacity: 0.45;
        transform: scale(0.88);
    }
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

.nav-item {
    display: grid;
    justify-items: center;
    gap: 4px;
    padding: 9px 6px 8px;
    border-radius: 14px;
    color: rgba(233, 233, 243, 0.62);
}

.nav-item[data-active="true"] {
    background: rgba(255, 197, 54, 0.14);
    border: 1px solid rgba(255, 197, 54, 0.2);
    color: rgba(255, 232, 175, 0.95);
}

.nav-label {
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 140ms ease;
}

.drawer {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 61;
    width: min(360px, calc(100vw - 28px));
    max-height: calc(100svh - 28px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    background: rgba(20, 20, 30, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
    transform: translate(-50%, -48%) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    backdrop-filter: blur(12px);
    color: #ececfa;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
}

.drawer[data-open="true"] {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.drawer-overlay[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
}

.drawer-head {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 197, 54, 0.16);
    border: 1px solid rgba(255, 197, 54, 0.22);
    font-weight: 900;
}

.drawer-name {
    font-weight: 900;
    font-size: 13px;
}

.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.drawer-links {
    padding: 12px;
    display: grid;
    gap: 6px;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-link[data-active="true"] {
    background: rgba(0, 233, 168, 0.1);
    border-color: rgba(0, 233, 168, 0.18);
}

.drawer-link span {
    font-weight: 800;
    font-size: 13px;
}

.drawer-foot {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    color: rgba(233, 233, 243, 0.6);
}

.auth-shell {
    width: min(520px, 92vw);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 26px 22px 18px;
    color: #0a1420;
}

.auth-overlay {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: calc(16px + env(safe-area-inset-top)) 14px calc(16px + env(safe-area-inset-bottom));
    width: 100%;
    align-self: stretch;
    overflow-y: auto;
}

.auth-modal {
    width: min(420px, 92vw);
}

.auth-hero {
    width: min(420px, 92vw);
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.auth-pill {
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0, 233, 168, 0.1);
    border: 1px solid rgba(0, 233, 168, 0.18);
    color: rgba(210, 255, 243, 0.95);
    font-weight: 1000;
    font-size: 11px;
    letter-spacing: 0.35px;
}

.auth-logo-big {
    width: 78px;
    height: 78px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.auth-logo-big svg {
    width: 40px;
    height: 40px;
}

.auth-brand-title {
    font-weight: 1400;
    font-size: 34px;
    letter-spacing: -0.6px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.auth-brand-title .brand-word {
    display: inline-block;
    line-height: 1;
}

.auth-brand-title .brand-ok {
    color: rgba(255, 197, 54, 1);
    text-shadow: 0 10px 26px rgba(255, 197, 54, 0.22);
}

.auth-brand-title .brand-data {
    color: rgba(0, 233, 168, 1);
    text-shadow: 0 10px 26px rgba(0, 233, 168, 0.18);
}

.auth-brand-sub {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.72);
    font-weight: 900;
}

.auth-card-head {
    margin-bottom: 12px;
}

.auth-card-title {
    font-weight: 1100;
    font-size: 16px;
}

.auth-card-sub {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(233, 233, 243, 0.68);
    font-weight: 900;
}

.auth-features {
    width: min(420px, 92vw);
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(233, 233, 243, 0.62);
    font-weight: 900;
    font-size: 11px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-feature::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 233, 168, 0.9);
    box-shadow: 0 0 0 6px rgba(0, 233, 168, 0.12);
}

@media (max-height: 720px) {
    .auth-overlay {
        justify-content: center;
        padding: calc(12px + env(safe-area-inset-top)) 14px calc(12px + env(safe-area-inset-bottom));
    }
}

.theme-green .card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(10, 20, 32, 0.1);
    box-shadow: var(--shadow-soft);
}

.theme-green .card.soft {
    background: rgba(255, 255, 255, 0.88);
}

.theme-green .app-header {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(10, 20, 32, 0.08);
    box-shadow: var(--shadow-soft);
    color: #0a1420;
}

.theme-green .brand-subtitle {
    color: rgba(10, 20, 32, 0.62);
}

.theme-green .app-top-pill {
    background: rgba(46, 165, 79, 0.1);
    border-color: rgba(46, 165, 79, 0.18);
    color: rgba(33, 128, 60, 0.95);
}

.theme-green .pill-dot {
    background: rgba(46, 165, 79, 1);
    box-shadow: 0 0 0 6px rgba(46, 165, 79, 0.14);
}

.theme-green .menu-btn {
    background: rgba(10, 20, 32, 0.04);
    border-color: rgba(10, 20, 32, 0.12);
    color: #0a1420;
}

.theme-green .bottom-nav {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(10, 20, 32, 0.12);
}

.theme-green .nav-item {
    color: rgba(10, 20, 32, 0.56);
}

.theme-green .nav-item[data-active="true"] {
    background: rgba(46, 165, 79, 0.14);
    border-color: rgba(46, 165, 79, 0.22);
    color: rgba(33, 128, 60, 0.95);
}

.theme-green .drawer {
    background: rgba(255, 255, 255, 0.96);
    color: #0a1420;
    border-left-color: rgba(10, 20, 32, 0.12);
}

.theme-green .drawer-head {
    border-bottom-color: rgba(10, 20, 32, 0.08);
}

.theme-green .drawer-link {
    background: rgba(10, 20, 32, 0.035);
    border-color: rgba(10, 20, 32, 0.08);
}

.theme-green .drawer-link[data-active="true"] {
    background: rgba(46, 165, 79, 0.1);
    border-color: rgba(46, 165, 79, 0.18);
}

.theme-green .drawer-foot {
    border-top-color: rgba(10, 20, 32, 0.08);
    color: rgba(10, 20, 32, 0.6);
}

.theme-purple .card {
    background: rgba(6, 6, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.theme-purple .card.soft {
    background: rgba(6, 6, 18, 0.62);
    border-color: rgba(255, 255, 255, 0.1);
}

.theme-purple .app-top-pill {
    background: rgba(255, 197, 54, 0.12);
    border-color: rgba(255, 197, 54, 0.18);
    color: rgba(255, 232, 175, 0.95);
}

.theme-purple .pill-dot {
    background: rgba(255, 197, 54, 1);
    box-shadow: 0 0 0 6px rgba(255, 197, 54, 0.14);
}

.theme-purple .app-header {
    background: rgba(0, 0, 0, 0.48);
    border-color: rgba(255, 255, 255, 0.12);
}

.theme-purple .menu-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(233, 233, 243, 0.92);
}

.theme-purple .bottom-nav {
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.12);
}

.theme-purple .nav-item[data-active="true"] {
    background: rgba(255, 197, 54, 0.16);
    border-color: rgba(255, 197, 54, 0.22);
    color: rgba(255, 232, 175, 0.95);
}

.theme-purple .btn-green {
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.98), rgba(255, 156, 0, 0.92));
}

.theme-purple .btn-red {
    background: linear-gradient(90deg, rgba(245, 129, 0, 0.95), rgba(233, 31, 99, 0.92));
}

.theme-purple .input {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(233, 233, 243, 0.92);
}

.theme-purple .input::placeholder {
    color: rgba(233, 233, 243, 0.5);
}

.theme-purple .input:focus {
    box-shadow: 0 0 0 3px rgba(255, 197, 54, 0.22);
    border-color: rgba(255, 197, 54, 0.42);
}

.theme-purple .label {
    color: rgba(233, 233, 243, 0.663);
}

.theme-purple .toggle-eye {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(233, 233, 243, 0.9);
}

.theme-purple .auth-btn {
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.98), rgba(255, 156, 0, 0.92));
    color: rgba(10, 20, 32, 0.92);
}

.theme-purple .auth-foot {
    color: rgba(233, 233, 243, 0.72);
}

.theme-purple .auth-foot a {
    color: rgba(255, 197, 54, 0.96);
}

.theme-purple .alert {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(233, 233, 243, 0.9);
}

.theme-purple .alert-error {
    background: rgba(233, 31, 99, 0.14);
    border-color: rgba(233, 31, 99, 0.22);
    color: rgba(255, 215, 231, 0.95);
}

.theme-purple .alert-success {
    background: rgba(0, 233, 168, 0.14);
    border-color: rgba(0, 233, 168, 0.22);
    color: rgba(210, 255, 243, 0.95);
}

.theme-purple .info-box {
    background: rgba(255, 197, 54, 0.12);
    border-color: rgba(255, 197, 54, 0.18);
    color: rgba(255, 232, 175, 0.95);
}

.theme-purple .method-tabs {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.theme-purple .method-tab {
    color: rgba(233, 233, 243, 0.72);
}

.theme-purple .method-tab[data-active="true"] {
    background: rgba(255, 197, 54, 0.14);
    border-color: rgba(255, 197, 54, 0.22);
    color: rgba(255, 232, 175, 0.95);
}

.theme-purple .wallet-hero {
    background: linear-gradient(135deg, rgba(255, 197, 54, 0.92), rgba(255, 156, 0, 0.85));
    border-color: rgba(255, 255, 255, 0.1);
}

.theme-purple .wallet-hero .section-title {
    color: rgba(255, 255, 255, 0.86);
}

.sell-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 12px;
    align-items: start;
    margin-top: 0;
}

.neo-gauge {
    position: relative;
    width: 100%;
    max-width: 270px;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}

.neo-svg {
    width: 100%;
    height: auto;
    user-select: none;
    overflow: visible;
}

.neo-bg {
    fill: rgba(0, 0, 0, 0.22);
}

.neo-ring {
    fill: none;
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 26;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.neo-ticks rect {
    fill: rgba(255, 255, 255, 0.14);
}

.neo-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.14);
    stroke-width: 18;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.neo-arc {
    fill: none;
    stroke-width: 18;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
    transition: opacity 160ms ease, stroke-dashoffset 170ms cubic-bezier(0.2, 0.9, 0.2, 1);
    filter: drop-shadow(0 18px 28px rgba(255, 197, 54, 0.16));
}

.neo-gauge[data-on="true"] .neo-arc {
    opacity: 1;
}

.neo-labels text {
    text-anchor: middle;
    dominant-baseline: middle;
}

.neo-l {
    font-size: 14px;
    font-weight: 1100;
    fill: rgba(233, 233, 243, 0.48);
}

.neo-l-strong {
    fill: rgba(233, 233, 243, 0.9);
}

.neo-core {
    fill: rgba(6, 6, 18, 0.75);
    stroke: rgba(255, 197, 54, 0.22);
    stroke-width: 2;
}

.neo-core-glow {
    fill: url(#neoInnerGlow);
    opacity: 0.85;
}

.neo-ring-text {
    font-size: 9px;
    font-weight: 900;
    fill: rgba(255, 197, 54, 0.72);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.neo-needle {
    position: absolute;
    width: 210px;
    height: 210px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--beam-deg, -135deg));
    transform-origin: 50% 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 160ms ease, transform 170ms cubic-bezier(0.2, 0.9, 0.2, 1);
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5));
}

.neo-gauge[data-on="true"] .neo-needle {
    opacity: 1;
}

.neo-needle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 124px;
    height: 14px;
    transform: translate(12px, -50%);
    background: linear-gradient(90deg, rgba(233, 233, 243, 0.88), rgba(233, 233, 243, 0));
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    opacity: 0.55;
}

.neo-gauge[data-on="true"] .neo-needle::before {
    background: linear-gradient(90deg, rgba(255, 51, 153, 0.92), rgba(47, 99, 255, 0.7), rgba(0, 233, 168, 0));
    opacity: 0.95;
}

.neo-read {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    user-select: none;
}

.neo-number {
    font-weight: 1200;
    font-size: 44px;
    letter-spacing: -0.6px;
    color: rgba(233, 233, 243, 0.96);
    text-shadow: 0 18px 30px rgba(0, 0, 0, 0.6);
}

.neo-unit {
    margin-top: 4px;
    font-weight: 1100;
    font-size: 14px;
    color: rgba(233, 233, 243, 0.72);
    letter-spacing: 1.4px;
}

@media (max-width: 420px) {
    .neo-gauge {
        max-width: 248px;
    }
    .neo-number {
        font-size: 40px;
    }
}

.theme-purple .gauge {
    display: none;
}

.gauge::before {
    content: "";
    position: absolute;
    inset: 8px 6px 46px;
    border-radius: 999px;
    background: radial-gradient(closest-side, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0) 65%), radial-gradient(closest-side, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0) 58%);
    pointer-events: none;
}

.gauge::after {
    content: "";
    position: absolute;
    inset: 18px 14px 56px;
    border-radius: 999px;
    background: radial-gradient(closest-side, rgba(46, 165, 79, 0.18), rgba(46, 165, 79, 0));
    opacity: 0.55;
    pointer-events: none;
}

.gauge-svg {
    width: 100%;
    max-width: 260px;
    height: auto;
    user-select: none;
}

.gauge-track {
    fill: none;
    stroke: rgba(10, 20, 32, 0.08);
    stroke-width: 16;
    stroke-linecap: round;
}

.gauge-arc {
    fill: none;
    stroke: rgba(46, 165, 79, 1);
    stroke-width: 16;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 120ms linear;
}

.gauge-ticks circle {
    fill: rgba(10, 20, 32, 0.24);
}

.gauge-needle {
    display: none !important;
}

.gauge-needle {
    position: absolute;
    width: 72px;
    height: 4px;
    background: rgba(10, 20, 32, 0.75);
    border-radius: 999px;
    transform-origin: 8px 50%;
    transform: rotate(var(--needle-deg, -180deg)) !important;
    transition: transform 170ms cubic-bezier(0.2, 0.9, 0.2, 1);
    top: 112px;
    left: 50%;
    margin-left: -8px;
}

.gauge-needle::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: rgba(46, 165, 79, 1);
    border: 3px solid rgba(255, 255, 255, 1);
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.gauge-read {
    position: absolute;
    bottom: 26px;
    text-align: center;
    user-select: none;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    min-width: 108px;
}

.gauge-number {
    font-weight: 1000;
    font-size: 22px;
    color: rgba(10, 20, 32, 0.85);
    letter-spacing: -0.5px;
}

.gauge-unit {
    font-weight: 900;
    font-size: 12px;
    color: rgba(10, 20, 32, 0.55);
    letter-spacing: 0.4px;
}

.gauge-tick-text {
    font-size: 10px;
    font-weight: 1000;
    fill: rgba(10, 20, 32, 0.55);
    user-select: none;
}

.gauge-needle::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid rgba(46, 165, 79, 1);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
}

.theme-purple .gauge::after {
    opacity: 0.75;
    background: radial-gradient(closest-side, rgba(255, 197, 54, 0.18), rgba(255, 197, 54, 0));
}

.theme-purple .gauge::before {
    background: radial-gradient(closest-side, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 65%), radial-gradient(closest-side, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0) 58%);
}

.theme-purple .gauge-track {
    stroke: rgba(255, 255, 255, 0.16);
}

.theme-purple .gauge-arc {
    filter: drop-shadow(0 14px 18px rgba(0, 233, 168, 0.1));
}

.theme-purple .gauge-ticks circle {
    fill: rgba(255, 255, 255, 0.28);
}

.theme-purple .gauge-tick-text {
    fill: rgba(233, 233, 243, 0.7);
    paint-order: stroke;
    stroke: rgba(0, 0, 0, 0.55);
    stroke-width: 3px;
}

.theme-purple .gauge-needle {
    background: linear-gradient(90deg, rgba(0, 233, 168, 0.95), rgba(255, 197, 54, 0.85));
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.45);
}

.theme-purple .gauge-needle::before {
    background: rgba(0, 233, 168, 0.95);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
}

.theme-purple .gauge-needle::after {
    border-left-color: rgba(0, 233, 168, 0.95);
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.45));
}

.theme-purple .gauge-number {
    color: rgba(233, 233, 243, 0.96);
    text-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.theme-purple .gauge-unit {
    color: rgba(233, 233, 243, 0.72);
}

.sell-side {
    display: grid;
    gap: 10px;
}

.digital-meter {
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(10, 20, 32, 0.035);
    border: 1px solid rgba(10, 20, 32, 0.08);
    display: grid;
    gap: 10px;
}

.dm-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.dm-led {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-block;
    margin-right: 8px;
    box-shadow: none;
}

.dm-led[data-on="true"] {
    background: rgba(0, 233, 168, 0.95);
    border-color: rgba(0, 233, 168, 0.35);
    box-shadow: 0 0 0 6px rgba(0, 233, 168, 0.12), 0 10px 24px rgba(0, 233, 168, 0.14);
}

.dm-label {
    font-size: 12px;
    color: rgba(10, 20, 32, 0.62);
    font-weight: 1000;
    display: flex;
    align-items: center;
}

.dm-value {
    font-weight: 1200;
    color: rgba(10, 20, 32, 0.85);
    letter-spacing: -0.3px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 18px;
}

.dm-unit {
    font-size: 12px;
    color: rgba(10, 20, 32, 0.62);
    font-weight: 1000;
}

.dm-wave {
    width: 100%;
    height: 56px;
    overflow: visible;
}

.dm-wave-bg {
    stroke: rgba(10, 20, 32, 0.08);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
}

.dm-wave-line {
    stroke: rgba(46, 165, 79, 1);
    stroke-width: 2.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 6px 12px rgba(46, 165, 79, 0.22));
}

.theme-purple .digital-meter {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.theme-purple .dm-label,
.theme-purple .dm-unit {
    color: rgba(233, 233, 243, 0.72);
}

.theme-purple .dm-value {
    color: rgba(233, 233, 243, 0.92);
}

.theme-purple .dm-wave-bg {
    stroke: rgba(255, 255, 255, 0.12);
}

.theme-purple .dm-wave-line {
    stroke: rgba(0, 233, 168, 0.95);
    filter: drop-shadow(0 10px 18px rgba(0, 233, 168, 0.16));
}

.side-stat {
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(46, 165, 79, 0.08);
    border: 1px solid rgba(46, 165, 79, 0.14);
    display: grid;
    gap: 6px;
}

.side-stat .k {
    font-size: 12px;
    color: rgba(10, 20, 32, 0.62);
    font-weight: 900;
}

.side-stat .v {
    font-weight: 1000;
    color: rgba(33, 128, 60, 0.98);
}

.theme-purple .side-stat {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.theme-purple .side-stat .k {
    color: rgba(233, 233, 243, 0.72);
}

.theme-purple .side-stat .v {
    color: rgba(0, 233, 168, 0.95);
}

.btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.btn-ctl {
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 1000;
    letter-spacing: 0.2px;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-stop {
    background: rgba(233, 31, 99, 1);
    color: #fff;
}

.btn-stop[data-selling="false"] {
    background: rgba(46, 165, 79, 1);
}

.btn-withdraw {
    background: rgba(245, 129, 0, 1);
    color: #fff;
}

.theme-purple .btn-stop {
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.98), rgba(255, 156, 0, 0.92));
}

.theme-purple .btn-stop[data-selling="false"] {
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.98), rgba(255, 156, 0, 0.92));
}

.theme-purple .btn-withdraw {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(233, 233, 243, 0.92);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
    padding: 18px;
    z-index: 50;
}

.modal-overlay[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    width: min(380px, 92vw);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    padding: 18px 16px 16px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 55%), linear-gradient(180deg, rgba(255, 197, 54, 1), rgba(255, 156, 0, 1));
    color: rgba(255, 255, 255, 0.98);
    margin: 0 auto 12px;
    box-shadow: 0 18px 38px rgba(255, 197, 54, 0.25);
}

.modal-icon svg {
    width: 30px;
    height: 30px;
}

.modal-title {
    font-weight: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 28px;
    letter-spacing: -0.6px;
}

.modal-title-text {
    background: linear-gradient(90deg, rgba(255, 156, 0, 1), rgba(0, 177, 206, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-spark {
    font-size: 18px;
    color: rgba(255, 156, 0, 1);
}

.modal-sub {
    margin-top: 4px;
    font-size: 14px;
    color: rgba(10, 20, 32, 0.62);
    font-weight: 700;
}

.modal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.modal-stat {
    border-radius: 16px;
    padding: 14px 12px 12px;
    border: 1px solid rgba(10, 20, 32, 0.08);
}

.modal-stat-blue {
    background: rgba(0, 177, 206, 0.12);
    border-color: rgba(0, 177, 206, 0.2);
}

.modal-stat-green {
    background: rgba(0, 233, 168, 0.12);
    border-color: rgba(0, 233, 168, 0.2);
}

.ms-k {
    font-size: 14px;
    color: rgba(10, 20, 32, 0.62);
    font-weight: 900;
}

.ms-v {
    margin-top: 8px;
    font-weight: 1300;
    font-size: 38px;
    letter-spacing: -0.8px;
    color: rgba(10, 20, 32, 0.9);
}

.ms-unit {
    margin-top: 4px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1.2px;
    color: rgba(10, 20, 32, 0.55);
}

.modal-note {
    margin: 14px auto 14px;
    border-radius: 16px;
    padding: 12px 12px;
    background: rgba(0, 233, 168, 0.12);
    border: 1px solid rgba(0, 233, 168, 0.2);
    color: rgba(10, 20, 32, 0.8);
    font-weight: 1100;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-note-ico {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(10, 20, 32, 0.06);
    border: 1px solid rgba(10, 20, 32, 0.08);
    font-weight: 1200;
}

.modal-close {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(0, 233, 168, 1), rgba(46, 165, 79, 1));
    color: rgba(255, 255, 255, 0.98);
    font-weight: 1200;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(0, 233, 168, 0.18);
}

.confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.confetti i {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    opacity: 0.9;
    animation: confetti-fall 1.4s linear infinite;
}

@keyframes confetti-fall {
    from {
        transform: translateY(-20px);
    }
    to {
        transform: translateY(calc(100vh + 20px));
    }
}

@media (max-width: 420px) {
    .sell-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .sell-side {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        justify-self: stretch;
    }
    .neo-gauge {
        margin-inline: auto;
    }
    .digital-meter {
        grid-column: 1 / -1;
    }
    .operator-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
    }
    .operator {
        padding: 8px 6px 7px;
        gap: 6px;
        border-radius: 14px;
    }
    .op-logo {
        width: 26px;
        height: 26px;
        border-radius: 10px;
    }
    .op-img {
        border-radius: 10px;
    }
    .op-name {
        font-size: 10px;
    }
    .nav-label {
        font-size: 10px;
    }
}

.status-hero {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 18px 14px;
}

.status-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(46, 165, 79, 0.12);
    border: 1px solid rgba(46, 165, 79, 0.2);
    color: rgba(33, 128, 60, 0.95);
}

.status-icon svg {
    width: 32px;
    height: 32px;
}

.status-title {
    font-weight: 1000;
    font-size: 14px;
    margin: 0;
}

.status-sub {
    margin: 0;
    font-size: 12px;
    color: rgba(10, 20, 32, 0.62);
    text-align: center;
}

.theme-purple .status-icon {
    background: rgba(255, 197, 54, 0.14);
    border-color: rgba(255, 197, 54, 0.22);
    color: rgba(255, 232, 175, 0.95);
}

.status-icon-shield {
    background: rgba(255, 197, 54, 0.18);
    border-color: rgba(255, 197, 54, 0.26);
    color: rgba(255, 156, 0, 1);
}

.theme-purple .status-icon-shield {
    background: rgba(255, 197, 54, 0.18);
    border-color: rgba(255, 197, 54, 0.26);
    color: rgba(255, 197, 54, 1);
}

.status-icon-wave {
    position: relative;
}

.status-icon-wave::before,
.status-icon-wave::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    border: 2px solid rgba(255, 197, 54, 0.22);
    opacity: 0;
    animation: kyc-wave 1.6s ease-out infinite;
}

.status-icon-wave::after {
    inset: -18px;
    border-color: rgba(255, 197, 54, 0.14);
    animation-delay: 0.35s;
}

@keyframes kyc-wave {
    0% {
        transform: scale(0.86);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.kyc-start-blink {
    animation: kyc-cta-blink 1s ease-in-out infinite;
}

@keyframes kyc-cta-blink {
    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.03);
        filter: brightness(1.18);
    }
}

.theme-purple .status-title {
    color: rgba(233, 233, 243, 0.98);
}

.theme-purple .status-sub {
    color: rgba(233, 233, 243, 0.72);
}

.app-page-kyc .status-hero {
    padding: 24px 16px;
    gap: 12px;
}

.app-page-kyc .status-icon {
    width: 76px;
    height: 76px;
}

.app-page-kyc .status-icon svg {
    width: 40px;
    height: 40px;
}

.app-page-kyc .status-title {
    font-size: 22px;
}

.app-page-kyc .status-sub {
    font-size: 14px;
}

.app-page-kyc .btn-green {
    height: 52px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 1100;
}

.btn-green {
    border: none;
    width: 100%;
    height: 44px;
    border-radius: 12px;
    background: rgba(46, 165, 79, 1);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.selfie-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.selfie-box {
    margin-top: 8px;
    border-radius: 18px;
    padding: 14px;
    border: 2px dashed rgba(10, 20, 32, 0.14);
    background: rgba(10, 20, 32, 0.02);
    display: grid;
    justify-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.selfie-preview {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    object-fit: cover;
    display: none;
    border: 1px solid rgba(10, 20, 32, 0.1);
    background: rgba(10, 20, 32, 0.06);
}

.selfie-box[data-has-preview="true"] .selfie-preview {
    display: block;
}

.selfie-box[data-has-preview="true"] .selfie-ico {
    display: none;
}

.selfie-video {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    display: none;
    background: rgba(0, 0, 0, 0.2);
}

.selfie-canvas {
    display: none;
}

.selfie-box[data-mode="camera"] .selfie-video {
    display: block;
}

.selfie-box[data-mode="camera"] .selfie-ico,
.selfie-box[data-mode="camera"] .selfie-preview {
    display: none;
}

.selfie-actions {
    margin-top: 12px;
    display: none;
    gap: 10px;
}

.selfie-box[data-mode="camera"] .selfie-actions {
    display: flex;
}

.selfie-act {
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 1100;
    background: rgba(46, 165, 79, 1);
    color: rgba(255, 255, 255, 0.98);
}

.selfie-act-light {
    background: rgba(255, 255, 255, 0.92);
    color: rgba(10, 20, 32, 0.9);
}

.theme-purple .selfie-box {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.selfie-ico {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(10, 20, 32, 0.06);
    border: 1px solid rgba(10, 20, 32, 0.1);
    font-size: 22px;
    margin-top: 6px;
}

.theme-purple .selfie-ico {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.theme-purple .selfie-preview {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.theme-purple .selfie-video {
    background: rgba(255, 255, 255, 0.05);
}

.selfie-title {
    margin-top: 12px;
    font-weight: 1100;
    font-size: 14px;
}

.selfie-sub {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(10, 20, 32, 0.62);
}

.theme-purple .selfie-sub {
    color: rgba(233, 233, 243, 0.72);
}

.selfie-file {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(10, 20, 32, 0.75);
}

.theme-purple .selfie-file {
    color: rgba(233, 233, 243, 0.8);
}

.kyc-proceed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(46, 165, 79, 0.18);
    animation: kyc-cta-blink 1s ease-in-out infinite;
}

.kyc-proceed>* {
    position: relative;
    z-index: 1;
}

.kyc-proceed[data-loading="true"] {
    animation: none;
}

.kyc-proceed-spin {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.95);
    display: none;
    animation: spin 1s linear infinite;
}

.kyc-proceed[data-loading="true"] .kyc-proceed-spin {
    display: inline-block;
}

.kyc-proceed[data-loading="true"] .kyc-proceed-text {
    opacity: 0.95;
}

.btn-red {
    border: none;
    width: 100%;
    height: 44px;
    border-radius: 12px;
    background: rgba(233, 31, 99, 1);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.btn-link {
    display: grid;
    place-items: center;
    text-decoration: none;
}

.stack {
    display: grid;
    gap: 10px;
}

.center {
    display: grid;
    place-items: center;
}

.muted {
    font-size: 12px;
    color: rgba(10, 20, 32, 0.62);
}

.theme-purple .muted {
    color: rgba(233, 233, 243, 0.72);
}

.alert {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(10, 20, 32, 0.12);
    background: rgba(10, 20, 32, 0.04);
    font-weight: 900;
    font-size: 12px;
}

.alert-error {
    background: rgba(233, 31, 99, 0.08);
    border-color: rgba(233, 31, 99, 0.18);
    color: rgba(160, 18, 70, 1);
}

.alert-success {
    background: rgba(46, 165, 79, 0.1);
    border-color: rgba(46, 165, 79, 0.18);
    color: rgba(33, 128, 60, 1);
}

.spinner {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 4px solid rgba(46, 165, 79, 0.2);
    border-top-color: rgba(46, 165, 79, 1);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.info-box {
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(255, 197, 54, 0.14);
    border: 1px solid rgba(255, 197, 54, 0.25);
    color: rgba(140, 86, 0, 1);
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.theme-purple .info-box {
    background: rgba(255, 197, 54, 0.14);
    border-color: rgba(255, 197, 54, 0.22);
    color: rgba(255, 236, 190, 0.95);
}

.processing-box {
    border-radius: 18px;
    padding: 14px 14px;
    background: linear-gradient(90deg, rgba(255, 156, 0, 0.92), rgba(255, 197, 54, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.96);
}

.processing-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 1100;
}

.processing-ico {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.96);
    font-weight: 1200;
}

.processing-list {
    margin: 10px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
    font-weight: 800;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.92);
}

.why-list {
    display: grid;
    gap: 10px;
}

.why-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
}

.why-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: rgba(46, 165, 79, 0.12);
    border: 1px solid rgba(46, 165, 79, 0.22);
    margin-top: 2px;
}

.why-title {
    font-weight: 900;
    font-size: 12px;
}

.why-sub {
    font-size: 12px;
    color: rgba(10, 20, 32, 0.62);
    margin-top: 2px;
}

.theme-purple .why-dot {
    background: rgba(0, 233, 168, 0.12);
    border-color: rgba(0, 233, 168, 0.22);
}

.theme-purple .why-title {
    color: rgba(233, 233, 243, 0.96);
}

.theme-purple .why-sub {
    color: rgba(233, 233, 243, 0.72);
}

.kyc-more {
    display: grid;
    gap: 10px;
}

.kyc-step {
    border-radius: 16px;
    padding: 12px;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.kyc-n {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 1100;
    color: rgba(233, 233, 243, 0.98);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.kyc-t {
    font-weight: 1100;
    font-size: 13px;
}

.kyc-s {
    margin-top: 2px;
    font-size: 12px;
    color: rgba(233, 233, 243, 0.68);
    font-weight: 800;
}

.kyc-step-purple {
    background: rgba(255, 197, 54, 0.08);
    border-color: rgba(255, 197, 54, 0.16);
}

.kyc-step-teal {
    background: rgba(0, 233, 168, 0.08);
    border-color: rgba(0, 233, 168, 0.16);
}

.kyc-step-yellow {
    background: rgba(255, 197, 54, 0.08);
    border-color: rgba(255, 197, 54, 0.16);
}

.kyc-step-blue {
    background: rgba(71, 123, 255, 0.09);
    border-color: rgba(71, 123, 255, 0.18);
}

.auth-brand {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.auth-logo {
    width: 66px;
    height: 66px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 55%), linear-gradient(135deg, rgba(46, 165, 79, 0.9), rgba(0, 177, 206, 0.76));
    border: 5px solid rgba(255, 255, 255, 0.9);
    outline: 1px solid rgba(46, 165, 79, 0.25);
}

.auth-title {
    font-size: 26px;
    font-weight: 900;
    margin: 0;
}

.auth-subtitle {
    margin: 0;
    color: rgba(10, 20, 32, 0.7);
}

.govt-pill-green {
    margin: 14px auto 12px;
    width: 100%;
    max-width: 380px;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(46, 165, 79, 0.22);
    background: rgba(46, 165, 79, 0.08);
    color: rgba(33, 128, 60, 0.95);
    font-weight: 800;
    letter-spacing: 0.35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
}

.form {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.field {
    display: grid;
    gap: 8px;
}

.label {
    font-weight: 900;
    font-size: 13px;
}

.input {
    height: 46px;
    border-radius: 12px;
    padding: 0 12px;
    border: 1px solid rgba(10, 20, 32, 0.12);
    background: #f5fbf7;
    outline: none;
}

.input:focus {
    box-shadow: 0 0 0 3px rgba(46, 165, 79, 0.18);
    border-color: rgba(46, 165, 79, 0.35);
}

.method-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(10, 20, 32, 0.03);
    border: 1px solid rgba(10, 20, 32, 0.08);
}

.method-tab {
    border: none;
    border-radius: 14px;
    height: 42px;
    background: transparent;
    font-weight: 1000;
    cursor: pointer;
    color: rgba(10, 20, 32, 0.7);
}

.method-tab[data-active="true"] {
    background: rgba(46, 165, 79, 0.12);
    border: 1px solid rgba(46, 165, 79, 0.22);
    color: rgba(10, 20, 32, 0.9);
}

.method-pane {
    display: none;
}

.method-pane[data-active="true"] {
    display: grid;
    gap: 12px;
}

.password-row {
    position: relative;
    display: block;
}

.password-row .input {
    padding-right: 54px;
    width: 100%;
    display: block;
}

.toggle-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(10, 20, 32, 0.06);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    cursor: pointer;
}

.auth-modal .toggle-eye {
    background: transparent;
    color: rgba(233, 233, 243, 0.86);
}

.auth-btn {
    height: 48px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(46, 165, 79, 1), rgba(0, 177, 206, 1));
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.2px;
    cursor: pointer;
}

.auth-foot {
    text-align: center;
    margin-top: 14px;
    color: rgba(10, 20, 32, 0.7);
    font-weight: 600;
}

.auth-foot a {
    color: rgba(0, 140, 170, 1);
    font-weight: 900;
}

@media (max-width: 520px) {
    .theme-green.page {
        background: #eef8f1;
    }
    .auth-shell {
        padding: 22px 16px 18px;
    }
}

.admin-page {
    min-height: 100vh;
    background: radial-gradient(900px 600px at 20% 10%, rgba(255, 197, 54, 0.18), rgba(0, 0, 0, 0) 55%), radial-gradient(700px 520px at 90% 20%, rgba(0, 233, 168, 0.08), rgba(0, 0, 0, 0) 55%), radial-gradient(900px 650px at 70% 100%, rgba(255, 51, 153, 0.12), rgba(0, 0, 0, 0) 55%), #04040a;
    color: #e9e9f3;
    padding: 18px 14px;
}

.admin-shell {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 14px;
}

.admin-side {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-2);
    padding: 12px;
    align-self: start;
}

.admin-brand {
    display: grid;
    gap: 6px;
    padding: 10px 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-brand-title {
    font-weight: 1000;
}

.admin-brand-sub {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.6);
}

.admin-nav {
    margin-top: 10px;
    display: grid;
    gap: 6px;
}

.admin-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(233, 233, 243, 0.78);
    font-weight: 900;
    font-size: 13px;
}

.admin-link[data-active="true"] {
    background: rgba(255, 197, 54, 0.14);
    border-color: rgba(255, 197, 54, 0.22);
    color: rgba(255, 232, 175, 0.95);
}

.admin-main {
    display: grid;
    gap: 12px;
}

.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-2);
}

.admin-title {
    font-weight: 1100;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(233, 233, 243, 0.75);
    font-weight: 900;
    font-size: 12px;
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.admin-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-2);
    padding: 14px;
    display: grid;
    gap: 6px;
}

.admin-card-k {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.62);
    font-weight: 900;
}

.admin-card-v {
    font-weight: 1100;
    font-size: 22px;
}

.admin-table {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-2);
    padding: 14px;
}

.admin-table-title {
    font-weight: 1100;
    margin-bottom: 10px;
}

.tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.tbl th,
.tbl td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    color: rgba(233, 233, 243, 0.82);
}

.tbl th {
    color: rgba(233, 233, 243, 0.62);
    font-weight: 1000;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 1000;
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.badge-green {
    border-color: rgba(0, 233, 168, 0.22);
    background: rgba(0, 233, 168, 0.1);
    color: #baffef;
}

.badge-yellow {
    border-color: rgba(255, 197, 54, 0.22);
    background: rgba(255, 197, 54, 0.12);
    color: #ffe8a6;
}

.badge-red {
    border-color: rgba(233, 31, 99, 0.2);
    background: rgba(233, 31, 99, 0.1);
    color: #ffd0e1;
}

.admin-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-btn {
    height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(233, 233, 243, 0.9);
    font-weight: 1000;
    cursor: pointer;
}

.admin-btn-approve {
    border-color: rgba(0, 233, 168, 0.24);
    background: rgba(0, 233, 168, 0.1);
}

.admin-btn-reject {
    border-color: rgba(233, 31, 99, 0.22);
    background: rgba(233, 31, 99, 0.1);
}

.refer-head {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.refer-back {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(233, 233, 243, 0.92);
}

.refer-head-title {
    font-weight: 1100;
    font-size: 16px;
}

.refer-card {
    border-radius: 18px;
    padding: 14px;
    background: rgba(6, 6, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.refer-earn {
    background: linear-gradient(135deg, rgba(255, 197, 54, 0.92), rgba(255, 156, 0, 0.85));
    border-color: rgba(255, 255, 255, 0.1);
    padding: 18px 16px;
    min-height: 110px;
}

.refer-k {
    font-size: 14px;
    font-weight: 1000;
    color: rgba(233, 233, 243, 0.85);
}

.refer-amt {
    margin-top: 6px;
    font-size: 46px;
    font-weight: 1300;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.98);
}

.refer-sub {
    margin-top: 4px;
    font-size: 13px;
    color: rgba(233, 233, 243, 0.75);
    font-weight: 800;
}

.refer-code-title {
    font-weight: 1200;
    font-size: 20px;
}

.refer-code-sub {
    margin-top: 2px;
    font-size: 13px;
    color: rgba(233, 233, 243, 0.72);
    font-weight: 800;
}

.refer-code-box {
    margin-top: 12px;
    border-radius: 20px;
    padding: 18px 14px;
    background: linear-gradient(135deg, rgba(255, 197, 54, 0.98), rgba(255, 156, 0, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.refer-code-label {
    font-size: 13px;
    font-weight: 1000;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.3px;
}

.refer-code-value {
    font-size: 34px;
    font-weight: 1300;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.98);
}

.refer-btn {
    height: 48px;
    border-radius: 14px;
    border: none;
    font-weight: 1100;
    cursor: pointer;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.96);
}

.refer-btn-light {
    background: rgba(255, 255, 255, 0.92);
    color: rgba(10, 20, 32, 0.9);
    padding: 0 14px;
    font-size: 14px;
}

.refer-btn-wa {
    margin-top: 12px;
    background: linear-gradient(90deg, rgba(255, 197, 54, 0.98), rgba(255, 156, 0, 0.92));
}

.refer-link-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.refer-link {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    color: rgba(233, 233, 243, 0.82);
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.refer-mini {
    height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(233, 233, 243, 0.92);
    font-weight: 1000;
    cursor: pointer;
}

.refer-card-title {
    font-weight: 1100;
    font-size: 16px;
    margin-bottom: 10px;
}

.refer-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.refer-step:first-of-type {
    border-top: none;
    padding-top: 0;
}

.refer-step-n {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 1100;
    color: rgba(233, 233, 243, 0.95);
}

.refer-step-last .refer-step-n {
    background: rgba(0, 233, 168, 0.12);
    border-color: rgba(0, 233, 168, 0.2);
    color: rgba(210, 255, 243, 0.95);
}

.refer-step-t {
    font-weight: 1100;
    font-size: 13px;
}

.refer-step-s {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.68);
    font-weight: 800;
    margin-top: 2px;
}

.refer-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.refer-stat {
    border-radius: 16px;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.refer-stat-green {
    background: rgba(0, 233, 168, 0.1);
    border-color: rgba(0, 233, 168, 0.18);
}

.refer-stat-v {
    font-weight: 1200;
    font-size: 26px;
    color: rgba(233, 233, 243, 0.95);
}

.refer-stat-k {
    margin-top: 2px;
    font-size: 12px;
    color: rgba(233, 233, 243, 0.68);
    font-weight: 900;
}

.refer-steps {
    overflow: hidden;
}

.refer-code {
    overflow: hidden;
}

.refer-earn {
    overflow: hidden;
}

.refer-stats {
    overflow: hidden;
}

@media (max-width: 420px) {
    .refer-head {
        margin-top: 8px;
    }
    .refer-back {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }
    .refer-card {
        padding: 12px;
        border-radius: 16px;
    }
    .refer-amt {
        font-size: 30px;
    }
    .refer-code-box {
        padding: 12px;
        border-radius: 16px;
    }
    .refer-code-value {
        font-size: 24px;
        letter-spacing: 1px;
    }
    .refer-btn {
        height: 42px;
    }
    .refer-btn-wa {
        margin-top: 10px;
    }
    .refer-link-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
    }
    .refer-link {
        white-space: normal;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-word;
    }
    .refer-mini {
        width: 100%;
    }
    .refer-stat-grid {
        gap: 8px;
    }
    .refer-stat {
        padding: 12px 10px;
    }
}

.settings-title {
    font-weight: 1100;
    font-size: 16px;
    margin-bottom: 4px;
}

.settings-sub {
    font-size: 12px;
    color: rgba(233, 233, 243, 0.72);
    font-weight: 800;
    margin-bottom: 12px;
}

.settings-row {
    display: grid;
    grid-template-columns: 1fr 34px;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.settings-row:first-of-type {
    border-top: none;
    padding-top: 0;
}

.settings-row-k {
    font-size: 11px;
    color: rgba(233, 233, 243, 0.62);
    font-weight: 900;
}

.settings-row-v {
    font-weight: 1100;
    color: rgba(233, 233, 243, 0.95);
    margin-top: 2px;
}

.settings-ico {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(233, 233, 243, 0.92);
}

.profile-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.profile-top-title {
    font-weight: 1100;
    font-size: 16px;
}

.profile-list {
    display: grid;
    gap: 10px;
}

.profile-item {
    border-radius: 16px;
    padding: 12px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.profile-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(233, 233, 243, 0.92);
}

.profile-txt {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.profile-k {
    font-size: 11px;
    font-weight: 900;
    color: rgba(233, 233, 243, 0.68);
}

.profile-v {
    font-weight: 1100;
    color: rgba(233, 233, 243, 0.96);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-item-green {
    background: rgba(0, 233, 168, 0.08);
    border-color: rgba(0, 233, 168, 0.16);
}

.profile-item-teal {
    background: rgba(0, 177, 206, 0.08);
    border-color: rgba(0, 177, 206, 0.16);
}

.profile-item-yellow {
    background: rgba(255, 197, 54, 0.08);
    border-color: rgba(255, 197, 54, 0.16);
}

.how-title {
    font-weight: 1100;
    font-size: 16px;
    margin-bottom: 10px;
}

.how-list {
    display: grid;
    gap: 10px;
}

.how-item {
    border-radius: 16px;
    padding: 12px;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.how-n {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 1100;
    color: rgba(233, 233, 243, 0.98);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.how-t {
    font-weight: 1100;
    font-size: 13px;
}

.how-s {
    margin-top: 2px;
    font-size: 12px;
    color: rgba(233, 233, 243, 0.68);
    font-weight: 800;
}

.how-item-green {
    background: rgba(0, 233, 168, 0.08);
    border-color: rgba(0, 233, 168, 0.16);
}

.how-item-blue {
    background: rgba(71, 123, 255, 0.09);
    border-color: rgba(71, 123, 255, 0.18);
}

.how-item-purple {
    background: rgba(255, 197, 54, 0.08);
    border-color: rgba(255, 197, 54, 0.16);
}

.how-item-yellow {
    background: rgba(255, 197, 54, 0.08);
    border-color: rgba(255, 197, 54, 0.16);
}

.pref-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pref-row:first-of-type {
    border-top: none;
    padding-top: 0;
}

.pref-left {
    display: grid;
    gap: 2px;
}

.pref-title {
    font-weight: 1100;
    font-size: 13px;
}

.pref-sub {
    font-size: 11px;
    color: rgba(233, 233, 243, 0.62);
    font-weight: 800;
}

.toggle {
    width: 44px;
    height: 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    flex: 0 0 auto;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(233, 233, 243, 0.9);
    transition: transform 160ms ease;
}

.toggle[data-on="true"] {
    background: rgba(255, 197, 54, 0.24);
    border-color: rgba(255, 197, 54, 0.24);
}

.toggle[data-on="true"]::after {
    transform: translateX(18px);
    background: rgba(255, 255, 255, 0.95);
}

.settings-actions {
    display: grid;
    gap: 10px;
}

.settings-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.settings-item {
    border-radius: 16px;
    padding: 12px;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: inherit;
}

.settings-item-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(233, 233, 243, 0.92);
}

.settings-item-txt {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.settings-item-k {
    font-size: 11px;
    font-weight: 900;
    color: rgba(233, 233, 243, 0.68);
}

.settings-item-v {
    font-weight: 1100;
    color: rgba(233, 233, 243, 0.96);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.settings-badge {
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 1100;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(233, 233, 243, 0.92);
}

.settings-badge[data-status="verified"] {
    background: rgba(0, 233, 168, 0.12);
    border-color: rgba(0, 233, 168, 0.22);
    color: rgba(210, 255, 243, 0.95);
}

.settings-badge[data-status="not verified"] {
    background: rgba(255, 197, 54, 0.12);
    border-color: rgba(255, 197, 54, 0.22);
    color: rgba(255, 232, 175, 0.95);
}

.settings-badge[data-status="rejected"] {
    background: rgba(233, 31, 99, 0.12);
    border-color: rgba(233, 31, 99, 0.22);
    color: rgba(255, 205, 220, 0.95);
}

.settings-badge[data-status="under review"] {
    background: rgba(71, 123, 255, 0.12);
    border-color: rgba(71, 123, 255, 0.22);
    color: rgba(210, 225, 255, 0.95);
}

.settings-arrow {
    opacity: 0.65;
    font-size: 20px;
    padding: 0 2px;
}

.settings-item-logout .settings-item-ico {
    background: rgba(233, 31, 99, 0.12);
    border-color: rgba(233, 31, 99, 0.22);
    color: rgba(255, 205, 220, 0.95);
}

@media (max-width: 820px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }
}