/* Deposit Modal Styles */

.deposit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

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

.deposit-modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.deposit-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.deposit-modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.deposit-modal-header {
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.deposit-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.deposit-modal-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.deposit-modal-body {
    padding: 24px 32px 32px;
}

.deposit-current-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin-bottom: 24px;
}

.deposit-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.deposit-value {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
}

.deposit-options {
    margin-top: 24px;
}

.deposit-options h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.deposit-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.deposit-option:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateX(4px);
}

.deposit-option-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.deposit-option-content {
    flex: 1;
}

.deposit-option-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.deposit-option-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.deposit-option-fee {
    font-size: 12px;
    color: #4ade80;
    font-weight: 600;
}

.deposit-option-arrow {
    font-size: 20px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.deposit-address-info {
    margin-top: 16px;
}

.deposit-address-box {
    margin-top: 16px;
}

.deposit-info {
    margin-top: 24px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .deposit-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .deposit-modal-header,
    .deposit-modal-body {
        padding: 20px;
    }
    
    .deposit-option {
        padding: 16px;
    }
}

