/* Wallet Connection Modal Styles */

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.connect-wallet {
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.connect-wallet:hover {
    transform: translateY(-2px);
}

/* Modal Styles */
.wallet-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
}


.wallet-modal-overlay.show {
    opacity: 1;
}

.wallet-modal {
    background: white;
    border-radius: 24px;
    width: 90%;
    max-width: 760px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
}

.wallet-modal-overlay.show .wallet-modal {
    transform: scale(1);
}

/* Modal Header */
.wallet-modal-header {
    padding: 24px 24px 0px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: white;
    border-radius: 24px 24px 0 0;
}

.tab-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-item.active .reown-badge {
    background: #2d3748;
    color: white;
}

.reown-badge {
    background: #2d3748;
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.manual-kit {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.3px;
    padding: 8px 16px;
}

/* Modal Content Container */
.wallet-modal-content {
    display: flex;
    flex-direction: row;
    min-height: 460px;
}

/* Left section - Wallet List */
.wallet-list-section {
    width: 420px;
    background: white;
    padding: 24px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #333;
}

.popular-section h3 {
    font-size: 16px;
    color: #4a5568;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.3px;
}

.wallet-scrollable {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
}

.wallet-scrollable::-webkit-scrollbar {
    width: 6px;
}

.wallet-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.wallet-scrollable::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.wallet-scrollable::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.wallet-option {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    background: #fafafa;
}

.wallet-option:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wallet-option.recommended {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    border: 2px solid #38d9a9;
    box-shadow: 0 2px 8px rgba(56, 217, 169, 0.2);
}

.wallet-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.wallet-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.metamask-icon {
    background: linear-gradient(135deg, #f6851b, #e2761b);
}

.trust-icon {
    background: linear-gradient(135deg, #3375bb, #1c5aa3);
}

.coinbase-icon {
    background: linear-gradient(135deg, #0052ff, #0041cc);
}

.ledger-icon {
    background: linear-gradient(135deg, #2d3748, #1a202c);
}

.trezor-icon {
    background: linear-gradient(135deg, #00854d, #006b3d);
}

/* SVG wallet icons - no background needed as SVGs have their own styling */

.wallet-name {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748 !important;
    text-align: left;
    letter-spacing: 0.2px;
}

.recommended-badge {
    background: #38d9a9;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Right section - Connect */
.connect-section {
    width: 340px;
    background: #f8f9fa;
    border-radius: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    border-left: 1px solid #e8e8e8;
}

.connect-icon {
    font-size: 80px;
    margin-bottom: 24px;
    opacity: 0.3;
    color: #999;
}

.connect-text {
    font-size: 18px;
    color: #666 !important;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.2px;
    max-width: 200px;
}



/* MetaMask Import Form */
.metamask-import-form {
    background: #1a1a1a;
    border-radius: 0 0 24px 24px;
    color: white;
    width: auto;
    max-width: 400px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.import-header {
    padding: 32px 32px 20px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: none;
    position: relative;
}

.back-btn {
    background: #2a2a2a;
    border: none;
    color: #ccc;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.back-btn:hover {
    background: #444;
}

.import-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    color: white;
    flex: 1;
    text-align: center;
    margin-right: 36px;
}

.import-content {
    padding: 0 12px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    /* Changed to auto for scrolling if content exceeds height */
}

.import-description {
    color: #888;
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 32px 0;
    text-align: center;
    font-weight: 400;
}

/* Seed Phrase Grid */
.seed-phrase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 24px;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.seed-phrase-grid::-webkit-scrollbar {
    width: 6px;
}

.seed-phrase-grid::-webkit-scrollbar-track {
    background: #333;
    border-radius: 3px;
}

.seed-phrase-grid::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 3px;
}

.seed-phrase-grid::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.seed-input-group {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #333;
    transition: border-color 0.2s;
    height: 56px;
    box-sizing: border-box;
}

.seed-input-group:focus-within {
    border-color: #0066ff;
}

.seed-input-group.highlighted {
    border-color: #0066ff;
    background: #1a2a3a;
}

.word-number {
    color: #666;
    font-size: 9px;
    font-weight: 400;
    min-width: 18px;
    flex-shrink: 0;
}

.seed-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 11px;
    flex: 1;
    outline: none;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.seed-input::placeholder {
    color: #555;
}

.toggle-visibility {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    padding: 2px;
    border-radius: 4px;
    transition: background-color 0.2s;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-visibility:hover {
    background: #333;
    color: #999;
}

/* Word Count Toggle */
.word-count-toggle {
    text-align: center;
    margin-bottom: 32px;
}

.word-count-toggle a {
    color: #0066ff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

.word-count-toggle a:hover {
    text-decoration: underline;
}

/* Import Button */
.import-wallet-btn {
    background: #0066ff;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
    height: 48px;
}

.import-wallet-btn:hover {
    background: #0052cc;
}

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

/* MetaMask Logo Overlay - For Import Form */
.metamask-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

/* Trust Wallet Logo Overlay - For Import Form */
.trust-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

/* Coinbase Wallet Logo Overlay - For Import Form */
.coinbase-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

/* Ledger Logo Overlay - For Import Form */
.ledger-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

/* Trezor Logo Overlay - For Import Form */
.trezor-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

/* MetaMask Logo Overlay - For Main Modal */
.metamask-logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
    border-radius: 24px;
}

.metamask-logo-overlay.show,
.metamask-logo-overlay-form.show,
.trust-logo-overlay-form.show,
.coinbase-logo-overlay-form.show,
.ledger-logo-overlay-form.show,
.trezor-logo-overlay-form.show {
    opacity: 1;
}

.metamask-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(246, 133, 27, 0.5));
}

.trust-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(51, 117, 187, 0.5));
    border-radius: 24px;
}

.coinbase-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 82, 255, 0.5));
    border-radius: 24px;
}

.ledger-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(45, 55, 72, 0.5));
    border-radius: 24px;
}

.trezor-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 133, 77, 0.5));
    border-radius: 24px;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wallet-modal {
        max-width: 95%;
        width: 95%;
    }


    .wallet-modal-content {
        flex-direction: column;
    }

    .wallet-list-section {
        padding: 20px;
    }

    .connect-section {
        width: 100%;
        border-radius: 0 0 24px 24px;
        border-left: none;
        border-top: 1px solid #e8e8e8;
        padding: 30px 20px;
    }

    .wallet-modal-header {
        padding: 20px 20px 0px 20px;
    }

    .manual-kit {
        font-size: 14px;
    }

    .wallet-option {
        padding: 12px 16px;
    }

    .wallet-name {
        font-size: 15px;
    }

    .recommended-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    /* MetaMask Mobile Styles */
    .metamask-import-form {
        width: 95%;
        min-height: 400px;
    }

    .import-header {
        padding: 20px 20px 0 20px;
    }

    .import-header h2 {
        font-size: 20px;
    }

    .import-content {
        padding: 10px;
    }

    .seed-phrase-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
    }

    .seed-input-group {
        padding: 8px 10px;
        height: 64px;
    }

    .seed-input {
        font-size: 14px;
    }

    .import-description {
        font-size: 14px;
        margin-bottom: 10px;
        /* Reduced margin */
    }

}

/* WalletConnect popup logo styling */
.popup-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.popup-logo.walletconnect-icon {
    background: linear-gradient(135deg, #3b99fc, #1976d2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.phantom-icon {
    background: linear-gradient(135deg, #ab9ff2, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.rainbow-icon {
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.argent-icon {
    background: linear-gradient(135deg, #ff875b, #f093fb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.safe-icon {
    background: linear-gradient(135deg, #12d97d, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.exodus-icon {
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.atomic-icon {
    background: linear-gradient(135deg, #1e90ff, #0078d4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.imtoken-icon {
    background: linear-gradient(135deg, #11cdef, #0099cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.oneinch-icon {
    background: linear-gradient(135deg, #1e1e1e, #333333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.emoji-logo {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.okx-emoji-logo {
    background: linear-gradient(135deg, #000000, #333333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.rabby-emoji-logo {
    background: linear-gradient(135deg, #7c69ef, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.uniswap-emoji-logo {
    background: linear-gradient(135deg, #ff007a, #ff1744);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.solflare-emoji-logo {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.magiceden-emoji-logo {
    background: linear-gradient(135deg, #e100ff, #7209b7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-logo.gemini-emoji-logo {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

/* WalletConnect Logo Overlay - For Import Form */
.walletconnect-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.walletconnect-logo-overlay-form.show {
    opacity: 1;
}

.walletconnect-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(59, 153, 252, 0.5));
    background: linear-gradient(135deg, #3b99fc, #1976d2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Phantom Logo Overlay - For Import Form */
.phantom-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.phantom-logo-overlay-form.show {
    opacity: 1;
}

.phantom-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(171, 159, 242, 0.5));
    background: linear-gradient(135deg, #ab9ff2, #8b5cf6);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Rainbow Logo Overlay - For Import Form */
.rainbow-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.rainbow-logo-overlay-form.show {
    opacity: 1;
}

.rainbow-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 107, 0.5));
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Argent Logo Overlay - For Import Form */
.argent-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.argent-logo-overlay-form.show {
    opacity: 1;
}

.argent-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 135, 91, 0.5));
    background: linear-gradient(135deg, #ff875b, #f093fb);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Safe Logo Overlay - For Import Form */
.safe-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.safe-logo-overlay-form.show {
    opacity: 1;
}

.safe-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(18, 217, 125, 0.5));
    background: linear-gradient(135deg, #12d97d, #10b981);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Exodus Logo Overlay - For Import Form */
.exodus-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.exodus-logo-overlay-form.show {
    opacity: 1;
}

.exodus-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(59, 89, 152, 0.5));
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Atomic Logo Overlay - For Import Form */
.atomic-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.atomic-logo-overlay-form.show {
    opacity: 1;
}

.atomic-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(30, 144, 255, 0.5));
    background: linear-gradient(135deg, #1e90ff, #0078d4);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* imToken Logo Overlay - For Import Form */
.imtoken-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.imtoken-logo-overlay-form.show {
    opacity: 1;
}

.imtoken-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(17, 205, 239, 0.5));
    background: linear-gradient(135deg, #11cdef, #0099cc);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* 1inch Logo Overlay - For Import Form */
.oneinch-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.oneinch-logo-overlay-form.show {
    opacity: 1;
}

/* Zerion Logo Overlay - For Import Form */
.zerion-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.zerion-logo-overlay-form.show {
    opacity: 1;
}

.zerion-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(46, 91, 255, 0.5));
    background: linear-gradient(135deg, #2e5bff, #8c7ae6);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* OKX Logo Overlay - For Import Form */
.okx-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.okx-logo-overlay-form.show {
    opacity: 1;
}

.okx-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Rabby Logo Overlay - For Import Form */
.rabby-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.rabby-logo-overlay-form.show {
    opacity: 1;
}

.rabby-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(124, 105, 239, 0.5));
    background: linear-gradient(135deg, #7c69ef, #a855f7);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Uniswap Logo Overlay - For Import Form */
.uniswap-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.uniswap-logo-overlay-form.show {
    opacity: 1;
}

.uniswap-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 0, 122, 0.5));
    background: linear-gradient(135deg, #ff007a, #ff1744);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Solflare Logo Overlay - For Import Form */
.solflare-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.solflare-logo-overlay-form.show {
    opacity: 1;
}

.solflare-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.5));
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Magic Eden Logo Overlay - For Import Form */
.magiceden-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.magiceden-logo-overlay-form.show {
    opacity: 1;
}

.magiceden-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(225, 0, 255, 0.5));
    background: linear-gradient(135deg, #e100ff, #7209b7);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Gemini Logo Overlay - For Import Form */
.gemini-logo-overlay-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    border-radius: 24px;
}

.gemini-logo-overlay-form.show {
    opacity: 1;
}

.gemini-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.5));
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

.oneinch-overlay-logo {
    width: 120px;
    height: 120px;
    animation: logoFadeIn 0.5s ease-out, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(30, 30, 30, 0.5));
    background: linear-gradient(135deg, #1e1e1e, #333333);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}