:root {
    /* === WHITE-LABEL VARIABLES — edit these to rebrand === */
    --brand-name: "noname";
    --accent: #C9A96E;
    --accent-light: #E8D5A3;
    --accent-glow: rgba(201, 169, 110, 0.25);
    --bg: #0A0A0B;
    --surface: rgba(255,255,255,0.04);
    --surface-hover: rgba(255,255,255,0.07);
    --border: rgba(255,255,255,0.08);
    --border-accent: rgba(201, 169, 110, 0.3);
    --text-primary: #F5F0E8;
    --text-secondary: rgba(245, 240, 232, 0.45);
    --text-muted: rgba(245, 240, 232, 0.25);
    --card-bg: linear-gradient(135deg, #1a2a1a 0%, #0d1a0d 40%, #111 100%);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    /* ── Semantic status colors — shared across all themes ── */
    --success: #6DC87A;
    --success-bg: rgba(109, 200, 122, 0.08);
    --success-border: rgba(109, 200, 122, 0.2);
    --warning: #F7931A;
    --warning-bg: rgba(247, 147, 26, 0.08);
    --warning-border: rgba(247, 147, 26, 0.2);
    --danger: #E07070;
    --danger-bg: rgba(224, 112, 112, 0.08);
    --danger-border: rgba(224, 112, 112, 0.2);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
}

/* Background ambient */
    body::before {
        content: '';
        position: fixed;
        top: -30%;
        left: -20%;
        width: 70%;
        height: 60%;
        background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    body::after {
        content: '';
        position: fixed;
        bottom: -20%;
        right: -20%;
        width: 60%;
        height: 50%;
        background: radial-gradient(ellipse, rgba(100,180,120,0.04) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }



/* Main Layout */
.phone {
    position: relative;
    top: 25px;
    width: 100%;
    max-width: 390px;
    min-height: calc(100vh - 25px - 70px);
    min-height: calc(100dvh - 25px - 70px);
    z-index: 1;
    padding-bottom: 140px;
    overflow: hidden;
}


.back-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 70px;
}

    .back-btn:hover {
        background: var(--surface-hover);
        color: var(--text-primary);
    }


/* ── TOP BAR ── */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 24px 0;
}

.topbar-brand {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

    .topbar-brand span {
        color: var(--accent);
    }


.topbar-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top:70px;
}


.topbar-title {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}


.topbar-right {
    width: 36px;
}


.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

    .icon-btn:hover {
        background: var(--surface-hover);
        color: var(--text-primary);
    }

.avatar-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #8B6A3A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0A0A0B;
    letter-spacing: 0.05em;
}

/* ── BALANCE SECTION ── */
.balance-section {
    padding: 36px 24px 28px;
}

.balance-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.balance-amount {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 4px;
    animation: fadeUp 0.6s ease both;
}

.balance-currency {
    font-family: 'Syne', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--accent);
}

.balance-change {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    animation: fadeUp 0.6s 0.1s ease both;
}

    .balance-change .badge {
        font-size: 11px;
        font-weight: 500;
        padding: 2px 8px;
        border-radius: 100px;
        background: rgba(100,200,120,0.12);
        color: #6DC87A;
        border: 1px solid rgba(100,200,120,0.2);
    }

/* ── ACTION BUTTONS ── */
.actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 24px 32px;
    animation: fadeUp 0.6s 0.15s ease both;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.action-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

    .action-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.25s ease;
    }

.action-item:hover .action-icon {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

    .action-item:hover .action-icon::before {
        opacity: 1;
    }

.action-icon svg {
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.action-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* ── SECTION HEADER ── */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 14px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.section-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.05em;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

    .section-link:hover {
        opacity: 1;
    }

/* ── CARDS CAROUSEL ── */
.cards-scroll {
    display: flex;
    gap: 14px;
    padding: 0 24px 32px;
    overflow-x: auto;
    scrollbar-width: none;
    animation: fadeUp 0.6s 0.2s ease both;
}

    .cards-scroll::-webkit-scrollbar {
        display: none;
    }

/* Physical Card */
.wallet-card {
    flex: 0 0 280px;
    height: 170px;
    border-radius: 20px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .wallet-card:hover {
        transform: scale(1.02) translateY(-2px);
    }

    .wallet-card.main-card {
        background: var(--card-bg);
        border: 1px solid rgba(100,180,100,0.15);
    }

    .wallet-card.add-card {
        background: var(--surface);
        border: 1px dashed var(--border);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex: 0 0 120px;
    }

        .wallet-card.add-card .plus {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1.5px solid var(--border-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

        .wallet-card.add-card span {
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            text-align: center;
            letter-spacing: 0.05em;
        }

    /* Card noise texture */
    .wallet-card.main-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
        opacity: 0.4;
    }

    /* Card glow blob */
    .wallet-card.main-card::after {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(100,200,100,0.2) 0%, transparent 70%);
    }

.card-type {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    position: relative;
    z-index: 1;
}

.card-balance {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

.card-balance-currency {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}

.card-footer {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1;
}

.card-number {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    font-family: 'DM Sans', sans-serif;
}

.card-chip {
    display: flex;
    align-items: center;
    gap: 4px;
}

.chip-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0.9;
}

    .chip-dot:first-child {
        background: #EB001B;
    }

    .chip-dot:last-child {
        background: #F79E1B;
        margin-left: -10px;
    }

/* Card brand name */
.card-brand {
    position: absolute;
    bottom: 52px;
    left: 22px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.2);
    text-transform: lowercase;
    z-index: 1;
}

/* ── CRYPTO ASSETS ── */
.assets-list {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: fadeUp 0.6s 0.25s ease both;
    margin-bottom: 20px;
}

.asset-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

    .asset-row::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        border-radius: 0 2px 2px 0;
        opacity: 0;
        transition: opacity 0.2s;
    }

    .asset-row:hover {
        background: var(--surface-hover);
    }

        .asset-row:hover::before {
            opacity: 1;
        }

    .asset-row.btc::before {
        background: #F7931A;
    }

    .asset-row.eth::before {
        background: #627EEA;
    }

    .asset-row.arb::before {
        background: #FFFFFF;
    }

    .asset-row.usdt::before {
        background: #26A17B;
    }

    .asset-row.usdc::before {
        background: #627EEA;
    }

    .asset-row + .asset-row {
        margin-top: 4px;
    }

.asset-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

    .asset-icon.btc {
        background: rgba(247,147,26,0.12);
        color: #F7931A;
        border: 1px solid rgba(247,147,26,0.2);
    }

    .asset-icon.eth {
        background: rgba(98,126,234,0.12);
        color: #627EEA;
        border: 1px solid rgba(98,126,234,0.2);
    }

    .asset-icon.usdt {
        background: rgba(38,161,123,0.12);
        color: #26A17B;
        border: 1px solid rgba(38,161,123,0.2);
    }

    .asset-icon.arb {
        background: rgba(234,234,234,0.12);
        color: #FFFFFF;
        border: 1px solid rgba(234,234,234,0.2);
    }

    .asset-icon.usdc {
        background: rgba(98,126,234,0.12);
        color: #627EEA;
        border: 1px solid rgba(98,126,234,0.2);
    }

.asset-info {
    flex: 1;
}

.asset-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.asset-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 1px;
}

.asset-right {
    text-align: right;
}

.asset-value {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.asset-change {
    font-size: 12px;
    margin-top: 1px;
}

    .asset-change.up {
        color: #6DC87A;
    }

    .asset-change.down {
        color: #E07070;
    }

/* ── CTA EMPTY STATE ── */
.cta-banner {
    margin: 28px 24px 0;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, rgba(201,169,110,0.03) 100%);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    animation: fadeUp 0.6s 0.3s ease both;
}

    .cta-banner:hover {
        background: rgba(201,169,110,0.12);
    }

.cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.cta-text .cta-title {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-light);
}

.cta-text .cta-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.cta-arrow {
    margin-left: auto;
    color: var(--accent);
    opacity: 0.6;
}

/* ── BOTTOM NAV ── */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 390px;
    padding: 12px 25px 12px;
    background: linear-gradient(to top, rgba(10,10,11,0.98) 0%, rgba(10,10,11,0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    color: var(--text-muted);
}

    .nav-item.active {
        color: var(--accent);
    }

    .nav-item:hover {
        color: var(--text-secondary);
    }

.nav-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-item.active .nav-label {
    color: var(--accent);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mini sparkline placeholder */
.sparkline {
    height: 28px;
    opacity: 0.4;
}



/* ── SPLASH SCREEN ── */
.splash {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .splash.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.splash-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeUp 0.6s ease both;
}

.splash-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 4px;
}

.splash-name {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-transform: lowercase;
}

    .splash-name span {
        color: var(--accent);
    }

.splash-tagline {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.splash-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: fadeUp 0.6s 0.2s ease both;
}

.splash-bar-track {
    width: 160px;
    height: 2px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
}

.splash-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 100px;
    animation: loadBar 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.splash-status {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.splash-dots span {
    display: inline-block;
    animation: blink 1.2s infinite;
}

    .splash-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .splash-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes loadBar {
    0% {
        width: 0%;
    }

    30% {
        width: 40%;
    }

    60% {
        width: 70%;
    }

    85% {
        width: 88%;
    }

    100% {
        width: 100%;
    }
}

@keyframes blink {
    0%, 80%, 100% {
        opacity: 0.3;
    }

    40% {
        opacity: 1;
    }
}



/* ── QUICK AMOUNTS ── */
.quick-amounts {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 24px 0;
    animation: fadeUp 0.4s 0.05s ease both;
    flex-wrap: wrap;
}

.quick-btn {
    padding: 7px 16px;
    border-radius: 100px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.04em;
}

    .quick-btn:hover,
    .quick-btn.active {
        background: var(--accent-glow);
        border-color: var(--border-accent);
        color: var(--accent);
    }

/* ── CRYPTO SELECTOR ── */
.section {
    padding: 24px 24px 0;
    animation: fadeUp 0.4s 0.1s ease both;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* Crypto chips */
.crypto-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.crypto-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    min-width: 110px;
}

    .crypto-chip:hover {
        border-color: var(--border-accent);
        background: var(--surface-hover);
    }

    .crypto-chip.active {
        background: var(--accent-glow);
        border-color: var(--border-accent);
    }

.crypto-chip-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

    .crypto-chip-icon.usdt {
        background: rgba(38,161,123,0.15);
    }

    .crypto-chip-icon.usdc {
        background: rgba(39,117,202,0.15);
    }

    .crypto-chip-icon.btc {
        background: rgba(247,147,26,0.15);
    }

    .crypto-chip-icon.eth {
        background: rgba(98,126,234,0.15);
    }

.crypto-chip-info {
    flex: 1;
}

.crypto-chip-name {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

.crypto-chip-full {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 1px;
}

.crypto-chip-price {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-align: right;
}

    .crypto-chip-price.loading {
        color: var(--text-muted);
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
    }

/* ── NETWORK SELECTOR ── */
.network-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.network-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

    .network-chip:hover {
        border-color: var(--border-accent);
        color: var(--text-primary);
    }

    .network-chip.active {
        background: var(--accent-glow);
        border-color: var(--border-accent);
        color: var(--accent);
        font-weight: 600;
    }

.network-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.network-chip.tron .network-dot {
    background: #E84142;
}

.network-chip.eth .network-dot {
    background: #627EEA;
}

.network-chip.bnb .network-dot {
    background: #F3BA2F;
}

.network-chip.arbitrum .network-dot {
    background: #28A0F0;
}

.network-chip.polygon .network-dot {
    background: #8247E5;
}

.network-chip.bitcoin .network-dot {
    background: #F7931A;
}

.network-fee-badge {
    margin-left: auto;
    padding: 1px 6px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fee-low {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid var(--success-border);
}

.fee-mid {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid var(--warning-border);
}

.fee-high {
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid var(--danger-border);
}




.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}



/* ── INPUT & SELECT ───────────────────────────────────────────────────────── */
.kyc-input {
    flex: 1;
    background: #111113 !important;
    border: none;
    outline: none;
    padding: 16px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 23px;
    font-weight: 400;
    color: #F5F0E8 !important;
    caret-color: var(--accent);
    width: 100%;
    min-height: 54px;
    border-radius: var(--radius-md);
    background: transparent;
    border: none;
    height: 54px;
    font-size: 23px;
    padding: 10px;
    color: white;
}

    .kyc-input::placeholder {
        color: rgba(245, 240, 232, 0.22);
        font-weight: 300;
    }

    /* Fix Chrome/Safari autofill white/yellow background */
    .kyc-input:-webkit-autofill,
    .kyc-input:-webkit-autofill:hover,
    .kyc-input:-webkit-autofill:focus,
    .kyc-input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0px 1000px #111113 inset !important;
        -webkit-text-fill-color: #F5F0E8 !important;
        caret-color: var(--accent) !important;
        transition: background-color 5000s ease-in-out 0s;
    }

.kyc-select {
    flex: 1;
    background: #111113 !important;
    border: none;
    outline: none;
    padding: 16px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #F5F0E8 !important;
    width: 100%;
    min-height: 54px;
    cursor: pointer;
    border-radius: var(--radius-md);
    /* Remove native arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .kyc-select option {
        background: #1a1a2e;
        color: var(--text-primary);
        padding: 8px;
    }

.kyc-input-icon {
    padding-right: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
}