:root {
    --background: #fff;
    --foreground: #171717;
    --primary: #6a3c93;
    --primary-foreground: #fff;
    --accent: #f9b74d;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #0a0a0a;
        --foreground: #ededed;
    }
}

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

b, strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

/* Form Elements */
button, input, select, textarea {
    font: inherit;
    color: inherit;
    background-color: #fff;
    border: none;
    border-radius: 0;
}

input, select, textarea {
    color: #000;
}

button, input[type="submit"] {
    color: inherit;
    cursor: pointer;
}

textarea {
    resize: vertical;
}

/* Lists */
ul, ol, menu {
    list-style: none;
}

/* Media Elements */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.visible {
    visibility: visible;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

.border {
    border: 1px solid currentColor;
}
.HomeScreen_container__EP1LM {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 100vh;
    color: white;
    font-family: Segoe UI,Tahoma,Geneva,Verdana,sans-serif;
    position: relative
}

.HomeScreen_header__CTpCt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #6a3c93;
    position: sticky;
    top: 0;
    z-index: 10
}

.HomeScreen_headerTitle__vmtQo {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600
}

.HomeScreen_backButton__MA5j0,.HomeScreen_menuButton__WlHFE {
    background: none;
    border: none;
    cursor: pointer
}

.HomeScreen_logo__dtmvZ {
    display: flex;
    justify-content: center;
    margin: 30px 0
}

.HomeScreen_welcomeText__rwAr9 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem
}

.HomeScreen_grid__zJQpD {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    padding: 0 16px;
    margin-bottom: 30px
}

.HomeScreen_gridItem__8b_FI {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform .2s
}

.HomeScreen_gridItem__8b_FI:hover {
    transform: scale(1.05)
}

.HomeScreen_iconWrapper__pU0CO {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: #2d2d2d;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px
}

.HomeScreen_icon__APOP4 {
    color: #F9B74D
}

.HomeScreen_itemLabel__qMXft {
    font-size: .85rem;
    color: #e0e0e0
}

.HomeScreen_buttonContainer__oYxfx {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    margin-top: auto;
    margin-bottom: 30px;
    gap: 12px
}

.HomeScreen_twoFactorButton__jNfBF {
    background-color: #2d2d2d;
    color: white;
    border: 1px solid #f9b74d;
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color .2s
}

.HomeScreen_twoFactorButton__jNfBF:hover {
    background-color: #3d3d3d
}

.HomeScreen_exploreButton__dYP7S {
    background-color: #F9B74D;
    color: #1e1e1e;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .2s
}

.HomeScreen_exploreButton__dYP7S:hover {
    background-color: #e5a93c
}

.HomeScreen_authStatusBanner__L4WJl {
    background-color: #2d2d2d;
    border-left: 4px solid #4caf50;
    margin: 16px;
    padding: 12px;
    border-radius: 0 8px 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.HomeScreen_authStatusContent__tJ9Mp {
    display: flex;
    align-items: center;
    gap: 12px
}

.HomeScreen_authStatusIcon__kIFdo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(76,175,80,.1);
    display: flex;
    justify-content: center;
    align-items: center
}

.HomeScreen_authStatusText__b__Nq h3 {
    margin: 0;
    font-size: .9rem;
    font-weight: 600
}

.HomeScreen_authStatusText__b__Nq p {
    margin: 4px 0 0;
    font-size: .8rem;
    color: #cacaca
}

.HomeScreen_authStatusButton__61buI {
    background-color: transparent;
    color: #F9B74D;
    border: 1px solid #f9b74d;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: .8rem;
    cursor: pointer
}

.HomeScreen_authStatusButton__61buI:hover {
    background-color: rgba(249,183,77,.1)
}

.TwoFactorAuth_container__2zadl {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    margin-top: 20px
}

.TwoFactorAuth_title__Sz8EM {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    text-align: center
}

.TwoFactorAuth_description__TTiS_ {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    max-width: 400px
}

.TwoFactorAuth_formGroup__phJYp {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px
}

.TwoFactorAuth_label__h0N94 {
    display: flex;
    align-items: center;
    font-size: .9rem;
    margin-bottom: 8px;
    color: #444
}

.TwoFactorAuth_input__dgMSw {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem
}

.TwoFactorAuth_input__dgMSw:focus {
    outline: none;
    border-color: #6a3c93
}

.TwoFactorAuth_toggleContainer__IsWNm {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    justify-content: space-between
}

.TwoFactorAuth_toggleLabel__KYCVu {
    font-size: 1rem;
    color: #444
}

.TwoFactorAuth_toggle__iss_8 {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px
}

.TwoFactorAuth_toggleInput__bxLqL {
    opacity: 0;
    width: 0;
    height: 0
}

.TwoFactorAuth_toggleSlider__Ns_BV {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: .3s
}

.TwoFactorAuth_toggleSlider__Ns_BV:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: .3s
}

.TwoFactorAuth_toggleInput__bxLqL:checked+.TwoFactorAuth_toggleSlider__Ns_BV {
    background-color: #6a3c93
}

.TwoFactorAuth_toggleInput__bxLqL:checked+.TwoFactorAuth_toggleSlider__Ns_BV:before {
    transform: translateX(26px)
}

.TwoFactorAuth_button__2Rw9L {
    width: 100%;
    max-width: 400px;
    height: 48px;
    background-color: #6a3c93;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px
}

.TwoFactorAuth_button__2Rw9L:hover {
    background-color: #5a3183
}

.TwoFactorAuth_buttonContainer__IIRuV,.TwoFactorAuth_otpContainer__6qoIX {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center
}

.TwoFactorAuth_otpContainer__6qoIX {
    gap: 8px;
    margin-bottom: 20px
}

.TwoFactorAuth_otpInput___ob2y {
    width: 40px;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700
}

.TwoFactorAuth_otpInput___ob2y:focus {
    outline: none;
    border-color: #6a3c93
}

.TwoFactorAuth_separator__dd4Ww {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background-color: #eee;
    margin: 25px 0
}

.TwoFactorAuth_backupCodes___nYzq {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    background-color: #f7f7f7;
    border-radius: 4px;
    margin-bottom: 20px
}

.TwoFactorAuth_backupCodesTitle__wV6on {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px
}

.TwoFactorAuth_backupCode__qV8gY {
    font-family: monospace;
    font-size: .9rem;
    padding: 4px 0;
    color: #444
}

.TwoFactorAuth_note__7_B0C {
    text-align: left;
    color: #444;
    font-size: .95rem;
    line-height: 1.5;
    margin-top: 40px;
    margin-bottom: 15px;
    width: 90%;
    max-width: 400px
}

.TwoFactorAuth_noteTitle___nTKC {
    font-weight: 600;
    margin-bottom: 8px
}

.TwoFactorAuth_link__IRXk7 {
    color: #3f8cff;
    text-decoration: none
}

.TwoFactorAuth_modalOverlay__z8_OH {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000
}

.TwoFactorAuth_modal__jEYd1 {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    animation: TwoFactorAuth_slideUp__6j1rA .3s ease-out
}

.TwoFactorAuth_modalHeader__zVXfv {
    display: flex;
    align-items: center;
    margin-bottom: 16px
}

.TwoFactorAuth_modalIcon__8kAqz {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a3c93
}

.TwoFactorAuth_modalTitle__wUqS8 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    flex: 1
}

.TwoFactorAuth_modalContent__g_PNn {
    color: #555;
    margin-bottom: 24px;
    line-height: 1.5
}

.TwoFactorAuth_modalButtons__r_s8x {
    display: flex;
    justify-content: flex-end;
    gap: 12px
}

.TwoFactorAuth_cancelButton__Unb6F {
    background-color: #f2f2f2;
    color: #555;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color .2s ease
}

.TwoFactorAuth_cancelButton__Unb6F:hover {
    background-color: #e5e5e5
}

.TwoFactorAuth_confirmButton__oFUmK {
    background-color: #6a3c93;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color .2s ease
}

.TwoFactorAuth_confirmButton__oFUmK:hover {
    background-color: #5a3183
}

.TwoFactorAuth_verifiedContainer___SU5k {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px
}

.TwoFactorAuth_verifiedIcon__Zl9o2 {
    margin-bottom: 20px
}

.TwoFactorAuth_methodList___idVi {
    width: 100%;
    margin: 10px 0 20px
}

.TwoFactorAuth_method__sMGOE {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 10px
}

@keyframes TwoFactorAuth_slideUp__6j1rA {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.TwoFactorAuth_errorText__24ZEX {
    color: #e53935;
    font-size: .8rem;
    margin-top: 4px;
    font-weight: 500
}

.Notification_overlay__sWRzy {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000
}

.Notification_notification__wGdbv {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    animation: Notification_slideUp__TRAfv .3s ease-out
}

.Notification_header__RgJMn {
    display: flex;
    align-items: center;
    margin-bottom: 16px
}

.Notification_icon__ge0ne {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a3c93
}

.Notification_title__vwIWQ {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    flex: 1
}

.Notification_message__M25uA {
    color: #555;
    margin-bottom: 24px;
    line-height: 1.5
}

.Notification_buttons__YoWdX {
    display: flex;
    justify-content: flex-end
}

.Notification_button__1b4rV {
    background-color: #6a3c93;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color .2s ease
}

.Notification_button__1b4rV:hover {
    background-color: #5a3183
}

@keyframes Notification_slideUp__TRAfv {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.Wallet_container__v2ix6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: white
}

.Wallet_header__jhqND {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px;
    background-color: #6a3c93;
    color: white;
    position: relative
}

.Wallet_headerTitle__jglXD {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center
}

.Wallet_headerLogo__zv1SB {
    margin-right: 8px
}

.Wallet_backButton__bpDxl {
    position: absolute;
    left: 16px
}

.Wallet_menuButton__REaDF {
    position: absolute;
    right: 16px
}

.Wallet_title__02hEw {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 30px 0;
    text-align: center;
    color: #333
}

.Wallet_seedPhraseContainer__SNolV {
    width: 90%;
    max-width: 460px;
    height: 280px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 0;
    overflow: hidden
}

.Wallet_seedPhraseInput__5yIVE {
    width: 100%;
    height: 100%;
    resize: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: #aaa;
    padding: 20px;
    font-family: inherit
}

.Wallet_seedPhraseInput__5yIVE::placeholder {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 300
}

.Wallet_unlockButton__bHCdu {
    background-color: #6a3c93;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 15px;
    border: none;
    cursor: pointer;
    letter-spacing: .5px
}

.Wallet_biometricButton__tXHPY,.Wallet_unlockButton__bHCdu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 460px;
    height: 52px;
    font-size: .95rem
}

.Wallet_biometricButton__tXHPY {
    background-color: #f8f8f8;
    color: #aaa;
    border-radius: 4px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    cursor: not-allowed
}

.Wallet_description__Xim09 {
    text-align: left;
    color: #444;
    font-size: .95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    width: 90%;
    max-width: 460px
}

.Wallet_link__0fuyL {
    color: #3f8cff;
    text-decoration: none
}
