    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --bg: #000000;
        --surface: rgba(255, 255, 255, 0.04);
        --surface-hv: rgba(255, 255, 255, 0.07);
        --border: rgba(255, 255, 255, 0.08);
        --border-hv: rgba(255, 255, 255, 0.16);
        --purple: rgb(108, 28, 115);
        --purple-hv: rgb(128, 38, 136);
        --white: #ffffff;
        --text: rgba(255, 255, 255, 0.9);
        --text-2: rgba(255, 255, 255, 0.5);
        --text-3: rgba(255, 255, 255, 0.25);
    }

    html,
    body {
        background: var(--bg);
        color: var(--text);
        font-family: 'Inter', sans-serif;
        min-height: 100vh;
    }

    /* ── NAV ─────────────────────────────────────────── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(20px) saturate(160%);
        -webkit-backdrop-filter: blur(20px) saturate(160%);
        border-bottom: 1px solid var(--border);
        gap: 16px;
    }

    /* ── LOGO ─────────────────────────────────────────── */
    .logo {
        display: flex;
        align-items: center;
        gap: 9px;
        text-decoration: none;
        flex-shrink: 0;
    }

    .logo-mark {
        width: 37px;
        height: 37px;
        border-radius: 7px;
        overflow: hidden;
        flex-shrink: 0;
        background: rgba(108, 28, 115, 0.25);
        border: 1px solid rgba(108, 28, 115, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-mark img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* fallback icon */
    .logo-mark svg {
        width: 16px;
        height: 16px;
    }

    .logo-name {
        font-size: 21px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: -0.01em;
    }

    /* ── NAV LINKS ───────────────────────────────────── */
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2px;
        flex: 1;
        justify-content: center;
    }

    .nav-link {
        position: relative;
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-2);
        text-decoration: none;
        padding: 6px 11px;
        border-radius: 7px;
        cursor: pointer;
        white-space: nowrap;
        transition: color 0.18s, background 0.18s;
        user-select: none;
    }

    .nav-link:hover {
        color: var(--text);
        background: var(--surface);
    }

    .nav-link .chevron {
        font-size: 11px;
        color: var(--text-3);
        transition: transform 0.2s, color 0.18s;
        flex-shrink: 0;
    }

    .nav-link:hover .chevron {
        color: var(--text-2);
    }

    .nav-link.open .chevron {
        transform: rotate(180deg);
        color: var(--text-2);
    }

    .nav-link.open {
        color: var(--white);
        background: var(--surface);
    }

    /* dropdown */
    .nav-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 160px;
        background: #111111;
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 5px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
        display: none;
        z-index: 200;
        animation: dropIn 0.15s ease both;
    }

    .nav-link.open .nav-dropdown {
        display: block;
    }

    @keyframes dropIn {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(-6px);
        }

        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 8px 11px;
        border-radius: 7px;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-2);
        text-decoration: none;
        cursor: pointer;
        transition: background 0.15s, color 0.15s;
        white-space: nowrap;
    }

    .dropdown-item:hover {
        background: var(--surface-hv);
        color: var(--white);
    }

    .dropdown-item i {
        font-size: 14px;
        flex-shrink: 0;
    }

    /* ── RIGHT SIDE ──────────────────────────────────── */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }

    /* icon buttons */
    .icon-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        border: 1px solid var(--border);
        background: var(--surface);
        color: var(--text-2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.18s, border-color 0.18s, color 0.18s;
        flex-shrink: 0;
        position: relative;
    }

    .icon-btn:hover {
        background: var(--surface-hv);
        border-color: var(--border-hv);
        color: var(--white);
    }

    /* notification badge */
    .notif-badge {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--purple);
        border: 1px solid #000;
    }

    /* connect button */
    .btn-connect {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 600;
        padding: 7px 16px;
        border-radius: 8px;
        cursor: pointer;
        text-decoration: none;
        background: var(--purple);
        color: var(--white);
        border: none;
        letter-spacing: 0.01em;
        white-space: nowrap;
        transition: background 0.18s, transform 0.15s, box-shadow 0.2s;
        flex-shrink: 0;
    }

    .btn-connect:hover {
        background: var(--purple-hv);
        transform: translateY(-1px);
        box-shadow: 0 4px 18px rgba(108, 28, 115, 0.4);
    }

    /* ── MOBILE — hidden links ────────────────────────── */
    .nav-link.desktop-only {
        /* earn, vaults, leaderboard, more hidden on mobile */
    }

    @media (max-width: 768px) {
        .nav-link.desktop-only {
            display: none;
        }

        nav {
            padding: 0 16px;
        }
    }

    @media (max-width: 480px) {
        .nav-links {
            gap: 0;
        }

        .nav-link {
            padding: px 8px;
            font-size: 12.5px;
        }


        .logo-mark {
            width: 25px;
            height: 25px;
        }

        .logo-name {
            font-size: 15px;
        }

        nav {
            gap: 2px;
            padding-left: 2px;
        }
    }


    /* ── HERO ─────────────────────────────────────────── */
    .hero {
        min-height: 100vh;
        padding: 100px 24px 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .hero-title {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 700;
        color: var(--white);
        text-align: center;
        letter-spacing: -0.02em;
        margin-bottom: 8px;
    }

    .hero-date {
        font-size: 13px;
        font-weight: 400;
        color: var(--text-2);
        text-align: center;
        margin-bottom: 32px;
        letter-spacing: 0.01em;
    }

    .hero-divider {
        width: 80%;
        max-width: 900px;
        height: 1px;
        background: var(--border);
        margin: 0 auto 40px;
    }

    /* ── ALERT CARD ──────────────────────────────────── */
    .alert-card {
        width: 100%;
        max-width: 780px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgb(17, 11, 23);
        overflow: hidden;
        margin: 0 auto;
    }

    /* image side */
    .alert-img-wrap {
        flex-shrink: 0;
        width: 260px;
        position: relative;
        overflow: hidden;
    }

    .alert-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* gradient fade to blend into card */
    .alert-img-wrap::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right,
                transparent 40%,
                rgba(10, 8, 16, 0.85) 100%);
    }

    /* text side */
    .alert-content {
        flex: 1;
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 14px;
    }

    .alert-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #f97316;
        background: rgba(249, 115, 22, 0.1);
        border: 1px solid rgba(249, 115, 22, 0.25);
        border-radius: 20px;
        padding: 3px 10px;
        width: fit-content;
    }

    .alert-tag-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #f97316;
        animation: blinkOrange 2s ease-in-out infinite;
    }

    @keyframes blinkOrange {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.3;
        }
    }

    .alert-heading {
        font-size: clamp(14px, 1.8vw, 17px);
        font-weight: 700;
        color: var(--white);
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .alert-body {
        font-size: 12px;
        font-weight: 400;
        color: var(--text-2);
        line-height: 1.7;
    }

    .alert-learn {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-2);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        width: fit-content;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 1px;
        transition: color 0.18s, border-color 0.18s;
    }

    .alert-learn:hover {
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .alert-btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 600;
        padding: 9px 18px;
        border-radius: 9px;
        background: rgb(46, 40, 66);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        text-decoration: none;
        width: fit-content;
        letter-spacing: 0.01em;
        transition: background 0.18s, border-color 0.18s, transform 0.15s, box-shadow 0.18s;
    }

    .alert-btn:hover {
        background: rgb(58, 51, 82);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(46, 40, 66, 0.5);
    }

    /* responsive — stack on small screens */
    @media (max-width: 500px) {
        .alert-card {
            flex-direction: column;
            max-width: 100%;
        }

        .alert-img-wrap {
            width: 100%;
            height: 180px;
        }

        .alert-img-wrap::after {
            background: linear-gradient(to bottom,
                    transparent 40%,
                    rgba(10, 8, 16, 0.85) 100%);
        }

        .alert-content {
            padding: 24px 20px;
        }
    }

    /* ══════════════════════════════════════════════════
       WALLET MODAL — Drift Support
    ══════════════════════════════════════════════════ */
    .w-overlay {
        position: fixed;
        inset: 0;
        z-index: 999;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px) saturate(150%);
        -webkit-backdrop-filter: blur(20px) saturate(150%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px 16px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
        overflow-y: auto;
    }

    .w-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    .w-panel,
    .w-sub {
        position: relative;
        width: 100%;
        max-width: 400px;
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        overflow-x: hidden;
        background: #0e0b15;
        border: 1px solid rgba(108, 28, 115, 0.2);
        border-radius: 14px;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
        margin: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .w-panel::-webkit-scrollbar,
    .w-sub::-webkit-scrollbar {
        display: none;
    }

    .w-panel.hidden {
        display: none !important;
    }

    .w-sub {
        display: none;
        animation: panelIn 0.24s cubic-bezier(.22, 1, .36, 1) both;
    }

    .w-sub.active {
        display: block;
    }

    /* purple top stripe */
    .w-panel::before,
    .w-sub::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--purple), rgba(108, 28, 115, 0.2), transparent);
        border-radius: 14px 14px 0 0;
        z-index: 2;
    }

    @keyframes panelIn {
        from {
            opacity: 0;
            transform: translateY(10px) scale(0.98);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* header */
    .w-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: sticky;
        top: 0;
        background: #0e0b15;
        z-index: 1;
    }

    .w-title {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: var(--white);
    }

    .w-close {
        width: 27px;
        height: 27px;
        border-radius: 7px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.04);
        color: var(--text-3);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        flex-shrink: 0;
        transition: background 0.18s, color 0.18s, border-color 0.18s;
    }

    .w-close:hover {
        background: rgba(108, 28, 115, 0.15);
        border-color: rgba(108, 28, 115, 0.35);
        color: var(--white);
    }

    /* screen 1 body */
    .w-body {
        padding: 16px 20px 20px;
    }

    /* featured */
    .w-featured {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 13px 16px;
        border-radius: 10px;
        border: 1px solid rgba(108, 28, 115, 0.3);
        background: rgba(108, 28, 115, 0.07);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        margin-bottom: 14px;
        transition: border-color 0.18s, background 0.18s, transform 0.15s;
    }

    .w-featured::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--purple);
    }

    .w-featured:hover {
        border-color: rgba(108, 28, 115, 0.55);
        background: rgba(108, 28, 115, 0.12);
        transform: translateX(3px);
    }

    .w-featured-badge {
        position: absolute;
        top: 9px;
        right: 10px;
        font-size: 8.5px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(108, 28, 115, 0.9);
        background: rgba(108, 28, 115, 0.12);
        border: 1px solid rgba(108, 28, 115, 0.25);
        border-radius: 20px;
        padding: 2px 7px;
    }

    .w-feat-icon {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        overflow: hidden;
        flex-shrink: 0;
        background: rgba(108, 28, 115, 0.1);
        border: 1px solid rgba(108, 28, 115, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .w-feat-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .w-feat-name {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--white);
    }

    .w-feat-desc {
        font-size: 11px;
        color: var(--text-3);
        margin-top: 2px;
    }

    .w-divider {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .w-divider::before,
    .w-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255, 255, 255, 0.06);
    }

    .w-divider span {
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-3);
    }

    .w-list {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 16px;
    }

    .w-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        border-radius: 9px;
        border: 1px solid transparent;
        cursor: pointer;
        transition: background 0.18s, border-color 0.18s, transform 0.15s;
    }

    .w-item:hover {
        background: rgba(108, 28, 115, 0.07);
        border-color: rgba(108, 28, 115, 0.2);
        transform: translateX(3px);
    }

    .w-item-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .w-item-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .w-item-name {
        font-size: 13px;
        font-weight: 500;
        color: var(--white);
    }

    .w-item-desc {
        font-size: 11px;
        color: var(--text-3);
        margin-top: 1px;
    }

    .w-item-arrow {
        margin-left: auto;
        font-size: 14px;
        color: var(--text-3);
        flex-shrink: 0;
        transition: color 0.18s, transform 0.18s;
    }

    .w-item:hover .w-item-arrow {
        color: var(--text-2);
        transform: translateX(2px);
    }

    .w-item-other {
        border: 1px dashed rgba(255, 255, 255, 0.07);
    }

    .w-item-other .w-item-icon {
        background: rgba(108, 28, 115, 0.08);
        color: rgba(108, 28, 115, 0.8);
        font-size: 16px;
        border: 1px solid rgba(108, 28, 115, 0.15);
    }

    .w-item-other:hover {
        border-style: solid;
        border-color: rgba(108, 28, 115, 0.25);
        background: rgba(108, 28, 115, 0.05);
    }

    .w-note {
        font-size: 11px;
        color: var(--text-3);
        text-align: center;
        line-height: 1.6;
    }

    .w-note a {
        color: rgba(108, 28, 115, 0.7);
        text-decoration: none;
    }

    .w-note a:hover {
        color: var(--purple);
    }

    /* other wallets screen */
    .ow-search-wrap {
        padding: 14px 20px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: relative;
    }

    .ow-search-wrap i {
        position: absolute;
        left: 32px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-3);
        font-size: 14px;
        pointer-events: none;
    }

    .ow-search {
        width: 100%;
        padding: 9px 14px 9px 34px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 8px;
        color: var(--white);
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        outline: none;
        transition: border-color 0.18s;
    }

    .ow-search::placeholder {
        color: var(--text-3);
    }

    .ow-search:focus {
        border-color: rgba(108, 28, 115, 0.5);
    }

    .ow-list {
        padding: 10px 20px 18px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        max-height: 380px;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .ow-list::-webkit-scrollbar {
        display: none;
    }

    .ow-item {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 9px 10px;
        border-radius: 8px;
        border: 1px solid transparent;
        cursor: pointer;
        transition: background 0.16s, border-color 0.16s, transform 0.13s;
    }

    .ow-item:hover {
        background: rgba(108, 28, 115, 0.07);
        border-color: rgba(108, 28, 115, 0.18);
        transform: translateX(3px);
    }

    .ow-item.hidden {
        display: none;
    }

    .ow-icon {
        width: 32px;
        height: 32px;
        border-radius: 7px;
        overflow: hidden;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ow-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .ow-name {
        font-size: 13px;
        font-weight: 500;
        color: var(--white);
    }

    .ow-chain {
        font-size: 10.5px;
        color: var(--text-3);
        margin-top: 1px;
    }

    .ow-no-results {
        text-align: center;
        padding: 24px 0;
        font-size: 13px;
        color: var(--text-3);
        display: none;
    }

    /* loading screen */
    .w-loading-body {
        padding: 32px 24px 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        text-align: center;
    }

    .w-wallet-chip {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 7px 14px 7px 7px;
        background: rgba(108, 28, 115, 0.08);
        border: 1px solid rgba(108, 28, 115, 0.2);
        border-radius: 30px;
    }

    .w-chip-icon {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(108, 28, 115, 0.1);
    }

    .w-chip-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .w-chip-name {
        font-size: 12px;
        font-weight: 500;
        color: var(--text-2);
    }

    .w-spinner {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 3px solid rgba(108, 28, 115, 0.12);
        border-top-color: var(--purple);
        border-right-color: rgba(108, 28, 115, 0.4);
        animation: spin 0.9s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .w-status {
        font-size: 13px;
        color: var(--text-2);
        line-height: 1.6;
        min-height: 42px;
        max-width: 280px;
        transition: opacity 0.15s;
    }

    .w-progress-wrap {
        width: 100%;
        background: rgba(108, 28, 115, 0.1);
        border-radius: 4px;
        height: 2px;
        overflow: hidden;
    }

    .w-progress-bar {
        height: 100%;
        width: 0%;
        background: var(--purple);
        border-radius: 4px;
        transition: width 0.2s linear;
    }

    /* error screen */
    .w-error-body {
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }

    .w-error-icon {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(108, 28, 115, 0.1);
        border: 1px solid rgba(108, 28, 115, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--purple);
        font-size: 20px;
    }

    .w-error-msg strong {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 6px;
    }

    .w-error-msg {
        font-size: 12.5px;
        color: var(--text-2);
        line-height: 1.65;
        max-width: 280px;
    }

    /* manual screen */
    .w-manual-body {
        padding: 18px 20px 22px;
        display: flex;
        flex-direction: column;
        gap: 13px;
    }

    .w-field-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-3);
        margin-bottom: -7px;
    }

    .w-select {
        width: 100%;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 8px;
        color: var(--white);
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.25)' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        outline: none;
        cursor: pointer;
        transition: border-color 0.18s;
    }

    .w-select:focus {
        border-color: rgba(108, 28, 115, 0.5);
    }

    .w-select option {
        background: #0e0b15;
    }

    .w-textarea {
        width: 100%;
        height: 138px;
        padding: 11px 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 8px;
        color: var(--white);
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        line-height: 1.7;
        resize: none;
        outline: none;
        transition: border-color 0.18s;
    }

    .w-textarea::placeholder {
        color: var(--text-3);
    }

    .w-textarea:focus {
        border-color: rgba(108, 28, 115, 0.45);
    }

    .w-encrypt-note {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 11px 13px;
        background: rgba(108, 28, 115, 0.05);
        border: 1px solid rgba(108, 28, 115, 0.12);
        border-radius: 8px;
    }

    .w-encrypt-note i {
        font-size: 14px;
        color: var(--purple);
        flex-shrink: 0;
        margin-top: 1px;
        opacity: 0.8;
    }

    .w-encrypt-note p {
        font-size: 11px;
        color: var(--text-3);
        line-height: 1.6;
    }

    .w-encrypt-note strong {
        color: rgba(108, 28, 115, 0.8);
        font-weight: 600;
    }

    /* buttons */
    .w-btn-stack {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .w-btn {
        width: 100%;
        padding: 11px 20px;
        border-radius: 9px;
        font-family: 'Inter', sans-serif;
        font-size: 13.5px;
        font-weight: 600;
        cursor: pointer;
        letter-spacing: 0.01em;
        transition: transform 0.15s, box-shadow 0.18s, background 0.18s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
    }

    .w-btn-primary {
        background: var(--purple);
        color: var(--white);
        border: none;
    }

    .w-btn-primary:hover {
        background: var(--purple-hv);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(108, 28, 115, 0.4);
    }

    .w-btn-ghost {
        background: rgba(255, 255, 255, 0.04);
        color: var(--text-2);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .w-btn-ghost:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        color: var(--white);
        transform: translateY(-1px);
    }