/* Background is now black - no blue lighting */
body {
    position: relative;
    background: #000000;
}

/* Ensure navbar and content are above the lighting */
.app-container {
    position: relative;
    z-index: 1;
}

.tab-navigation {
    position: relative;
    z-index: 1001; /* Higher z-index to ensure dropdowns appear above content */
    overflow: visible !important; /* Allow dropdowns to overflow the navigation container */
}

.nav-container {
    position: relative;
    overflow: visible !important; /* Ensure dropdowns can overflow */
}

.nav-tabs {
    position: relative;
    overflow: visible !important; /* Ensure dropdowns can overflow */
}

.nav-dropdown {
    position: relative;
    overflow: visible !important; /* Ensure dropdowns can overflow */
}

.main-content {
    position: relative;
    z-index: 1;
}

/* Buy Page Styles */
.buy-page-container {
    min-height: calc(100vh - 140px); /* Account for nav bar height */
    background: #000000;
    color: #ffffff;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px; /* Add top padding to account for nav bar */
    position: relative;
    z-index: 1; /* Lower than navigation dropdowns (1002) */
}

.buy-page-container > * {
    position: relative;
    z-index: 1;
}

/* Ensure dropdown menus appear above buy page content */
.nav-dropdown .dropdown-menu {
    z-index: 1002 !important; /* Higher than tab-navigation to appear on top */
    position: absolute !important; /* Ensure absolute positioning */
}

.buy-page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    position: relative;
}

.buy-page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.6) 0%, rgba(0, 168, 255, 0.3) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.buy-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.buy-page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* Tab Navigation */
.buy-tabs-container {
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0, 168, 255, 0.3);
    position: relative;
}

.buy-tabs-container::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 255, 0.3), transparent);
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.2);
}

.buy-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.buy-tab {
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    position: relative;
}

.buy-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 168, 255, 0.1);
}

.buy-tab.active {
    color: #0099ff;
    border-bottom-color: #0099ff;
    background: rgba(0, 153, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.3);
}

.buy-tab.active::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0099ff, transparent);
    box-shadow: 0 0 10px rgba(0, 153, 255, 0.6);
}

/* Tab Content */
.buy-tab-content {
    min-height: 500px;
}

.buy-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

/* Bridge Container */
.bridge-container {
    background: rgba(96, 135, 195, 0.05);
    border: 1px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    padding: 0;
    min-height: auto;
    height: auto;
    position: relative;
    box-shadow: 0 0 30px rgba(96, 135, 195, 0.1);
    overflow: visible;
}

/* Removed hover effect - no ::before pseudo-element */

#bridgeUIWrapper {
    width: 100%;
    min-height: auto;
    height: auto;
    overflow: visible;
    position: relative;
}

#bridgeUIWrapper iframe {
    width: 100%;
    min-height: 1200px;
    height: auto;
    border: none;
    display: block;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    background: transparent;
}

.bridge-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    color: rgba(255, 255, 255, 0.7);
}

.bridge-loading .loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(96, 135, 195, 0.3);
    border-top-color: #6087c3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Privacy Bridge, USDC Bridge, Trade & On/Off Ramps Containers */
.privacy-bridge-container,
.usdc-bridge-container,
.trade-container,
.on-off-ramps-container {
    background: rgba(96, 135, 195, 0.05);
    border: 1px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    padding: 40px;
    min-height: 500px;
}

/* Privacy Bridge Header */
.privacy-bridge-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-bridge-header h2 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-bridge-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Privacy Bridge Stats Cards */
.privacy-bridge-stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-stat-card {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: filter 0.2s ease-in-out, transform 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.privacy-stat-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.privacy-stat-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.privacy-stat-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Privacy Bridge Ready Container */
.privacy-bridge-ready-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

.coming-soon {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.coming-soon i {
    font-size: 4rem;
    color: #6087c3;
    margin-bottom: 20px;
    opacity: 0.5;
}

.coming-soon h2 {
    font-size: 2rem;
    color: #6087c3;
    margin-bottom: 15px;
}

.coming-soon p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.coming-soon-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 20px;
}

/* Privacy Bridge FAQ Section */
.privacy-bridge-faq {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-bridge-faq .faq-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.privacy-bridge-faq .faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.privacy-bridge-faq .faq-item {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.privacy-bridge-faq .faq-item:hover {
    border-color: rgba(96, 135, 195, 0.5);
}

.privacy-bridge-faq .faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
}

.privacy-bridge-faq .faq-question:hover {
    color: rgba(96, 135, 195, 1);
}

.privacy-bridge-faq .faq-question span {
    flex: 1;
}

.privacy-bridge-faq .faq-icon {
    color: rgba(96, 135, 195, 0.8);
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.privacy-bridge-faq .faq-question[aria-expanded="true"] .faq-icon {
    color: rgba(96, 135, 195, 1);
}

.privacy-bridge-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.privacy-bridge-faq .faq-answer > div {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.privacy-bridge-faq .faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .buy-page-header h1 {
        font-size: 2rem;
    }

    .buy-tabs {
        flex-direction: column;
    }

    .buy-tab {
        width: 100%;
        justify-content: center;
    }

    .bridge-container,
    .privacy-bridge-container,
    .usdc-bridge-container,
    .trade-container,
    .on-off-ramps-container {
        padding: 20px;
    }

    .privacy-bridge-stats-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .privacy-bridge-header h2 {
        font-size: 1.5rem;
    }

    .privacy-bridge-faq .faq-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .privacy-bridge-faq .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .privacy-bridge-faq .faq-answer > div {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .usdc-bridge-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* USDC Bridge UI Styles */
.usdc-bridge-ui {
    max-width: 100%;
    margin: 0 auto;
}

.bridge-header {
    text-align: center;
    margin-bottom: 30px;
}

.bridge-header h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.bridge-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* USDC Bridge Info Cards - Similar to wallet intel style */
.usdc-bridge-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.usdc-info-card {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: filter 0.2s ease-in-out, transform 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Hover effect removed as requested */

.usdc-info-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.usdc-info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.usdc-info-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Bridge Form Header - Wallet Button Container */
.bridge-form-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.wallet-status {
    display: flex;
    justify-content: flex-end;
}

.connect-wallet-btn,
.disconnect-btn {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    color: #ffffff;
    cursor: pointer;
    transition: filter 0.2s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.connect-wallet-btn:hover {
    filter: contrast(1.3) brightness(1.3);
    border-color: rgba(96, 135, 195, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.4);
}

.wallet-connected {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 8px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.wallet-connected i {
    color: #2FF924;
}

.disconnect-btn {
    padding: 4px 12px;
    background: rgba(239, 93, 93, 0.2);
    border: 1px solid rgba(239, 93, 93, 0.3);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disconnect-btn:hover {
    background: rgba(239, 93, 93, 0.3);
    transform: translateY(-1px);
}

.bridge-form {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 30px rgba(96, 135, 195, 0.4), 0 0 60px rgba(96, 135, 195, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chain-selector-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.chain-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chain-selector label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Custom Chain Select Dropdown */
.custom-chain-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(96, 135, 195, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.custom-select-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 135, 195, 0.5);
}

.custom-select-trigger .trigger-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.custom-select-trigger .trigger-text {
    flex: 1;
    text-align: left;
}

.custom-select-trigger .trigger-arrow {
    color: #6087c3;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.custom-chain-select.active .trigger-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(96, 135, 195, 0.3);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.custom-select-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
}

.custom-select-option:hover {
    background: rgba(96, 135, 195, 0.15);
}

.custom-select-option.selected {
    background: rgba(96, 135, 195, 0.2);
    color: #6087c3;
}

.custom-select-option .option-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.custom-select-option .option-text {
    flex: 1;
    text-align: left;
}

/* Scrollbar styling for dropdown */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(96, 135, 195, 0.5);
    border-radius: 3px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(96, 135, 195, 0.7);
}

.chain-select:focus {
    outline: none;
    border-color: #6087c3;
    box-shadow: 0 0 0 3px rgba(96, 135, 195, 0.2);
}

.chain-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.chain-swap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.swap-chains-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(96, 135, 195, 0.2);
    border: 1px solid rgba(96, 135, 195, 0.3);
    color: #6087c3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swap-chains-btn:hover:not(:disabled) {
    background: rgba(96, 135, 195, 0.3);
    transform: rotate(180deg);
}

.swap-chains-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.amount-section {
    margin-bottom: 25px;
}

.amount-section label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.amount-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.amount-input {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(96, 135, 195, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amount-input:focus {
    outline: none;
    border-color: #6087c3;
    box-shadow: 0 0 0 3px rgba(96, 135, 195, 0.2);
}

.max-btn {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    color: #ffffff;
    cursor: pointer;
    transition: filter 0.2s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(96, 135, 195, 0.3);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.max-btn:hover {
    filter: contrast(1.3) brightness(1.3);
    border-color: rgba(96, 135, 195, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 135, 195, 0.4);
}

.balance-display {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.balance-display span {
    color: #6087c3;
    font-weight: 600;
}

.bridge-info {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: rgba(96, 135, 195, 0.05);
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    color: #ffffff;
    font-size: 0.85rem;
}

.info-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.bridge-btn {
    width: 100% !important;
    filter: contrast(1.2) brightness(1.2) !important;
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%) !important;
    border: 2px solid rgba(96, 135, 195, 0.3) !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    color: #ffffff !important;
    cursor: pointer;
    transition: filter 0.2s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3) !important;
    text-decoration: none;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
}

.bridge-btn:hover:not(:disabled) {
    filter: contrast(1.3) brightness(1.3) !important;
    border-color: rgba(96, 135, 195, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.4) !important;
    color: #ffffff !important;
}

.bridge-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #ffffff !important;
}

.bridge-status {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(96, 135, 195, 0.2);
}

.status-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.status-message i {
    font-size: 2rem;
}

.status-pending {
    color: #6087c3;
}

.status-success {
    color: #2FF924;
}

.status-error {
    color: #ef5d5d;
}

.tx-link {
    color: #6087c3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.tx-link:hover {
    color: #e619e6;
}

.bridge-error {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.bridge-error i {
    font-size: 3rem;
    color: #ef5d5d;
    margin-bottom: 20px;
}

.bridge-error h2 {
    color: #6087c3;
    margin-bottom: 15px;
}

.recipient-section {
    margin-bottom: 25px;
}

.recipient-section label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.recipient-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(96, 135, 195, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: monospace;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.recipient-input:focus {
    outline: none;
    border-color: #6087c3;
    box-shadow: 0 0 0 3px rgba(96, 135, 195, 0.2);
}

.recipient-input:invalid {
    border-color: #ef5d5d;
}

.recipient-note {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
}

/* USDC Bridge FAQ Section */
.usdc-bridge-faq {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(96, 135, 195, 0.5);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: rgba(96, 135, 195, 1);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    color: rgba(96, 135, 195, 0.8);
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    color: rgba(96, 135, 195, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer > div {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.faq-answer p:not(:last-child) {
    margin-bottom: 1rem;
}

/* Trade Tab Styles */
.trade-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.trade-header {
    text-align: center;
    margin-bottom: 40px;
}

.trade-header h2 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.trade-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Trade Info Cards - Same style as USDC bridge */
.trade-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trade-info-card {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: filter 0.2s ease-in-out, transform 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.trade-info-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.trade-info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.trade-info-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Trade Widget Wrapper */
.trade-widget-wrapper {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 60px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 30px rgba(96, 135, 195, 0.4), 0 0 60px rgba(96, 135, 195, 0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 725px;
}

.trade-widget-wrapper iframe {
    border-radius: 8px;
    display: block;
    width: 100%;
    height: 725px;
    margin: 0 auto;
}

/* Trade FAQ Section - Reuse USDC bridge FAQ styles */
.trade-faq {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trade-faq .faq-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.trade-faq .faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trade-faq .faq-item {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.trade-faq .faq-item:hover {
    border-color: rgba(96, 135, 195, 0.5);
}

.trade-faq .faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
}

.trade-faq .faq-question:hover {
    color: rgba(96, 135, 195, 1);
}

.trade-faq .faq-question span {
    flex: 1;
}

.trade-faq .faq-icon {
    color: rgba(96, 135, 195, 0.8);
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.trade-faq .faq-question[aria-expanded="true"] .faq-icon {
    color: rgba(96, 135, 195, 1);
}

.trade-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.trade-faq .faq-answer > div {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.trade-faq .faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for USDC Bridge */
@media (max-width: 768px) {
    .chain-selector-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chain-swap {
        padding-bottom: 0;
    }

    .swap-chains-btn {
        transform: rotate(90deg);
    }

    .bridge-info {
        flex-direction: column;
        gap: 15px;
    }

    .bridge-header h2 {
        font-size: 1.5rem;
    }

    .faq-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer > div {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .trade-header h2 {
        font-size: 1.5rem;
    }

    .trade-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trade-widget-wrapper {
        padding: 1rem;
    }

    .trade-widget-wrapper iframe {
        height: 600px;
    }

    .trade-faq .faq-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .trade-faq .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .trade-faq .faq-answer > div {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

/* On/Off Ramps Tab Styles */
.on-off-ramps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.on-off-ramps-header {
    text-align: center;
    margin-bottom: 40px;
}

.on-off-ramps-header h2 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.on-off-ramps-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* On/Off Ramps Info Cards - Same style as USDC bridge */
.on-off-ramps-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.on-off-ramps-info-card {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: filter 0.2s ease-in-out, transform 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.on-off-ramps-info-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.on-off-ramps-info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.on-off-ramps-info-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Ramp Services Section */
.on-off-ramps-services {
    margin-top: 50px;
    margin-bottom: 40px;
}

.services-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.ramp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ramp-service-card {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: border-color 0.3s ease;
}

.ramp-service-card:hover {
    border-color: rgba(96, 135, 195, 0.5);
}

.ramp-service-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ramp-service-img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.ramp-service-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.ramp-service-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.ramp-service-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.ramp-service-btn {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 8px;
    padding: 12px 24px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: filter 0.2s ease-in-out, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
    margin-top: auto;
}

.ramp-service-btn:hover {
    filter: contrast(1.3) brightness(1.3);
    border-color: rgba(96, 135, 195, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.4);
}

.ramp-service-btn i {
    font-size: 0.9rem;
}

/* On/Off Ramps FAQ Section - Reuse USDC bridge FAQ styles */
.on-off-ramps-faq {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.on-off-ramps-faq .faq-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.on-off-ramps-faq .faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.on-off-ramps-faq .faq-item {
    filter: contrast(1.2) brightness(1.2);
    background: linear-gradient(rgba(20, 22, 29, 0.5), rgba(20, 22, 29, 0.4)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.on-off-ramps-faq .faq-item:hover {
    border-color: rgba(96, 135, 195, 0.5);
}

.on-off-ramps-faq .faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
}

.on-off-ramps-faq .faq-question:hover {
    color: rgba(96, 135, 195, 1);
}

.on-off-ramps-faq .faq-question span {
    flex: 1;
}

.on-off-ramps-faq .faq-icon {
    color: rgba(96, 135, 195, 0.8);
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.on-off-ramps-faq .faq-question[aria-expanded="true"] .faq-icon {
    color: rgba(96, 135, 195, 1);
}

.on-off-ramps-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.on-off-ramps-faq .faq-answer > div {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.on-off-ramps-faq .faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for On/Off Ramps */
@media (max-width: 768px) {
    .on-off-ramps-header h2 {
        font-size: 1.5rem;
    }

    .on-off-ramps-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ramp-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ramp-service-card {
        padding: 1.5rem;
    }

    .services-title {
        font-size: 1.5rem;
    }

    .on-off-ramps-faq .faq-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .on-off-ramps-faq .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .on-off-ramps-faq .faq-answer > div {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000; /* Below navigation (1001) so nav remains accessible */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Allow clicks to pass through to navigation */
    cursor: not-allowed;
}

.coming-soon-overlay .coming-soon-content {
    pointer-events: all; /* Only the content box blocks interactions */
}

.coming-soon-content {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(rgba(20, 22, 29, 0.95), rgba(20, 22, 29, 0.9)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.5);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(96, 135, 195, 0.5), 0 0 80px rgba(96, 135, 195, 0.3);
    max-width: 500px;
    width: 90%;
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.coming-soon-content i {
    font-size: 4rem;
    color: #6087c3;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.coming-soon-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.coming-soon-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 20px;
}

/* Prevent interaction with content behind overlay - but allow navigation */
.buy-page-container {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.buy-page-container * {
    pointer-events: none !important;
}

/* Ensure navigation always works */
.tab-navigation,
.tab-navigation *,
.nav-container,
.nav-container *,
.nav-tabs,
.nav-tabs *,
.nav-dropdown,
.nav-dropdown *,
.dropdown-menu,
.dropdown-menu * {
    pointer-events: all !important;
    z-index: 1001 !important;
}

/* Wallet Selector Modal Styles */
.wallet-selector-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wallet-selector-modal {
    background: linear-gradient(rgba(20, 22, 29, 0.95), rgba(20, 22, 29, 0.9)), 
                radial-gradient(57.22% 207.25% at 11.87% -92.33%, rgba(96, 135, 195, 0.8) 0%, rgba(44, 107, 161, 0.65) 67%, rgba(8, 18, 22, 0) 100%);
    border: 2px solid rgba(96, 135, 195, 0.3);
    border-radius: 16px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(96, 135, 195, 0.5), 0 0 80px rgba(96, 135, 195, 0.3);
    animation: slideUp 0.3s ease;
}

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

.wallet-selector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(96, 135, 195, 0.2);
}

.wallet-selector-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.wallet-selector-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.wallet-selector-close:hover {
    color: #ffffff;
    background: rgba(96, 135, 195, 0.2);
}

.wallet-selector-body {
    padding: 16px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

.wallet-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    margin-bottom: 8px;
    background: rgba(96, 135, 195, 0.1);
    border: 1px solid rgba(96, 135, 195, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
}

.wallet-option:hover:not(:disabled) {
    background: rgba(96, 135, 195, 0.2);
    border-color: rgba(96, 135, 195, 0.4);
    box-shadow: 0 2px 8px rgba(96, 135, 195, 0.3);
}

.wallet-option:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wallet-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}

.wallet-name {
    flex: 1;
    font-weight: 500;
    color: #ffffff;
}

.wallet-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.wallet-option:hover:not(:disabled) .wallet-arrow {
    color: rgba(255, 255, 255, 0.8);
}

/* Scrollbar styling for wallet selector */
.wallet-selector-body::-webkit-scrollbar {
    width: 6px;
}

.wallet-selector-body::-webkit-scrollbar-track {
    background: rgba(96, 135, 195, 0.1);
    border-radius: 3px;
}

.wallet-selector-body::-webkit-scrollbar-thumb {
    background: rgba(96, 135, 195, 0.3);
    border-radius: 3px;
}

.wallet-selector-body::-webkit-scrollbar-thumb:hover {
    background: rgba(96, 135, 195, 0.5);
}

