* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cartoon-primary: #FF2222;
    --cartoon-secondary: #4ECDC4;
    --cartoon-accent: #45B7D1;
    --cartoon-warning: #FF4500;
    --cartoon-success: #66BB6A;
    --cartoon-purple: #AB47BC;
    --cartoon-pink: #F48FB1;
    --cartoon-yellow: #FFEB3B;
    --cartoon-orange: #FF9800;
    --cartoon-green: #4CAF50;
    --cartoon-blue: #2196F3;
    --cartoon-bg: linear-gradient(135deg, #FFE0E6 0%, #E3F2FD 50%, #F3E5F5 100%);
    --cartoon-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
    --cartoon-border: 2px solid;
    --cartoon-radius: 20px;
}

.mobile-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
    background: var(--cartoon-bg);
    background-attachment: fixed;
}

.customization-panel {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 1500;
    width: min(300px, 25vw);
    max-height: calc(100vh - 20px);
    pointer-events: auto;
    transform-origin: left center;
    transition: opacity 0.2s ease-in-out;
}

.add-token-panel {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1500;
    width: min(280px, 23vw);
    max-height: calc(100vh - 40px);
    pointer-events: auto;
    transform-origin: right center;
}

.form-container {
    width: 100%;
    max-width: 300px;
    max-height: calc(100vh - 20px);
    border-radius: var(--cartoon-radius);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: clamp(0.75rem, 2vw, 1.25rem);
    color: #2C3E50;
    box-shadow: 
        var(--cartoon-shadow),
        0 0 0 var(--cartoon-border) var(--cartoon-primary),
        inset 0 4px 8px rgba(255, 255, 255, 0.8);
    border: var(--cartoon-border) var(--cartoon-primary);
    position: relative;
    overflow: visible;
    animation: cartoonFloat 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    transform: perspective(1000px) rotateX(2deg);
}

@keyframes cartoonFloat {
    0%, 100% { transform: perspective(1000px) rotateX(2deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateX(2deg) translateY(-10px); }
}

@keyframes cartoonPulse {
    0%, 100% { transform: perspective(1000px) rotateX(5deg) scale(1); }
    50% { transform: perspective(1000px) rotateX(5deg) scale(1.05); }
}

.profile-picture-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: center;
}

.profile-preview {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: var(--cartoon-border) var(--cartoon-secondary);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--cartoon-pink) 0%, var(--cartoon-purple) 100%);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(78, 205, 196, 0.4);
    animation: cartoonBounce 2s ease-in-out infinite;
}

@keyframes cartoonBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.profile-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.profile-overlay span {
    color: var(--cartoon-accent);
    font-size: 0.875rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(69, 183, 209, 0.5);
    background: linear-gradient(135deg, var(--cartoon-accent) 0%, var(--cartoon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.change-profile-btn {
    background: linear-gradient(135deg, var(--cartoon-accent) 0%, var(--cartoon-blue) 100%);
    color: var(--cartoon-accent);
    border: none;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(69, 183, 209, 0.3);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(69, 183, 209, 0.5);
}

.change-profile-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(167, 139, 250, 0.3);
}

.input-group:has(.profile-picture-input) {
    margin-bottom: 12px;
}

.input-group:has(.profile-picture-input) label {
    text-align: center;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--cartoon-accent);
    font-size: 0.9rem;
}

.form {
    margin-top: 0.25rem;
    overflow-y: auto;
    flex: 1;
    padding-right: 4px;
    padding-bottom: 20px;
    max-height: calc(100vh - 180px);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.form::-webkit-scrollbar {
    display: none;
}

.form {
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
}

.title {
    text-align: center;
    font-size: 1.375rem;
    line-height: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--cartoon-accent);
    text-shadow: 0 0 20px rgba(69, 183, 209, 0.5);
    background: linear-gradient(135deg, var(--cartoon-accent) 0%, var(--cartoon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    flex-shrink: 0;
}

.title::after {
    content: '🚀';
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 1.125rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

.input-group {
    margin-top: 0.0625rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0.25rem;
    position: relative;
}

.input-group label {
    display: block;
    color: var(--cartoon-primary);
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-shadow: 2px 2px 4px rgba(255, 107, 107, 0.3);
}

.input-group input[type="text"] {
    width: 100%;
    border-radius: var(--cartoon-radius);
    border: var(--cartoon-border) var(--cartoon-accent);
    outline: 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F8FF 100%);
    padding: 0.5rem 0.75rem;
    color: #2C3E50;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(69, 183, 209, 0.2);
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.input-group input[type="text"]:focus {
    border-color: var(--cartoon-warning);
    box-shadow: 
        0 0 0 6px rgba(255, 107, 0, 0.3),
        0 6px 20px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    transform: scale(1.02) translateY(-2px);
}

.input-group input[type="text"]::placeholder {
    color: var(--cartoon-accent);
    font-style: italic;
    font-weight: 500;
}


.toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--cartoon-accent);
    font-size: 0.875rem;
    margin-bottom: 0;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.toggle-label span {
    color: inherit;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 107, 107, 0.2);
    transition: 0.3s ease;
    border-radius: 24px;
    border: 2px solid var(--cartoon-primary);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: var(--cartoon-primary);
    transition: 0.3s ease;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: rgba(255, 107, 107, 0.4);
    border-color: var(--cartoon-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
    background-color: var(--cartoon-primary);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.3);
}

.larp-button {
    position: relative;
    padding: 15px 25px;
    border-radius: var(--cartoon-radius);
    border: var(--cartoon-border) var(--cartoon-primary) !important;
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--cartoon-primary) 0%, var(--cartoon-pink) 100%) !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    box-shadow: var(--cartoon-shadow);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    width: calc(100% - 20px);
    box-sizing: border-box;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    animation: cartoonPulse 2s ease-in-out infinite;
    transform: perspective(1000px) rotateX(5deg);
    text-align: center;
    margin: 10px;
}

.larp-button:hover {
    background: linear-gradient(135deg, var(--cartoon-warning) 0%, var(--cartoon-orange) 100%) !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    border: var(--cartoon-border) var(--cartoon-warning) !important;
    transform: perspective(1000px) rotateX(5deg) scale(1.1) !important;
    box-shadow: 0 12px 40px rgba(255, 167, 38, 0.5) !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

.larp-button:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
}

.larp-button::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

.larp-button:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
}

.larp-button:focus {
    outline: none;
}

#downloadButton {
    margin-bottom: 0.125rem;
}

#copyButton {
    margin-bottom: 0.125rem;
}

.add-token-btn {
    position: relative !important;
    padding: 15px 25px !important;
    border-radius: var(--cartoon-radius) !important;
    border: var(--cartoon-border) var(--cartoon-success) !important;
    font-size: 1.25rem !important;
    line-height: 1.5rem !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    background: linear-gradient(135deg, var(--cartoon-success) 0%, var(--cartoon-green) 100%) !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
    box-shadow: 0 8px 32px rgba(102, 187, 106, 0.3) !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    width: calc(100% - 20px) !important;
    box-sizing: border-box !important;
    text-align: center !important;
    margin: 10px !important;
    font-family: 'Comic Sans MS', cursive, sans-serif !important;
    animation: cartoonBounce 2s ease-in-out infinite !important;
    transform: perspective(1000px) rotateX(5deg) !important;
}

.add-token-btn:hover {
    background: linear-gradient(135deg, var(--cartoon-blue) 0%, var(--cartoon-accent) 100%) !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    border: var(--cartoon-border) var(--cartoon-blue) !important;
    transform: perspective(1000px) rotateX(5deg) scale(1.05) !important;
    box-shadow: 0 12px 40px rgba(33, 150, 243, 0.5) !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

.add-token-btn:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
}

.add-token-btn::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

.add-token-btn:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
}

.add-token-btn:focus {
    outline: none;
}

.delete-token-menu {
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    min-width: 180px;
}

.delete-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.delete-menu-item:hover {
    background: rgba(167, 139, 250, 0.1);
}

.delete-icon {
    font-size: 16px;
}

.token-removal-instruction {
    text-align: center;
    color: rgba(156, 163, 175, 0.7);
    font-size: 12px;
    font-style: italic;
    margin-top: 8px;
    margin-bottom: 16px;
    opacity: 0.8;
}


@media (max-width: 768px) {
    .token-removal-instruction {
        position: relative;
        height: auto;
        min-height: 20px;
    }
    
    .token-removal-instruction::before {
        content: "To remove the token, tap and hold, and select the trash icon :)";
        display: block;
        color: rgba(156, 163, 175, 0.7);
        font-size: 12px;
        font-style: italic;
        text-align: center;
        margin-top: 8px;
        margin-bottom: 16px;
        opacity: 0.8;
        line-height: 1.4;
    }
    
    .token-removal-instruction {
        font-size: 0;
        line-height: 0;
        color: transparent;
        overflow: hidden;
    }
}



.app-container {
    position: relative;
    z-index: 1;
    height: 600px;
    max-height: 600px;
    overflow: hidden;
}

.wallet-drag-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    cursor: grab;
    z-index: 1000;
}

.wallet-drag-area:active {
    cursor: grabbing;
}

.change-amount.positive,
.change-percentage.positive,
.token-change.positive {
    color: #30a46c !important;
}

.change-amount.negative,
.change-percentage.negative,
.token-change.negative {
    color: #e54d2e !important;
}

.action-btn {
    outline: none !important;
    border: none !important;
    background: none !important;
}

.bottom-nav .nav-item {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.nav-item:focus,
.nav-item:focus-visible,
.action-btn:focus,
.action-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

@media (min-width: 1400px) {
    .customization-panel {
        left: 40px;
        width: min(350px, 20vw);
    }
    
    .add-token-panel {
        right: 40px;
        width: min(320px, 18vw);
    }
    
    .form-container {
        max-width: 350px;
        padding: clamp(1rem, 1.5vw, 1.5rem);
    }
    
    .input-group input {
        font-size: clamp(0.875rem, 1vw, 1rem);
        padding: clamp(0.75rem, 1vw, 0.875rem);
    }
    
    .larp-button, .add-token-btn {
        font-size: clamp(0.875rem, 1vw, 1rem);
        padding: clamp(0.75rem, 1vw, 0.875rem) clamp(1rem, 1.5vw, 1.25rem);
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .customization-panel {
        left: 15px;
        width: min(280px, 22vw);
    }
    
    .add-token-panel {
        right: 15px;
        width: min(260px, 20vw);
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .mobile-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 10px;
        min-height: 100vh;
        gap: 20px;
    }
    
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    .ca-address {
        position: relative !important;
        top: 0 !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 10px auto !important;
        text-align: center;
        font-size: 1.5rem;
        order: 1;
        z-index: 1 !important;
    }
    
    .twitter-link {
        position: relative !important;
        top: 0 !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 20px auto !important;
        text-align: center;
        order: 2;
        z-index: 2 !important;
    }
    
    .dex-link {
        position: relative !important;
        top: 0 !important;
        right: auto !important;
        transform: none !important;
        margin: 0 auto 20px auto !important;
        text-align: center;
        order: 3;
        z-index: 2 !important;
    }
    
    .twitter-link a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .x-icon {
        width: 24px;
        height: 24px;
    }
    
    .wallet-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0;
        width: auto;
        max-width: 300px;
        order: 3;
        z-index: 3;
        flex-shrink: 0;
    }
    
    .wallet-wrapper .app-container {
        position: relative;
        z-index: 3;
        width: 300px;
        max-width: 300px;
        user-select: none;
        touch-action: pan-y;
        pointer-events: auto;
        transform: none !important;
    }
    
    .wallet-wrapper {
        user-select: none;
        touch-action: pan-y;
        pointer-events: auto;
        transform: none !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
    }
    
    .add-token-panel {
        position: relative !important;
        top: auto !important;
        left: calc(50% - 150px - 25px) !important;
        right: auto !important;
        transform: none !important;
        width: 300px;
        max-width: 300px;
        margin: 10px auto 10px auto;
        max-height: none;
        order: 4;
        z-index: 4;
        flex-shrink: 0;
        align-self: center;
    }
    
    .customization-panel {
        position: relative !important;
        top: auto !important;
        left: calc(50% - 150px - 25px) !important;
        right: auto !important;
        transform: none !important;
        width: 300px;
        max-width: 300px;
        margin: 10px auto 10px auto;
        max-height: none;
        order: 3;
        z-index: 5;
        flex-shrink: 0;
        align-self: center;
    }
    
    .post-larp-link {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 40px auto 0 auto !important;
        text-align: center;
        order: 6;
        z-index: 6 !important;
    }
    
    .post-larp-link a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
    }
    
    #randomizeButton {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 20px auto !important;
        order: 4;
        z-index: 7 !important;
    }
    
    .form-container {
        width: 100%;
        max-height: none;
        padding: clamp(0.75rem, 3vw, 1rem);
    }
    
    .title {
        font-size: clamp(1.125rem, 4vw, 1.25rem);
        margin-bottom: clamp(0.75rem, 2vw, 0.875rem);
    }
    
    .title::after {
        font-size: 1rem;
        top: -5px;
        right: -5px;
    }
    
    .input-group input {
        font-size: clamp(0.875rem, 3vw, 1rem);
        padding: clamp(0.625rem, 2vw, 0.75rem);
    }
    
    .larp-button, .add-token-btn {
        font-size: clamp(0.875rem, 3vw, 1rem);
        padding: clamp(0.625rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.25rem);
    }
    
    .form {
        max-height: none;
    }
    
    .input-group {
        margin-bottom: 0.75rem;
    }
    
    .input-group input,
    .input-group textarea,
    .input-group select {
        min-height: 44px;
        font-size: 16px;
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    .submit-btn,
    .action-btn,
    .change-profile-btn {
        min-height: 44px;
        font-size: 16px;
        touch-action: manipulation;
    }
    

}

@media (max-width: 480px) {
    .mobile-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 10px;
    }
    
    .ca-address {
        position: relative !important;
        top: 0 !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 10px auto !important;
        font-size: 1.25rem;
        order: 1;
        z-index: 1 !important;
    }
    
    .twitter-link {
        position: relative !important;
        top: 0 !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 15px auto !important;
        order: 2;
        z-index: 2 !important;
    }
    
    .dex-link {
        position: relative !important;
        top: 0 !important;
        right: auto !important;
        transform: none !important;
        margin: 0 auto 15px auto !important;
        order: 3;
        z-index: 2 !important;
    }
    
    .wallet-wrapper {
        max-width: 320px;
        margin: 0;
        order: 3;
        z-index: 3;
        flex-shrink: 0;
    }
    
    .wallet-wrapper .app-container {
        width: 320px;
        max-width: 320px;
        user-select: none;
        touch-action: pan-y;
        pointer-events: auto;
        transform: none !important;
    }
    
    .wallet-wrapper {
        user-select: none;
        touch-action: pan-y;
        pointer-events: auto;
        transform: none !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
    }
    
    .add-token-panel {
        position: relative !important;
        top: auto !important;
        left: calc(50% - 160px - 25px) !important;
        right: auto !important;
        transform: none !important;
        width: 320px;
        max-width: 320px;
        margin: 10px auto 10px auto;
        order: 5;
        z-index: 4;
        flex-shrink: 0;
        align-self: center;
    }
    
    .customization-panel {
        position: relative !important;
        top: auto !important;
        left: calc(50% - 160px - 20px) !important;
        right: auto !important;
        transform: none !important;
        width: 320px;
        max-width: 320px;
        margin: 10px auto 10px auto;
        order: 5;
        z-index: 5;
        flex-shrink: 0;
        align-self: center;
    }
    
    .post-larp-link {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 30px auto 0 auto !important;
        order: 6;
        z-index: 6 !important;
    }
    
    #randomizeButton {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 15px auto !important;
        order: 4;
        z-index: 7 !important;
    }
    
    .form-container {
        padding: clamp(0.625rem, 2.5vw, 0.875rem);
    }
    
    .title {
        font-size: clamp(1rem, 3.5vw, 1.125rem);
        margin-bottom: clamp(0.625rem, 1.5vw, 0.75rem);
    }
    
    .title::after {
        font-size: 1rem;
        top: -4px;
        right: -4px;
    }
    
    .input-group {
        margin-bottom: 0.625rem;
    }
    
    .input-group input {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
        padding: clamp(0.5rem, 1.5vw, 0.625rem);
    }
    
    .larp-button, .add-token-btn {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
        padding: clamp(0.5rem, 1.5vw, 0.625rem) clamp(0.75rem, 2.5vw, 1rem);
    }
    
    .ca-address {
        margin: 15px auto;
        font-size: 1.25rem;
    }
    
    .twitter-link {
        margin: 10px auto;
    }
    
    .dex-link {
        margin: 10px auto;
    }
    
    .post-larp-link {
        margin: 15px auto;
    }
}

@media (max-width: 360px) {
    .mobile-container {
        gap: 10px;
    }
    
    .ca-address {
        position: relative !important;
        top: 0 !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 8px auto !important;
        font-size: 1.125rem;
        order: 1;
        z-index: 1 !important;
    }
    
    .twitter-link {
        position: relative !important;
        top: 0 !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 12px auto !important;
        order: 2;
        z-index: 2 !important;
    }
    
    .dex-link {
        position: relative !important;
        top: 0 !important;
        right: auto !important;
        transform: none !important;
        margin: 0 auto 12px auto !important;
        order: 3;
        z-index: 2 !important;
    }
    
    .wallet-wrapper {
        max-width: 280px;
        margin: 0;
        order: 3;
        z-index: 3;
        flex-shrink: 0;
    }
    
    .wallet-wrapper .app-container {
        width: 280px;
        max-width: 280px;
        user-select: none;
        touch-action: pan-y;
        pointer-events: auto;
        transform: none !important;
    }
    
    .wallet-wrapper {
        user-select: none;
        touch-action: pan-y;
        pointer-events: auto;
        transform: none !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
    }
    
    .add-token-panel {
        position: relative !important;
        top: auto !important;
        left: calc(50% - 140px - 25px) !important;
        right: auto !important;
        transform: none !important;
        width: 280px;
        max-width: 280px;
        margin: 10px auto 10px auto;
        order: 5;
        z-index: 4;
        flex-shrink: 0;
        align-self: center;
    }
    
    .customization-panel {
        position: relative !important;
        top: auto !important;
        left: calc(50% - 140px - 25px) !important;
        right: auto !important;
        transform: none !important;
        width: 280px;
        max-width: 280px;
        margin: 10px auto 10px auto;
        order: 5;
        z-index: 5;
        flex-shrink: 0;
        align-self: center;
    }
    
    .post-larp-link {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 25px auto 0 auto !important;
        order: 6;
        z-index: 6 !important;
    }
    
    #randomizeButton {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 12px auto !important;
        order: 4;
        z-index: 7 !important;
    }
    
    .form-container {
        padding: clamp(0.5rem, 2vw, 0.75rem);
    }
    
    .title {
        font-size: clamp(0.875rem, 3vw, 1rem);
        margin-bottom: clamp(0.5rem, 1vw, 0.625rem);
    }
    
    .title::after {
        font-size: 0.75rem;
        top: -3px;
        right: -3px;
    }
    
    .input-group input {
        font-size: clamp(0.625rem, 2vw, 0.75rem);
        padding: clamp(0.375rem, 1vw, 0.5rem);
    }
    
    .larp-button, .add-token-btn {
        font-size: clamp(0.625rem, 2vw, 0.75rem);
        padding: clamp(0.375rem, 1vw, 0.5rem) clamp(0.625rem, 2vw, 0.75rem);
    }
    
    .ca-address {
        margin: 10px auto;
        font-size: 1.125rem;
    }
    
    .twitter-link {
        margin: 8px auto;
    }
    
    .dex-link {
        margin: 8px auto;
    }
    
    .post-larp-link {
        margin: 10px auto;
    }
}

.add-token-section {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #fff;
}

.modal h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(31,30,30,255);
    color: #fff;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #6e56cf;
}

.submit-btn {
    background: #6e56cf;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #7d66d9;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}



body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 200, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f172a 50%, #1e293b 75%, #1a1a2e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: static;
    padding: 0;
}

.wallet-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    pointer-events: auto;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(3px 3px at 20px 30px, rgba(167, 139, 250, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.1), transparent),
        radial-gradient(4px 4px at 60px 20px, rgba(110, 86, 207, 0.08), transparent),
        radial-gradient(2px 2px at 80px 50px, rgba(255, 119, 198, 0.12), transparent),
        radial-gradient(3px 3px at 10px 80px, rgba(120, 200, 255, 0.1), transparent),
        radial-gradient(2px 2px at 90px 90px, rgba(167, 139, 250, 0.08), transparent);
    background-repeat: repeat;
    background-size: 120px 120px;
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

.app-container {
    width: 360px;
    max-width: 360px;
    background: rgba(31,30,30,255);
    min-height: 600px;
    position: relative;
    border-radius: 0;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border: 2px solid rgb(51, 51, 50);
    outline: 1px solid rgb(71, 70, 79);
    outline-offset: -1px;
    z-index: 1000;
    pointer-events: auto;
}

.ca-address {
    text-align: center;
    font-size: 1.375rem;
    line-height: 1.5rem;
    font-weight: 800;
    color: var(--cartoon-accent);
    text-shadow: 0 0 20px rgba(69, 183, 209, 0.5);
    background: linear-gradient(135deg, var(--cartoon-accent) 0%, var(--cartoon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    padding: 1rem 0;
}

.twitter-link {
    position: fixed;
    top: 50px;
    left: calc(50% - 30px);
    transform: translateX(-50%);
    z-index: 1001;
    text-align: center;
}

.twitter-link a {
    display: inline-block;
    transition: all 0.3s ease;
}

.x-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(69, 183, 209, 0.5));
}

.twitter-link a:hover .x-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(69, 183, 209, 0.8));
}

.dex-link {
    position: fixed;
    top: 50px;
    left: calc(50% + 30px);
    transform: translateX(-50%);
    z-index: 1001;
    text-align: center;
}

.dex-link a {
    display: inline-block;
    transition: all 0.3s ease;
}

.dex-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(69, 183, 209, 0.5));
}

.dex-link a:hover .dex-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(69, 183, 209, 0.8));
}

.post-larp-link {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    text-align: center;
}

.post-larp-link a {
    color: var(--cartoon-accent);
    text-decoration: none;
    font-size: 1.375rem;
    font-weight: 800;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(69, 183, 209, 0.5);
    background: linear-gradient(135deg, var(--cartoon-accent) 0%, var(--cartoon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Inter, Roboto, Arial;
    letter-spacing: 0.5px;
}

.post-larp-link a:hover {
}

#randomizeButton {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 1001;
    margin: 0 auto !important;
    width: 300px !important;
    max-width: 90vw;
    text-align: center;
    box-sizing: border-box;
    padding: 15px 25px !important;
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 59px;
    padding: 0 16px;
    background: rgba(31,30,30,255);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wallet-avatar-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-container {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-avatar-img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.wallet-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.username {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: normal;
    font-weight: 600;
    padding-left: 4px;
    padding-right: 4px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #999;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
}

.account-info {
    display: flex;
    align-items: center;
    gap: 3px;
}

.account-name {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: normal;
    font-weight: 600;
    padding-left: 4px;
    padding-right: 4px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
}

.copy-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 2px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    min-height: 18px;
}

.copy-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn svg {
    fill: none;
    width: 14px;
    height: 14px;
    stroke-linecap: round;
    stroke-linejoin: round;
    box-sizing: border-box;
    font-family: Inter, Roboto, Arial;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
}

.wallet-actions {
    display: flex;
    gap: 4px;
}

.wallet-actions .action-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    font-size: 100%;
    pointer-events: all;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    padding-left: 4px !important;
    padding-right: 4px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    gap: 0px !important;
    flex-direction: row !important;
    width: auto !important;
    min-width: 28px !important;
    min-height: 28px !important;
    background-color: transparent !important;
}

.wallet-actions .action-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.wallet-actions .action-btn:active {
    transform: scale(0.95);
}

.wallet-actions .action-btn svg {
    fill: none;
    width: 18px !important;
    height: 18px !important;
    stroke-linecap: round;
    stroke-linejoin: round;
    box-sizing: border-box;
    font-family: Inter, Roboto, Arial;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
}

.balance-section {
    padding: 24px 16px 20px;
    text-align: center;
    background: rgba(31,30,30,255);
}

.balance-amount {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.balance-change {
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    gap: 6px;
    display: flex;
    align-content: flex-start;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.change-amount {
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin-right: 6px;
    display: inline-block;
    color: rgb(229, 77, 46);
}

.change-amount.positive {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin-right: 6px;
    display: inline-block;
    color: #30a46c;
}

.change-percentage {
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: normal;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    display: inline-block;
}

.change-percentage.positive {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: normal;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    display: inline-block;
    color: #30a46c;
    background-color: rgba(48, 164, 108, 0.1);
}

.change-percentage.negative {
    color: #e54d2e;
    background-color: rgba(229, 77, 46, 0.1);
}

.action-buttons {
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    gap: 8px;
    width: 100%;
    display: flex;
    align-content: flex-start;
    flex-direction: row;
    padding: 0 16px 24px;
    justify-content: center;
}

.action-btn {
    margin: 0;
    border-color: currentColor;
    border-style: solid;
    border-width: 0;
    font-size: 100%;
    vertical-align: baseline;
    appearance: none;
    background: none;
    cursor: pointer;
    pointer-events: all;
    box-sizing: border-box;
    font-family: Inter, Roboto, Arial;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 2px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    width: 100%;
    min-width: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 0%;
    background-color: #2a2a2a;
    color: #999;
    transition-property: background-color,border-color,color,fill,stroke;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.25,1,.5,1);
}

.action-btn:hover {
    background-color: #323232;
    color: #b5b2bc;
}

.action-btn:active {
    background-color: #3c393f;
    transform: scale(0.98);
}

.action-btn svg {
    width: 24px;
    height: 24px;
    transition: all 0.15s cubic-bezier(.25,1,.5,1);
    flex-shrink: 0;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    box-sizing: border-box;
    font-family: Inter, Roboto, Arial;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
}

.receive-btn svg {
    color: rgb(171, 159, 242);
}

.send-btn svg {
    color: rgb(171, 159, 242);
}

.swap-btn svg {
    color: rgb(171, 159, 242);
}

.buy-btn svg {
    color: rgb(171, 159, 242);
}

.action-btn span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: currentColor;
}

.tab-navigation {
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    margin-left: 16px;
    margin-right: 16px;
    gap: 2px;
    position: relative;
    display: flex;
    align-content: flex-start;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.tab-container {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    -webkit-user-drag: none;
    box-sizing: border-box;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    padding-right: 12px;
    gap: 0px;
    display: flex;
    flex-direction: row;
    transform: none;
    user-select: none;
    touch-action: pan-y;
}

.tab-label {
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.02em;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
    color: #999;
    cursor: pointer;
}

.tab-label.active {
    color: #fff;
}

.context-menu {
    display: flex;
    align-items: center;
}

.context-menu svg {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin-right: 6px;
    display: inline-block;
    color: #30a46c;
}

.change-percentage.positive {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: normal;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    display: inline-block;
    color: #30a46c;
    background-color: rgba(48, 164, 108, 0.1);
}

.change-percentage.negative {
    color: #e54d2e;
    background-color: rgba(229, 77, 46, 0.1);
}

.action-buttons {
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    gap: 8px;
    width: 100%;
    display: flex;
    align-content: flex-start;
    flex-direction: row;
    padding: 0 16px 24px;
    justify-content: center;
}

.action-btn {
    margin: 0;
    border-color: currentColor;
    border-style: solid;
    border-width: 0;
    font-size: 100%;
    vertical-align: baseline;
    appearance: none;
    background: none;
    cursor: pointer;
    pointer-events: all;
    box-sizing: border-box;
    font-family: Inter, Roboto, Arial;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 4px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    width: 100%;
    min-width: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 0%;
    background-color: #2a2a2a;
    color: #999;
    transition-property: background-color,border-color,color,fill,stroke;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.25,1,.5,1);
}

.action-btn:hover {
    background-color: #323232;
    color: #b5b2bc;
}

.action-btn:active {
    background-color: #3c393f;
    transform: scale(0.98);
}

.action-btn svg {
    width: 24px;
    height: 24px;
    transition: all 0.15s cubic-bezier(.25,1,.5,1);
    flex-shrink: 0;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    box-sizing: border-box;
    font-family: Inter, Roboto, Arial;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
}

.receive-btn svg {
    color: rgb(171, 159, 242);
}

.send-btn svg {
    color: rgb(171, 159, 242);
}

.swap-btn svg {
    color: rgb(171, 159, 242);
}

.buy-btn svg {
    color: rgb(171, 159, 242);
}

.action-btn span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: currentColor;
}

.tab-navigation {
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    margin-left: 16px;
    margin-right: 16px;
    gap: 8px;
    position: relative;
    display: flex;
    align-content: flex-start;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.tab-container {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    -webkit-user-drag: none;
    box-sizing: border-box;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    padding-right: 12px;
    gap: 12px;
    display: flex;
    flex-direction: row;
    transform: none;
    user-select: none;
    touch-action: pan-y;
}

.tab-label {
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.02em;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
    color: #999;
    cursor: pointer;
}

.tab-label.active {
    color: #fff;
}

.context-menu {
    display: flex;
    align-items: center;
}

.context-menu svg {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    font-size: 100%;
    cursor: pointer;
    pointer-events: all;
    stroke: #999;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    d: path("M 12 13 a 1 1 0 1 0 0 -2 a 1 1 0 0 0 0 2 M 19 13 a 1 1 0 1 0 0 -2 a 1 1 0 0 0 0 2 M 5 13 a 1 1 0 1 0 0 -2 a 1 1 0 0 0 0 2");
    box-sizing: border-box;
    font-family: Inter, Roboto, Arial;
    user-select: none;
    color: #999;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
}

.more-btn {
    font-size: 100%;
    cursor: pointer;
    pointer-events: all;
    fill: none;
    width: 24px;
    height: 24px;
    stroke-linecap: round;
    stroke-linejoin: round;
    box-sizing: border-box;
    font-family: Inter, Roboto, Arial;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s cubic-bezier(.25,1,.5,1);
}

.more-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.more-btn svg {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    font-size: 100%;
    cursor: pointer;
    pointer-events: all;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    font-family: Inter, Roboto, Arial;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
}

.more-text {
    font-size: 1px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.more-btn svg circle {
    fill: currentColor;
}

.tab-content {
    flex: 1;
    overflow-y: auto;
    background: rgba(31,30,30,255);
    height: 400px;
    max-height: 400px;
    padding-bottom: 80px;
}

.tab-panel {
    display: none;
    padding: 20px 16px;
    height: auto;
    min-height: fit-content;
}

.tab-panel.active {
    display: block;
}

.token-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    direction: ltr;
    box-sizing: border-box;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    width: auto;
    height: auto;
    max-width: 358px;
    max-height: auto;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: fit-content;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background-color 0.15s cubic-bezier(.25,1,.5,1), transform 0.15s cubic-bezier(.25,1,.5,1);
    overflow: hidden;
    transform: translateY(0) !important;
    position: relative;
    box-shadow: none !important;
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    direction: ltr;
    box-sizing: border-box;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border-color: currentColor;
    border-style: solid;
    border-width: 0;
    font-size: 100%;
    appearance: none;
    background: none;
    cursor: pointer;
    font-family: Inter, Roboto, Arial;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    padding-left: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 12px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2a2a2a;
    transition-property: background-color,border-color,color,fill,stroke;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.25,1,.5,1);
    box-sizing: border-box;
    pointer-events: all;
}

.token-item:hover {
    background-color: #323332;
    transform: translateY(0) !important;
    box-shadow: none !important;
}

.token-item:active {
    transform: scale(0.98) !important;
}

.token-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.token-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.token-info {
    flex: 1;
    min-width: 0;
}

.token-name {
    direction: ltr;
    cursor: pointer;
    pointer-events: all;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    text-align: left;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: normal;
    column-gap: 4px;
    row-gap: 4px;
    max-width: 100%;
    min-width: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: rgb(255, 255, 255);
    font-family: Inter, Roboto, Arial;
    font-weight: 400;
    font-style: normal;
    height: 19px;
    text-shadow: none;
    text-transform: none;
    word-spacing: 0px;
    text-indent: 0px;
    unicode-bidi: isolate;
}

.token-balance {
    direction: ltr;
    cursor: pointer;
    pointer-events: all;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    text-align: left;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: normal;
    column-gap: 4px;
    row-gap: 4px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0px;
    display: block;
    color: rgb(255, 255, 255);
    font-family: Inter, Roboto, Arial;
    font-weight: 400;
    font-style: normal;
    height: 19px;
    text-shadow: none;
    text-transform: none;
    word-spacing: 0px;
    text-indent: 0px;
    unicode-bidi: isolate;
}

.token-value {
    direction: ltr;
    cursor: pointer;
    pointer-events: all;
    text-align: right;
    white-space: nowrap;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: normal;
    display: inline-block;
    color: currentcolor;
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    margin-left: auto;
    margin-right: 15px;
}

.token-dollar-amount {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    direction: ltr;
    cursor: pointer;
    pointer-events: all;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    text-align: right;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: normal;
    font-weight: 500;
    color: #fff;
}

.token-change {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    direction: ltr;
    cursor: pointer;
    pointer-events: all;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    text-align: right;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: normal;
    color: #999;
}

.token-change.positive {
    color: #30a46c;
}

.token-change.negative {
    color: #e54d2e;
}

.token-change.neutral {
    color: #999;
}

.token-value {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.nft-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.nft-item:active {
}

.nft-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1) 0%, rgba(20, 241, 149, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nft-placeholder {
    font-size: 32px;
    opacity: 0.7;
}

.nft-name {
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.activity-item:active {
    transform: translateY(0);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-icon.sent {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2);
}

.activity-icon.received {
    color: #14f195;
    background: rgba(20, 241, 149, 0.1);
    border-color: rgba(20, 241, 149, 0.2);
}

.activity-details {
    flex: 1;
    min-width: 0;
}

.activity-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.activity-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
}

.activity-amount {
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    line-height: 1.2;
}

.activity-amount.positive {
    color: #14f195;
}

.activity-amount.negative {
    color: #ff6b6b;
}

.bottom-nav {
    box-sizing: border-box;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    background: #2b2b2a;
    padding: 0px 10px;
    justify-content: space-around;
    z-index: 1;
    border-top: 1px solid rgb(51, 51, 50);
}

.nav-item {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    box-sizing: border-box;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    background: #2b2b2a;
    padding: 0px 10px;
    justify-content: space-around;
    z-index: 100;
    border-top: 1px solid rgb(51, 51, 50);
}

.nav-item {
    box-sizing: border-box;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    padding: 15px 0px;
    margin: 0px 12px;
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-direction: column;
    gap: 4px;
    min-height: 56px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-item img {
    width: 40px;
    height: 40px;
    aspect-ratio: auto 40 / 40;
    box-sizing: border-box;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: top;
    transition: all 0.2s ease;
    opacity: 1 !important;
    filter: none !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-item:hover {
}

.nav-item.active {
    color: var(--obdlrx3);
}

.nav-item.active::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0px;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background-color: rgb(171, 159, 242);
}

.nav-item.active img {
    transform: scale(1.05);
}

.nav-selection-indicator {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    box-sizing: border-box;
    user-select: none;
    color: currentcolor;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 2px;
    background-color: rgb(171, 159, 242);
    opacity: 0;
    transform: translateX(22px);
    width: 60.5px;
}

.nav-item {
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    min-height: 56px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 1 !important;
    filter: none !important;
}

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

.notification-message {
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 12px;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.notification-close:hover {
    opacity: 1;
}

::selection {
    background: rgba(153, 69, 255, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(153, 69, 255, 0.3);
    color: #ffffff;
}

.action-btn:focus-visible,
.tab-btn:focus-visible,
.nav-item:focus-visible {
    outline: none !important;
    outline-offset: 0;
    border-radius: 0;
}

.app-container {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content::-webkit-scrollbar {
    display: none;
}

.tab-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

@media (max-width: 360px) {
    .app-container {
        max-width: 100%;
        border-radius: 0;
    }
    
    .wallet-header,
    .balance-section,
    .action-buttons,
    .nav-tabs,
    .tab-panel,
    .bottom-nav {
        margin-left: 0;
        margin-right: 0;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .action-buttons {
        gap: 8px;
    }
    
    .action-btn {
        max-width: 80px;
        padding: 10px 16px;
    }
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(153, 69, 255, 0.3);
    border-top: 2px solid #9945ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
        left: 100%;
    }
}

.input-group label[for="hideSolana"] {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--cartoon-primary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.input-group label[for="hideSolana"] span {
    color: var(--cartoon-primary);
    font-weight: 500;
}

.bottom-nav .nav-item,
.bottom-nav .nav-item:focus,
.bottom-nav .nav-item:focus-visible,
.bottom-nav .nav-item:hover,
.bottom-nav .nav-item:active {
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.action-buttons .action-btn,
.action-buttons .action-btn:focus,
.action-buttons .action-btn:focus-visible,
.action-buttons .action-btn:hover,
.action-buttons .action-btn:active {
    outline: none !important;
    border: none !important;
    background: #2a2a2a !important;
    box-shadow: none !important;
}

button,
button:focus,
button:focus-visible,
button:hover,
button:active {
    outline: none !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

.wallet-actions .action-btn {
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

*:focus,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.input-group input[type="text"]:focus {
    border-color: rgba(167, 139, 250, 1);
    box-shadow: 
        0 0 0 4px rgba(167, 139, 250, 0.1),
        0 0 20px rgba(167, 139, 250, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.token-item .token-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.token-item .token-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.token-item .token-icon:has(img[src*="data:image/svg+xml"]) {
    background: linear-gradient(135deg, #725AC1 0%, #6e56cf 100%);
}

.token-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.token-badge svg {
    width: 14px;
    height: 14px;
    fill: #000000;
}

.token-list .token-item:not(:last-child) {
    margin-bottom: 8px;
}

.token-item .token-details {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.token-item .token-name {
    direction: ltr;
    cursor: pointer;
    pointer-events: all;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    text-align: left;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: normal;
    column-gap: 4px;
    row-gap: 4px;
    max-width: 100%;
    min-width: 0px;
    display: block;
    color: rgb(255, 255, 255);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: Inter, Roboto, Arial;
    font-weight: 400;
    font-style: normal;
    height: 19px;
    text-shadow: none;
    text-transform: none;
    word-spacing: 0px;
    text-indent: 0px;
    unicode-bidi: isolate;
}

.token-item .token-balance {
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    max-width: 100%;
    width: 100%;
    display: block;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    direction: ltr;
    cursor: pointer;
    pointer-events: all;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    text-align: left;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: normal;
    column-gap: 4px;
    row-gap: 4px;
    max-width: 100%;
    min-width: 0px;
    display: block;
    color: #999;
    font-family: Inter, Roboto, Arial;
    font-weight: 400;
    font-style: normal;
    height: 17px;
    text-shadow: none;
    text-transform: none;
    word-spacing: 0px;
    text-indent: 0px;
    unicode-bidi: isolate;
}

.token-item .token-value {
    text-align: right;
    min-width: 100px;
    flex-shrink: 0;
    margin-left: 8px;
}

.token-item .token-dollar-amount {
    direction: ltr;
    cursor: pointer;
    pointer-events: all;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    text-align: right;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: normal;
    column-gap: 4px;
    row-gap: 4px;
    max-width: 100%;
    min-width: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: rgb(255, 255, 255);
    font-family: Inter, Roboto, Arial;
    font-weight: 400;
    font-style: normal;
    height: 19px;
    text-shadow: none;
    text-transform: none;
    word-spacing: 0px;
    text-indent: 0px;
    unicode-bidi: isolate;
}

.token-item .token-change {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    line-height: 17px;
    font-family: Inter, Roboto, Arial;
    font-weight: 400;
    color: #999;
    text-align: right;
    margin-left: auto;
    gap: 4px;
    max-width: calc(100% - 8px - 6ch);
    --reach-menu-button: 1;
    --reach-tooltip: 1;
    --reach-listbox: 1;
    --reach-checkbox: 1;
    --obdlrx0: #e2ddfe;
    --obdlrx1: #baa7ff;
    --obdlrx2: #7d66d9;
    --obdlrx3: #6e56cf;
    --obdlrx4: #6e56cf;
    --obdlrx5: #6958ad;
    --obdlrx6: #56468b;
    --obdlrx7: #473876;
    --obdlrx8: #473876;
    --obdlrx9: #3c2e69;
    --obdlrxa: #33255b;
    --obdlrxb: #291f43;
    --obdlrxc: #1b1525;
    --obdlrxd: #14121f;
    --obdlrxe: #14121f;
    --obdlrxf: #f6eeb4;
    --obdlrxg: #f5e147;
    --obdlrxh: #ffff57;
    --obdlrxi: #ffe629;
    --obdlrxj: #ffe629;
    --obdlrxk: #836a21;
    --obdlrxl: #665417;
    --obdlrxm: #524202;
    --obdlrxn: #524202;
    --obdlrxo: #433500;
    --obdlrxp: #362b00;
    --obdlrxq: #2d2305;
    --obdlrxr: #1b180f;
    --obdlrxs: #14120b;
    --obdlrxt: #14120b;
    --obdlrxu: #c2e6ff;
    --obdlrxv: #70b8ff;
    --obdlrxw: #3b9eff;
    --obdlrxx: #0090ff;
    --obdlrxy: #0090ff;
    --obdlrxz: #2870bd;
    --obdlrx10: #205d9e;
    --obdlrx11: #104d87;
    --obdlrx12: #104d87;
    --obdlrx13: #004074;
    --obdlrx14: #003362;
    --obdlrx15: #0d2847;
    --obdlrx16: #111927;
    --obdlrx17: #0d1520;
    --obdlrx18: #0d1520;
    --obdlrx19: #fbd3cb;
    --obdlrx1a: #ff977d;
    --obdlrx1b: #ec6142;
    --obdlrx1c: #e54d2e;
    --obdlrx1d: #e54d2e;
    --obdlrx1e: #ac4d39;
    --obdlrx1f: #853a2d;
    --obdlrx1g: #6e2920;
    --obdlrx1h: #6e2920;
    --obdlrx1i: #5e1c16;
    --obdlrx1j: #4e1511;
    --obdlrx1k: #391714;
    --obdlrx1l: #1f1513;
    --obdlrx1m: #181111;
    --obdlrx1n: #181111;
    --obdlrx1o: #eeeef0;
    --obdlrx1p: #b5b2bc;
    --obdlrx1q: #7c7a85;
    --obdlrx1r: #6f6d78;
    --obdlrx1s: #6f6d78;
    --obdlrx1t: #625f69;
    --obdlrx1u: #49474e;
    --obdlrx1v: #3c393f;
    --obdlrx1w: #3c393f;
    --obdlrx1x: #323035;
    --obdlrx1y: #2b292d;
    --obdlrx1z: #232225;
    --obdlrx20: #1a191b;
    --obdlrx21: #121113;
    --obdlrx22: #121113;
    --obdlrx23: #fdfdffef;
    --obdlrx24: #f5f1ffb7;
    --obdlrx25: #ece9fd7c;
    --obdlrx26: #eae6fd6e;
    --obdlrx27: #eae6fd6e;
    --obdlrx28: #eee7ff5d;
    --obdlrx29: #eee9ff40;
    --obdlrx2a: #f1e6fd30;
    --obdlrx2b: #f1e6fd30;
    --obdlrx2c: #efe6fe25;
    --obdlrx2d: #eee5f81d;
    --obdlrx2e: #ebeaf814;
    --obdlrx2f: #f5f4f609;
    --obdlrx2g: #00000000;
    --obdlrx2h: #00000000;
    --obdlrx2i: #b1f1cb;
    --obdlrx2j: #3dd68c;
    --obdlrx2k: #33b074;
    --obdlrx2l: #30a46c;
    --obdlrx2m: #30a46c;
    --obdlrx2n: #2f7c57;
    --obdlrx2o: #28684a;
    --obdlrx2p: #20573e;
    --obdlrx2q: #20573e;
    --obdlrx2r: #174933;
    --obdlrx2s: #113b29;
    --obdlrx2t: #132d21;
    --obdlrx2u: #121b17;
    --obdlrx2v: #0e1512;
    --obdlrx2w: #0e1512;
    direction: ltr;
    cursor: pointer;
    pointer-events: all;
    user-select: none;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    text-align: right;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: normal;
    margin-left: auto;
    gap: 4px;
    min-width: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: none;
    color: #999;
    max-width: calc(100% - 8px - 6ch);
}

.token-item .token-change.positive {
    color: #30a46c;
}

.token-item .token-change.negative {
    color: #e54d2e;
}


.solana-context-menu {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    user-select: none;
}

.solana-context-menu div:hover {
    background-color: #444 !important;
}

.token-context-menu {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    user-select: none;
}

.token-context-menu div:hover {
    background-color: #444 !important;
}


.token-item {
    cursor: pointer;
}

.token-item:hover {
    background-color: #323332;
}

