/* 钱包选择弹窗样式 */
.wallet-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.wallet-modal-content {
    background-color: #1E1E1E;
    border-radius: 12px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.wallet-modal-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.wallet-modal-subtitle {
    color: #CCCCCC;
    font-size: 16px;
    margin: 0 0 32px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.wallet-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background-color: #2A2A2A;
    margin: 0 auto;
    max-width: 200px;
}

.wallet-option:hover {
    background-color: #333333;
    border-color: #03FCF7;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(3, 252, 247, 0.3);
}

.wallet-option:hover .wallet-icon {
    transform: scale(1.1);
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(3, 252, 247, 0.5));
}

.wallet-option:hover .wallet-name {
    transform: scale(1.1);
    color: #03FCF7;
    text-shadow: 0 0 10px rgba(3, 252, 247, 0.6);
}

.wallet-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.wallet-name {
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .wallet-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .wallet-modal-title {
        font-size: 20px;
    }
    
    .wallet-modal-subtitle {
        font-size: 14px;
    }
}
