/* Wallet Section Styles */
.wallet-section {
    padding: 20px 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.connect-wallet-sidebar {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00d4aa, #00a87e);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.connect-wallet-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.connected-wallet {
    margin-top: 15px;
    background: rgba(0, 212, 170, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
    padding: 16px;
    animation: slideIn 0.3s ease-out;
}

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

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wallet-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #00d4aa;
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #00d4aa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.disconnect-btn {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    border-radius: 6px;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.disconnect-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: scale(1.05);
}

.wallet-details .label {
    font-size: 11px;
    color: #8b949e;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #00d4aa;
    word-break: break-all;
    background: rgba(0, 212, 170, 0.1);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    margin-bottom: 10px;
}

.wallet-balance-section {
    margin-top: 12px;
}

.wallet-balance {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Wallet Connect Modal Improvements */
.wallet-modal {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(33, 38, 45, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.5);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.wallet-option:hover {
    background: rgba(48, 54, 61, 0.8);
    border-color: #00d4aa;
    transform: translateY(-2px);
}

.wallet-option:last-child {
    margin-bottom: 0;
}

.wallet-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.wallet-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wallet-section {
        padding: 15px 10px;
    }
    
    .connect-wallet-sidebar {
        font-size: 13px;
        padding: 12px;
    }
    
    .connected-wallet {
        padding: 12px;
    }
    
    .wallet-address {
        font-size: 11px;
    }
}