:root {
    --bg: #05030a;
    --panel: rgba(255, 255, 255, .05);
    --panel2: rgba(0, 0, 0, .28);
    --border: rgba(255, 255, 255, .12);
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .60);
    --muted2: rgba(255, 255, 255, .45);
    --purple: #a855f7;
    --purple2: #c084fc;
    --shadow: 0 0 120px rgba(168, 85, 247, .22);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background:
        radial-gradient(700px 700px at 50% -100px, rgba(168, 85, 247, .18), transparent 60%),
        radial-gradient(520px 520px at -10% 30%, rgba(217, 70, 239, .10), transparent 55%),
        radial-gradient(720px 720px at 110% 120%, rgba(168, 85, 247, .12), transparent 60%),
        var(--bg);
    /* Prevent tiny layout overflows from creating horizontal scroll on mobile */
    overflow-x: hidden;
}
/* Lock background scroll when panels/modals are open (mobile-friendly) */
.body-lock {
    overflow: hidden;
    position: fixed;
    width: 100%;
    touch-action: none;
}


button,
input {
    font: inherit
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: 0 0 60px rgba(168, 85, 247, .25);
    font-weight: 900;
    color: var(--purple2);
}




.brand-name span {
    color: var(--purple2)
}

/* Header logo text image */
.topbar .brand-name img {
    height: 55px;
    /* matches .brand-mark (40px) */
    width: auto;
    max-width: 240px;
    /* prevents it from pushing nav */
    display: block;
    object-fit: contain;
}

/* Make the two-line stack tighter */
.brand-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.05;
}

/* Slightly smaller on small screens */
@media (max-width: 520px) {
    .topbar .brand-name img {
        height: 32px;
        max-width: 180px;
    }
}

/* Footer logo */
.footer .brand-logo-text {
    height: 35px;
    /* readable in footer */
    width: auto;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    opacity: 0.9;
}

@media (max-width: 520px) {
    .footer .brand-logo-text {
        /* Fix: accidental huge value that broke the footer on mobile */
        height: 28px;
    }
}



.brand-sub {
    font-size: 12px;
    color: var(--muted2)
}

.nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
    justify-content: flex-end
}

.nav button {
    padding: 9px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
    cursor: pointer;
    transition: .15s;
}

.nav button:hover {
    background: rgba(255, 255, 255, .09)
}

.convert {
    flex: 1;
    max-width: 560px;
    min-width: 260px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 10px 12px;
}

.convert-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px
}

.convert-top .label {
    font-weight: 800;
    color: var(--muted)
}

.convert-top .hint {
    color: var(--muted2)
}

.convert-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 8px
}

.convert-row input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .28);
    color: var(--text);
    outline: none;
}

.convert-row input:focus {
    box-shadow: 0 0 0 3px rgba(168, 85, 247, .22)
}

.mini-btn {
    width: 44px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .28);
    color: var(--text);
    cursor: pointer;
    transition: .15s;
}

.mini-btn:hover {
    background: rgba(255, 255, 255, .06)
}

.convert-bottom {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
}

.strong {
    color: var(--text);
    font-weight: 800
}

.chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.chip {
    padding: 5px 8px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .05);
}

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 18px;
}

.hero {
    text-align: center
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 0 50px rgba(168, 85, 247, .16);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple2);
    box-shadow: 0 0 18px rgba(168, 85, 247, .7);
}

.pill-text {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .32em;
    color: var(--muted)
}

.hero h1 {
    margin: 18px 0 8px;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -1px;
}

.hero strong {
    font-weight: 950
}

.glow {
    color: var(--purple2);
    text-shadow: 0 0 40px rgba(168, 85, 247, .55);
}

.hero p {
    margin: 0;
    color: var(--muted);
    max-width: 720px;
    margin-inline: auto
}

.grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr minmax(360px, 440px);
    gap: 16px;
    align-items: start;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap
    }

    .brand {
        min-width: auto
    }

    .convert {
        order: 3;
        width: 100%;
        max-width: none
    }

    .grid {
        grid-template-columns: 1fr
    }
}

.card {
    border-radius: 26px;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.swap-card {
    padding: 18px
}

.swap-panel {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.swap-block {
    padding: 10px 10px 14px;
    border-radius: 22px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .08)
}

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

.row-label {
    font-weight: 800;
    color: var(--muted)
}

.row-usd {
    font-size: 12px;
    color: var(--muted2)
}

.row-main {
    display: flex;
    gap: 10px;
    margin-top: 10px
}

/* Mobile: stack amount + coin selector to prevent horizontal overflow */
@media (max-width: 520px) {
    .row-main {
        flex-direction: column;
    }

    .dd {
        width: 100%;
    }
}

.row-main input {
    flex: 1;
    padding: 14px 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .30);
    color: var(--text);
    outline: none;
    font-size: 20px;
    font-weight: 900;
}

.row-main input:focus {
    box-shadow: 0 0 0 3px rgba(168, 85, 247, .22)
}

.row-mini {
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted2)
}

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

.flip-btn {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .30);
    color: var(--text);
    cursor: pointer;
    box-shadow: 0 0 60px rgba(168, 85, 247, .22);
    transition: .15s;
    font-size: 20px;
}

.flip-btn:hover {
    background: rgba(255, 255, 255, .06)
}

.addr-help {
    font-size: 12px;
    color: var(--muted2)
}

.addr {
    width: 100%;
    padding: 13px 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .30);
    color: var(--text);
    outline: none;
}

.addr:focus {
    box-shadow: 0 0 0 3px rgba(168, 85, 247, .22)
}

.cta {
    margin-top: 6px;
    width: 100%;
    padding: 16px 16px;
    border-radius: 18px;
    border: 1px solid rgba(192, 132, 252, .30);
    background: rgba(168, 85, 247, .30);
    color: var(--text);
    font-weight: 950;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 120px rgba(168, 85, 247, .28);
    transition: .15s;
}

.cta:disabled {
    opacity: .45;
    cursor: not-allowed;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: none;
}

.cta:not(:disabled):hover {
    background: rgba(168, 85, 247, .40)
}

.disclaimer {
    font-size: 12px;
    color: var(--muted2)
}

.steps-card {
    padding: 18px;
    /* Let the card shrink on small screens to avoid horizontal overflow */
    width: 100%;
    max-width: 100%;
}

/* Keep the “steps” card nicely sized only on wider layouts */
@media (min-width: 981px) {
    .steps-card {
        max-width: 440px;
    }
}

.steps-title {
    font-weight: 950;
    margin-bottom: 10px
}

.steps {
    display: grid;
    gap: 14px
}

.step {
    display: flex;
    gap: 12px
}

.step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(192, 132, 252, .14);
    box-shadow: 0 0 40px rgba(168, 85, 247, .22);
    margin-top: 3px;
}

.step-t {
    font-weight: 800
}

.step-d {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45
}

.section-title {
    text-align: center
}

.section-title h2 {
    margin: 14px 0 0;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 950;
}

.red {
    color: var(--purple2);
    text-shadow: 0 0 40px rgba(168, 85, 247, .55)
}

.faq {
    max-width: 820px;
    margin: 22px auto 0;
    display: grid;
    gap: 12px
}

.faq-item {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--panel);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    padding: 16px 16px;
    background: transparent;
    color: var(--text);
    border: 0;
    cursor: pointer;
    font-weight: 850;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-q::after {
    content: "+";
    color: var(--muted);
    font-size: 18px;
    margin-left: 10px;
}

.faq-item.open .faq-q::after {
    content: "−"
}


.faq-item.open .faq-a {
    display: block
}

.text-card {
    max-width: 820px;
    margin: 22px auto 0;
    padding: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.footer {
    text-align: center;
    margin-top: 32px;
    color: var(--muted2);
    font-size: 13px;
}

/* Left socials */
.socials {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 60;
}

/* Mobile: hide floating socials so they don't cover content */
@media (max-width: 520px) {
    .socials {
        display: none;
    }
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    box-shadow: 0 0 60px rgba(168, 85, 247, .18);
    transition: .15s;
    text-decoration: none;
}

.social-btn:hover {
    background: rgba(255, 255, 255, .10)
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, .92);
}

/* Custom dropdown */
.dd {
    /* Desktop default; overridden on mobile above */
    width: 240px;
    position: relative;
}

.dd-btn {
    width: 100%;
    padding: 12px 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .30);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

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

.dd-title {
    font-weight: 850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.dd-sub {
    font-size: 12px;
    color: var(--muted2)
}

.dd-caret {
    color: var(--muted)
}

.dd-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(10, 7, 20, .96);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .60), 0 0 80px rgba(168, 85, 247, .18);
    overflow: hidden;
    display: none;
    z-index: 80;
}

.dd.open .dd-menu {
    display: block
}

.dd-search {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dd-search input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    outline: none;
}

.dd-search input:focus {
    box-shadow: 0 0 0 3px rgba(168, 85, 247, .18)
}

.dd-list {
    max-height: 260px;
    overflow: auto
}

.dd-item {
    width: 100%;
    padding: 12px 12px;
    background: transparent;
    border: 0;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dd-item:hover {
    background: rgba(255, 255, 255, .06)
}

.coin-ic {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    display: block;
}

.coin-meta {
    display: flex;
    flex-direction: column;
    min-width: 0
}

.coin-name {
    font-weight: 850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.coin-sym {
    font-size: 12px;
    color: var(--muted2)
}

.fiat-inline {
    margin-left: 6px;
    display: flex;
    align-items: center;
}

.fiat-select {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .92);
    outline: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 12px;
}

.fiat-select:focus {
    box-shadow: 0 0 0 3px rgba(168, 85, 247, .22);
}

.faq-a {
    display: none;
    padding: 0 16px 16px;
    color: rgba(255, 255, 255, .60);
    line-height: 1.55;
}

.faq-item.open .faq-a {
    display: block
}

.faq-q::after {
    content: "+";
}

.faq-item.open .faq-q::after {
    content: "−";
}

.hero-title {
    margin: 18px 0 8px;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -1px;
    text-align: center;
}

#typewriter {
    color: #c084fc;
    text-shadow: 0 0 40px rgba(168, 85, 247, .55);
}

.cursor {
    display: inline-block;
    margin-left: 6px;
    color: rgba(255, 255, 255, .75);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Fix native select dropdown (opened list) */
.fiat-select {
    background-color: rgba(15, 10, 30, 0.95);
    color: rgba(255, 255, 255, 0.95);
}

/* Options inside the dropdown */
.fiat-select option {
    background-color: #0b0715;
    color: white;
}

/* Highlighted option (hover / selected) */
.fiat-select option:checked,
.fiat-select option:hover {
    background-color: #6d28d9;
    /* purple */
    color: white;
}

/* Track Orders button (top-right corner) */
.track-btn {
    margin-left: 10px;
    padding: 9px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .92);
    font-weight: 850;
    cursor: pointer;
    transition: .15s;
    white-space: nowrap;
}

.track-btn:hover {
    background: rgba(255, 255, 255, .10);
}

/* Backdrop with blur */
.track-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);
}

/* Panel (doesn't cover whole screen) */
.track-panel {
    position: fixed;
    top: 14px;
    right: 14px;
    /* ✅ moved to right */
    bottom: 14px;
    width: min(420px, calc(100vw - 28px));
    z-index: 1000;

    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(10, 7, 20, .92);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .65), 0 0 90px rgba(168, 85, 247, .18);

    transform: translateX(110%);
    /* ✅ slide from right */
    transition: transform .22s ease;
}

.track-panel.open {
    transform: translateX(0);
}


.track-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.track-title {
    font-weight: 950;
    font-size: 18px;
    color: rgba(255, 255, 255, .95);
}

.track-sub {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
}

.track-close {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .9);
    cursor: pointer;
    transition: .15s;
}

.track-close:hover {
    background: rgba(255, 255, 255, .10);
}

.track-body {
    padding: 14px 16px 16px;
    display: grid;
    gap: 10px;
}

.track-label {
    font-size: 12px;
    font-weight: 850;
    color: rgba(255, 255, 255, .70);
}

.track-input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .30);
    color: rgba(255, 255, 255, .92);
    outline: none;
}

.track-input:focus {
    box-shadow: 0 0 0 3px rgba(168, 85, 247, .22);
}

.track-search {
    width: 100%;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(192, 132, 252, .30);
    background: rgba(168, 85, 247, .26);
    color: rgba(255, 255, 255, .92);
    font-weight: 950;
    cursor: pointer;
    transition: .15s;
}

.track-search:hover {
    background: rgba(168, 85, 247, .34);
}

.track-result {
    margin-top: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
    padding: 12px;
    min-height: 92px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    line-height: 1.5;
}

.track-empty {
    color: rgba(255, 255, 255, .55);
}

.track-help {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, .50);
}

/* Exchange modal backdrop */
.ex-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, .40);
    backdrop-filter: blur(12px);
}

/* Exchange modal */
.ex-modal {
    position: fixed;
    z-index: 1101;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.98);
    width: min(920px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    overflow: auto;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(10, 7, 20, .92);
    backdrop-filter: blur(16px);
    box-shadow: 0 28px 120px rgba(0, 0, 0, .70), 0 0 90px rgba(168, 85, 247, .18);

    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.ex-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.ex-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.ex-title {
    font-weight: 950;
    font-size: 18px;
    color: rgba(255, 255, 255, .95);
}

.ex-sub {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
}

.ex-close {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .9);
    cursor: pointer;
    transition: .15s;
}

.ex-close:hover {
    background: rgba(255, 255, 255, .10);
}

.ex-body {
    padding: 14px 16px 16px;
}

.ex-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1.1fr .9fr;
}

@media (max-width: 900px) {
    .ex-grid {
        grid-template-columns: 1fr;
    }
}

.ex-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
    padding: 14px;
}

.ex-kv {
    margin-bottom: 12px;
}

.ex-k {
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, .65);
}

.ex-v {
    margin-top: 6px;
    color: rgba(255, 255, 255, .86);
}

.ex-strong {
    font-weight: 950;
    font-size: 18px;
}

.ex-muted {
    margin-left: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
}

.ex-address-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ex-address {
    flex: 1;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .30);
    color: rgba(255, 255, 255, .92);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ex-mini {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .92);
    font-weight: 900;
    cursor: pointer;
    transition: .15s;
}

.ex-mini:hover {
    background: rgba(255, 255, 255, .10);
}

.ex-qr {
    margin-top: 10px;
}

.ex-qr-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    border: 1px dashed rgba(255, 255, 255, .18);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .55);
    background: rgba(0, 0, 0, .25);
}

.ex-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(192, 132, 252, .30);
    background: rgba(168, 85, 247, .26);
    color: rgba(255, 255, 255, .92);
    font-weight: 950;
    cursor: pointer;
    transition: .15s;
}

.ex-btn:hover {
    background: rgba(168, 85, 247, .34);
}

.ex-btn.secondary {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.ex-btn.secondary:hover {
    background: rgba(255, 255, 255, .10);
}

.ex-warn {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .20);
    color: rgba(255, 255, 255, .70);
    font-size: 12px;
    line-height: 1.5;
}

.ex-note {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .50);
}

/* Exchange QR image */
.ex-qr-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .25);
}

/* Toast notifications (bottom-right) */
.toast-host {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    width: min(360px, calc(100vw - 32px));
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(10, 7, 20, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .55), 0 0 70px rgba(168, 85, 247, .16);
    padding: 12px 12px;
    color: rgba(255, 255, 255, .88);
    pointer-events: auto;

    transform: translateY(14px);
    opacity: 0;
    transition: transform .18s ease, opacity .18s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast .t-title {
    font-weight: 950;
    font-size: 13px;
}

.toast .t-msg {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.35;
}

.toast.success {
    border-color: rgba(34, 197, 94, .35);
}

.toast.error {
    border-color: rgba(239, 68, 68, .35);
}

.toast.info {
    border-color: rgba(192, 132, 252, .35);
}


/* Fix Steps text squish in flex rows */
.step>div {
    min-width: 0;
}

.step-t,
.step-d {
    overflow-wrap: anywhere;
    word-break: break-word;
}


.brand-logo-text {
    height: 200px;
    width: auto;
    opacity: 0.85;
}

.brand-logo {
    height: 5000px;
    width: auto;
    opacity: 0.85;
}
